/*
Theme Name: GroveNooks
Theme URI: https://grovenooks.com
Author: Nasid LLC
Author URI: https://grovenooks.com
Description: A premium Navy & Gold Home and Garden affiliate review theme with classic editorial feel.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: grovenooks
Tags: blog, home, garden, affiliate, review, navy, gold, premium
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --navy: #1B2A4A;
  --navy-dark: #111D33;
  --navy-light: #2C3F6B;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --warm-white: #FDFBF8;
  --charcoal: #1E1E1E;
  --soft-brown: #5C4A32;
  --muted-text: #8C7B6B;
  --border-color: #E2D9CC;
  --shadow-soft: 0 4px 30px rgba(27,42,74,0.08);
  --shadow-hover: 0 8px 40px rgba(27,42,74,0.15);
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1.2rem; font-size: 1rem; color: var(--soft-brown); }

/* =============================================
   UTILITY
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  margin: 16px 0;
}
.divider-center { margin: 16px auto; }

/* =============================================
   HEADER
============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

/* Top bar */
.header-topbar {
  background: var(--navy);
  padding: 7px 0;
  text-align: center;
}
.header-topbar p {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.header-topbar span { color: var(--gold-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.site-logo span { color: var(--gold); font-style: italic; }
.site-logo:hover { color: var(--navy); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-brown);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; transition: var(--transition); }

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* Gold decorative line */
.hero-section .gold-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-tagline::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-family: var(--font-body);
}

/* Hero image */
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
/* Gold border frame */
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 2;
  pointer-events: none;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}
.hero-badge-text { font-family: var(--font-display); font-size: 0.9rem; color: var(--navy-dark); font-weight: 500; }
.hero-badge-sub { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-top: 2px; font-family: var(--font-body); }

/* =============================================
   CATEGORIES STRIP
============================================= */
.categories-strip {
  background: var(--cream-dark);
  padding: 22px 0;
  border-bottom: 1px solid var(--border-color);
}
.categories-list { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.categories-list::-webkit-scrollbar { display: none; }
.cat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border-color);
  transition: var(--transition);
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { background: var(--navy); }
.cat-item a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-brown);
  font-weight: 500;
  transition: var(--transition);
}
.cat-item:hover a { color: #fff; }

/* =============================================
   BLOG SECTION
============================================= */
.blog-section { padding: 100px 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.section-header-left { max-width: 480px; }
.section-title { font-family: var(--font-display); color: var(--navy); margin-bottom: 8px; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.posts-grid.featured { grid-template-columns: 1.6fr 1fr 1fr; }

/* Post Card */
.post-card {
  background: var(--warm-white);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  overflow: hidden;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

.post-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }

.post-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.post-card-body { padding: 24px; }
.post-card-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.post-card-date { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--muted-text); text-transform: uppercase; font-family: var(--font-body); }
.post-card-read-time { font-size: 0.68rem; color: var(--muted-text); font-family: var(--font-body); }

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 12px;
  transition: var(--transition);
}
.post-card:hover .post-card-title { color: var(--gold-dark); }

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body);
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}
.post-card-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--cream-dark); overflow: hidden; flex-shrink: 0; }
.author-name { font-size: 0.72rem; color: var(--soft-brown); letter-spacing: 0.05em; font-family: var(--font-body); }
.post-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}
.post-card-link::after { content: '→'; transition: var(--transition); }
.post-card:hover .post-card-link::after { transform: translateX(4px); }

/* =============================================
   NEWSLETTER
============================================= */
.newsletter-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.newsletter-inner { text-align: center; position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.newsletter-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 16px;
}
.newsletter-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: #fff; margin-bottom: 16px; }
.newsletter-title em { font-style: italic; color: var(--gold-light); }
.newsletter-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 36px; font-family: var(--font-body); }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* =============================================
   SIDEBAR
============================================= */
.sidebar { width: 320px; flex-shrink: 0; }
.widget { background: var(--warm-white); border: 1px solid var(--border-color); padding: 28px; margin-bottom: 28px; }
.widget-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.widget-divider { width: 36px; height: 2px; background: linear-gradient(90deg, var(--navy), var(--gold)); margin-bottom: 20px; }

/* =============================================
   BLOG LAYOUT
============================================= */
.blog-layout { display: flex; gap: 52px; align-items: flex-start; }
.blog-main { flex: 1; min-width: 0; }

/* Single Post */
.post-category-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.post-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.post-meta {
  display: flex; gap: 24px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 36px;
}
.post-meta-item { font-size: 0.72rem; color: var(--muted-text); letter-spacing: 0.08em; font-family: var(--font-body); }
.post-meta-item strong { color: var(--soft-brown); font-weight: 500; }
.post-featured-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 40px; }

.post-content { line-height: 1.9; }
.post-content h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); margin: 44px 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.post-content h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); margin: 32px 0 14px; }
.post-content p { font-size: 1.02rem; color: var(--soft-brown); margin-bottom: 1.4rem; line-height: 1.9; font-family: var(--font-body); }
.post-content a { color: var(--gold-dark); border-bottom: 1px solid var(--gold-light); }
.post-content ul, .post-content ol { padding-left: 28px; margin-bottom: 1.4rem; color: var(--soft-brown); font-family: var(--font-body); }
.post-content li { margin-bottom: 8px; line-height: 1.8; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--cream);
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
}

/* Product Review Card */
.product-review-card {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold);
  padding: 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
}
.product-image { width: 160px; height: 160px; object-fit: contain; background: #fff; padding: 12px; border: 1px solid var(--border-color); }
.product-rating { display: flex; gap: 3px; margin-bottom: 10px; }
.star { color: var(--gold); font-size: 1.1rem; }
.star.empty { color: var(--border-color); }
.product-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.product-price { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; color: var(--gold-dark); margin-bottom: 12px; }
.pros-list, .cons-list { list-style: none; font-family: var(--font-body); }
.pros-list li::before { content: '✓ '; color: #4a8a5a; font-weight: 700; }
.cons-list li::before { content: '✗ '; color: #a05050; font-weight: 700; }
.pros-list li, .cons-list li { margin-bottom: 6px; color: var(--soft-brown); font-size: 0.88rem; }
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
}
.product-cta:hover { background: var(--navy-dark); color: var(--gold-light); transform: translateY(-1px); }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 80px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }

.footer-brand .site-logo { color: #fff; font-size: 1.4rem; display: block; margin-bottom: 16px; }
.footer-brand .site-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.4); margin-bottom: 24px; font-family: var(--font-body); }

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.footer-widget-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--transition); font-family: var(--font-body); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-family: var(--font-body); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.25); transition: var(--transition); font-family: var(--font-body); }
.footer-legal a:hover { color: var(--gold-light); }

.amazon-disclaimer { background: rgba(0,0,0,0.2); padding: 16px 0; text-align: center; }
.amazon-disclaimer p { font-size: 0.68rem; color: rgba(255,255,255,0.2); margin: 0; line-height: 1.6; font-family: var(--font-body); }

/* =============================================
   PAGINATION
============================================= */
.bpr-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.bpr-pagination span a,
.bpr-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em;
  border: 1px solid var(--border-color); color: var(--soft-brown);
  background: var(--warm-white); transition: var(--transition); text-decoration: none;
}
.bpr-pagination span.current { background: var(--navy); border-color: var(--navy); color: #fff; }
.bpr-pagination span a:hover { background: var(--cream-dark); border-color: var(--gold); color: var(--navy); }

/* Breadcrumbs */
nav.breadcrumbs ul { display: flex; gap: 8px; list-style: none; flex-wrap: wrap; font-size: 0.72rem; color: var(--muted-text); font-family: var(--font-body); }
nav.breadcrumbs ul li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: 0.4; }
nav.breadcrumbs ul li a { color: var(--muted-text); }
nav.breadcrumbs ul li a:hover { color: var(--gold-dark); }
nav.breadcrumbs ul li:last-child { color: var(--navy); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .posts-grid.featured { grid-template-columns: 1fr 1fr; }
  .posts-grid.featured .post-card.featured-large { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { flex-direction: column; }
  .sidebar { width: 100%; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border-color); padding: 20px 24px; }
  .main-nav.open ul { flex-direction: column; gap: 16px; }
  .menu-toggle { display: flex; }
  .posts-grid, .posts-grid.featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .product-review-card { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
