/*
Theme Name: OvenCleaningKit
Theme URI: https://paleturquoise-echidna-604604.hostingersite.com
Author: paleturquoise-echidna-604604.hostingersite.com
Description: A clean, conversion-focused affiliate theme for paleturquoise-echidna-604604.hostingersite.com
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ovencleaningkit
*/

/* ── CSS VARIABLES ── */
:root {
  --cream: #FAF7F2;
  --charcoal: #1C1C1C;
  --green: #2D5A27;
  --green-light: #4A8C42;
  --green-pale: #EBF3E9;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --warm-grey: #8C8480;
  --border: #E5E0D8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(28,28,28,0.08);
  --shadow-lg: 0 12px 48px rgba(28,28,28,0.14);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; letter-spacing: -0.5px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--warm-grey); font-weight: 300; max-width: 560px; margin-bottom: 48px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(217,119,6,0.4);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,119,6,0.5); color: white; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: 8px;
  transition: background 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { background: var(--green-light); color: white; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); text-decoration: none;
  font-weight: 500; font-size: 15px; padding: 14px 24px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: white; }

/* ── HEADER ── */
#site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
#site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
  color: var(--green); text-decoration: none; letter-spacing: -0.5px;
}
.site-logo span { color: var(--amber); }
#primary-navigation ul { display: flex; gap: 32px; list-style: none; }
#primary-navigation a {
  text-decoration: none; color: var(--charcoal); font-weight: 500;
  font-size: 14px; letter-spacing: 0.02em; transition: color 0.2s;
}
#primary-navigation a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 6px;
}
.nav-cta:hover { background: var(--green-light) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s; }

/* ── HERO ── */
.hero-section {
  background: var(--green); padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: #7FD972;
  border-radius: 50%; animation: pulse-dot 2s ease infinite;
}
.hero-section h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900; color: var(--white);
  line-height: 1.12; letter-spacing: -1px; margin-bottom: 20px;
}
.hero-section h1 em { font-style: normal; color: #A8D5A2; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 18px; font-weight: 300; margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: var(--white); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-lg);
}
.hero-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.hero-pick { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.hero-pick:last-child { border-bottom: none; }
.pick-badge {
  background: var(--green); color: white; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.06em;
}
.pick-badge.amber { background: var(--amber); }
.pick-badge.grey  { background: var(--warm-grey); }
.pick-name { font-weight: 600; font-size: 14px; color: var(--charcoal); margin-bottom: 2px; }
.pick-desc { font-size: 13px; color: var(--warm-grey); }
.pick-stars { color: #F59E0B; font-size: 13px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--charcoal); padding: 16px 0; }
.trust-bar-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; }
.trust-icon { font-size: 18px; }

/* ── DISCLOSURE ── */
.affiliate-disclosure {
  background: var(--amber-light); border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0; padding: 14px 20px; font-size: 13px;
  color: #78350F; margin-bottom: 48px;
}

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white); border-radius: 14px; border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.featured { border: 2px solid var(--green); }
.card-ribbon {
  position: absolute; top: 14px; left: 14px; background: var(--green);
  color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 4px; z-index: 2;
}
.card-ribbon.amber { background: var(--amber); }
.card-ribbon.grey  { background: var(--warm-grey); }
.card-image {
  background: linear-gradient(135deg, var(--green-pale) 0%, #D4EDCF 100%);
  height: 180px; display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.card-body { padding: 22px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.card-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-family: 'DM Sans', sans-serif; }
.card-stars { color: #F59E0B; font-size: 13px; }
.card-review-count { font-size: 12px; color: var(--warm-grey); margin-left: 4px; }
.card-title { font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-size: 14px; color: var(--warm-grey); margin-bottom: 18px; line-height: 1.6; }
.card-pros { list-style: none; margin-bottom: 20px; }
.card-pros li { font-size: 13px; color: var(--charcoal); padding: 4px 0 4px 20px; position: relative; }
.card-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.card-price { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; font-family: 'Playfair Display', serif; }
.card-price span { font-size: 13px; color: var(--warm-grey); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.btn-card {
  display: block; text-align: center; background: var(--green); color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 14px; padding: 12px;
  border-radius: 8px; transition: background 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-card:hover { background: var(--green-light); color: white; }
.btn-card.amber { background: var(--amber); }
.btn-card.amber:hover { background: #B45309; }
.btn-card.grey { background: var(--warm-grey); }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th { background: var(--green); color: white; padding: 16px 20px; font-size: 13px; font-weight: 600; text-align: left; font-family: 'DM Sans', sans-serif; }
.compare-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.compare-table tr:hover td { background: var(--green-pale); }
.compare-winner { font-weight: 700; color: var(--green); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #EF4444; }

/* ── HOW TO STEPS ── */
.howto-section { background: var(--green-pale); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card { background: var(--white); border-radius: 14px; padding: 28px 22px; position: relative; overflow: hidden; }
.step-number {
  font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900;
  color: var(--green-pale); position: absolute; top: -10px; right: 16px; line-height: 1; user-select: none;
}
.step-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.step-title { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--charcoal); }
.step-desc { font-size: 14px; color: var(--warm-grey); line-height: 1.6; }

/* ── LINER SECTION ── */
.liner-section { background: var(--charcoal); color: white; }
.liner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.liner-section .section-label { color: #A8D5A2; }
.liner-section .section-title { color: white; }
.liner-section .section-sub { color: rgba(255,255,255,0.6); max-width: 100%; margin-bottom: 32px; }
.liner-features { list-style: none; margin-bottom: 32px; }
.liner-features li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; color: rgba(255,255,255,0.85); }
.liner-features li:last-child { border-bottom: none; }
.feature-dot { width: 8px; height: 8px; background: #7FD972; border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.liner-visual { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; text-align: center; }
.liner-emoji { font-size: 100px; display: block; margin-bottom: 24px; }
.liner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.liner-stat { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 16px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #A8D5A2; display: block; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--cream); border-radius: 14px; padding: 26px; border: 1px solid var(--border); }
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; }
.review-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
.review-location { font-size: 12px; color: var(--warm-grey); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-image { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 52px; overflow: hidden; padding: 0; }
.blog-image img { width: 100%; height: 160px; object-fit: cover; object-position: center; display: block; }
.blog-image.green { background: var(--green-pale); }
.blog-image.amber { background: var(--amber-light); }
.blog-image.dark  { background: #F0EDEA; }
.blog-body { padding: 20px; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--warm-grey); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-question { font-weight: 600; font-size: 16px; color: var(--charcoal); margin-bottom: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; }
.faq-icon { color: var(--green); font-size: 24px; font-weight: 300; line-height: 1; }
.faq-answer { display: none; font-size: 15px; color: var(--warm-grey); line-height: 1.7; padding-top: 12px; }
.faq-answer.open { display: block; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--green); padding: 70px 0; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; padding: 0 24px; }
.newsletter-inner h2 { font-size: 32px; color: white; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }
.email-form { display: flex; gap: 10px; }
.email-form input { flex: 1; padding: 14px 18px; border-radius: 8px; border: none; font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; }
.email-form button { background: var(--amber); color: white; border: none; padding: 14px 24px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.email-form button:hover { background: #B45309; }

/* ── FOOTER ── */
#site-footer { background: var(--charcoal); padding: 60px 0 32px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .site-logo { color: #A8D5A2; margin-bottom: 12px; display: block; }
.footer-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.footer-small { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 20px; }
.footer-legal a:hover { color: white; }

/* ── WORDPRESS CORE ── */
.wp-block-image img { border-radius: 8px; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2 { font-size: 28px; margin: 2em 0 0.6em; }
.entry-content h3 { font-size: 22px; margin: 1.6em 0 0.5em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.4em; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .liner-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  #primary-navigation ul { gap: 16px; }
}
@media (max-width: 640px) {
  .products-grid, .steps-grid, .blog-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  #primary-navigation { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  #primary-navigation.open { display: block; }
  #primary-navigation ul { flex-direction: column; gap: 12px; }
  .trust-bar-inner { gap: 16px; }
  .email-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
