/*
Theme Name: Beauty Product Review
Theme URI: https://beautyproductreview.com
Author: Nasid LLC
Author URI: https://beautyproductreview.com
Description: A luxury Rose Gold & Cream beauty affiliate review theme with elegant typography and premium feel.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beautyproductreview
Tags: blog, beauty, affiliate, review, luxury, rose-gold
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --rose-gold: #B76E79;
  --rose-gold-light: #D4A0A8;
  --rose-gold-dark: #8B4F58;
  --cream: #FAF6F1;
  --cream-dark: #F0E8DE;
  --warm-white: #FFFCF9;
  --charcoal: #2C2020;
  --soft-brown: #6B4C4C;
  --muted-text: #9A7E7E;
  --gold-accent: #C9A96E;
  --gold-light: #E8D5B0;
  --border-color: #E8D5D5;
  --shadow-soft: 0 4px 30px rgba(183,110,121,0.1);
  --shadow-hover: 0 8px 40px rgba(183,110,121,0.2);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant SC', 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(--rose-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-gold-dark); }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  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); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; font-size: 1rem; color: var(--soft-brown); }

/* =============================================
   UTILITY CLASSES
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose-gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rose-gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: #fff;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold-accent));
  margin: 20px auto;
}

.divider-left { margin-left: 0; }

/* =============================================
   GOOGLE FONTS IMPORT
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Cormorant+SC:wght@300;400;500&family=Jost:wght@200;300;400;500&display=swap');

/* =============================================
   HEADER & NAVIGATION
============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,252,249,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.site-logo span {
  color: var(--rose-gold);
  font-style: italic;
}

.site-logo:hover { color: var(--charcoal); }

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav ul li a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-brown);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--rose-gold);
  border-bottom-color: var(--rose-gold);
}

.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--soft-brown);
  font-size: 1rem;
  padding: 8px;
  transition: var(--transition);
}
.nav-search-btn:hover { color: var(--rose-gold); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  display: block;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183,110,121,0.12) 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,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content { padding: 40px 0; }

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--soft-brown);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--rose-gold-light), var(--cream-dark));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(183,110,121,0.2));
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--warm-white);
  border: 1px solid var(--border-color);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--charcoal);
  font-style: italic;
}

.hero-badge-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-top: 2px;
}

/* =============================================
   FEATURED CATEGORIES STRIP
============================================= */
.categories-strip {
  background: var(--charcoal);
  padding: 28px 0;
}

.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: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.cat-item:last-child { border-right: none; }

.cat-item:hover { background: rgba(183,110,121,0.15); }

.cat-item a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.cat-item:hover a { color: var(--rose-gold-light); }

/* =============================================
   FEATURED POSTS / BLOG GRID
============================================= */
.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; }

.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(--rose-gold-light);
}

.post-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.post-card.featured-large .post-card-thumb {
  aspect-ratio: 4/3;
}

.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(--rose-gold);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-family: var(--font-body);
}

.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;
}

.post-card-read-time {
  font-size: 0.68rem;
  color: var(--muted-text);
}

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

.post-card:hover .post-card-title { color: var(--rose-gold); }

.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;
}

.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;
}

.post-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-card-link::after {
  content: '→';
  transition: var(--transition);
}

.post-card:hover .post-card-link::after { transform: translateX(4px); }

/* =============================================
   NEWSLETTER SECTION
============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3D2A2A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(183,110,121,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.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.25em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  display: block;
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.newsletter-title em { font-style: italic; color: var(--rose-gold-light); }

.newsletter-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.07);
  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;
  transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input[type="email"]:focus { border-color: var(--rose-gold); background: rgba(255,255,255,0.1); }

.newsletter-form button {
  padding: 16px 28px;
  background: var(--rose-gold);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--rose-gold-dark); }

/* =============================================
   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(--charcoal);
  margin-bottom: 6px;
}

.widget-divider {
  width: 36px;
  height: 1px;
  background: var(--rose-gold);
  margin-bottom: 20px;
}

/* =============================================
   BLOG LAYOUT (single post + sidebar)
============================================= */
.blog-layout {
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.blog-main { flex: 1; min-width: 0; }

/* Single Post */
.post-header { margin-bottom: 40px; }

.post-category-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border: 1px solid var(--rose-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: 300;
  line-height: 1.15;
  color: var(--charcoal);
  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;
}

.post-meta-item strong {
  color: var(--soft-brown);
  font-weight: 400;
}

.post-featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 40px;
}

/* Post Content */
.post-content { line-height: 1.9; }

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--charcoal);
  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(--charcoal);
  margin: 32px 0 14px;
}

.post-content p {
  font-size: 1.02rem;
  color: var(--soft-brown);
  margin-bottom: 1.4rem;
  line-height: 1.9;
}

.post-content a { color: var(--rose-gold); border-bottom: 1px solid var(--rose-gold-light); }
.post-content a:hover { color: var(--rose-gold-dark); }

.post-content ul, .post-content ol {
  padding-left: 28px;
  margin-bottom: 1.4rem;
  color: var(--soft-brown);
  font-size: 1rem;
}

.post-content li { margin-bottom: 8px; line-height: 1.8; }

.post-content blockquote {
  border-left: 3px solid var(--rose-gold);
  padding: 20px 28px;
  background: var(--cream);
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* Product Review Card (inside post) */
.product-review-card {
  background: var(--cream);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--rose-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-accent); font-size: 1.1rem; }
.star.empty { color: var(--border-color); }

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.product-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
  font-size: 0.85rem;
}

.pros-list, .cons-list { list-style: none; }
.pros-list li::before { content: '✓ '; color: #5a9a6e; font-weight: 600; }
.cons-list li::before { content: '✗ '; color: #c06060; font-weight: 600; }
.pros-list li, .cons-list li { margin-bottom: 6px; color: var(--soft-brown); }

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--rose-gold);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: var(--transition);
}

.product-cta:hover {
  background: var(--rose-gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: var(--charcoal);
  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(--rose-gold-light); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.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(--rose-gold);
  border-color: var(--rose-gold);
  color: #fff;
}

.footer-widget-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--rose-gold-light); }

/* Amazon Disclaimer */
.amazon-disclaimer {
  background: rgba(255,255,255,0.03);
  padding: 16px 0;
  text-align: center;
}

.amazon-disclaimer p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .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; }
  .product-image { width: 100%; max-width: 200px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
