/* ============================================
   LAILA'S GARDEN BLOG — Brand Stylesheet
   Where Hope Blooms
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,300;1,6..12,400&display=swap');

/* --- CSS Variables --- */
:root {
  --blush: #F8C8DC;
  --blush-light: #FDE8F0;
  --rose: #E8A0A0;
  --rose-deep: #C47A7A;
  --sage: #9CAF88;
  --sage-light: #B8C9A8;
  --sage-dark: #7A9066;
  --cream: #FFF5E1;
  --cream-light: #FFFDF8;
  --gold: #D4AF37;
  --gold-light: #E8D48A;
  --dark: #4A3728;
  --dark-soft: #6B5545;
  --text: #4A3728;
  --text-light: #8B7668;
  --bg: #FFFCF7;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', 'Segoe UI', Tahoma, sans-serif;

  --max-width: 1200px;
  --content-width: 780px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 2px 20px rgba(74, 55, 40, 0.06);
  --shadow-card: 0 4px 30px rgba(74, 55, 40, 0.08);
  --shadow-hover: 0 8px 40px rgba(74, 55, 40, 0.12);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

/* --- Subtle Background Texture --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(248, 200, 220, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(156, 175, 136, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(248, 200, 220, 0.3);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(74, 55, 40, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.nav-logo-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--rose);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-soft);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--dark); }

/* Shop link in nav - plain text style */

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 36px 24px 32px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 200, 220, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating rose petals */
.hero-petal {
  position: absolute;
  opacity: 0.12;
  animation: float-petal 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-petal svg {
  width: 28px;
  height: 28px;
}

.hero-petal:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 22s; }
.hero-petal:nth-child(2) { top: 25%; right: 12%; animation-delay: -4s; animation-duration: 18s; }
.hero-petal:nth-child(3) { bottom: 20%; left: 8%; animation-delay: -8s; animation-duration: 25s; }
.hero-petal:nth-child(4) { top: 10%; right: 25%; animation-delay: -12s; animation-duration: 20s; }
.hero-petal:nth-child(5) { bottom: 30%; right: 8%; animation-delay: -6s; animation-duration: 23s; }

@keyframes float-petal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(-3deg); }
  75% { transform: translateY(-20px) rotate(4deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  animation: fadeInDown 0.8s ease-out;
  filter: drop-shadow(0 2px 8px rgba(232, 160, 160, 0.2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--cream);
  border: 1px solid rgba(248, 200, 220, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 20px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
  display: inline-block;
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 10px 32px;
  border: 1.5px solid var(--rose);
  border-radius: 50px;
  transition: all var(--transition);
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-cta:hover {
  background: var(--rose);
  color: var(--white);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush), transparent);
  margin: 20px auto 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 48px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Related Posts Section (SEO posts) */
.related-posts {
  padding: 48px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.related-posts h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: #5a3d3d;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

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

/* ============================================
   POST CARDS GRID
   ============================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.04);
}

.post-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.post-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 400;
}

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

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

.post-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-deep);
  letter-spacing: 0.03em;
}

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

/* Featured Post (larger) */
.post-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition);
}

.post-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-featured .post-card-image { height: 100%; min-height: 380px; }
.post-featured .post-card-body { padding: 44px; justify-content: center; }
.post-featured .post-card-title { font-size: 2rem; }
.post-featured .post-card-excerpt { font-size: 1rem; }

/* Post card illustration images */
.img-gift-guide {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
}
.img-journey {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--rose) 30%, var(--blush) 100%);
}
.img-comfort {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 50%, rgba(156,175,136,0.25) 100%);
}
.img-behind {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, rgba(212,175,55,0.2) 100%);
}
.img-hope {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 30%, var(--rose) 100%);
}

.post-card-image .card-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 0.6s ease;
}

.post-card:hover .card-illustration,
.post-featured:hover .card-illustration {
  transform: scale(1.06);
}

.post-featured .card-illustration {
  padding: 0;
}

/* ============================================
   ABOUT / MISSION BANNER
   ============================================ */
.mission-banner {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 20px auto 80px;
  max-width: var(--max-width);
  box-shadow: var(--shadow-soft);
}

.mission-banner-icon {
  flex-shrink: 0;
}

.mission-banner-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.mission-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.mission-banner p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rose-deep);
}

/* ============================================
   BLOG POST (Single Article)
   ============================================ */
.post-hero {
  padding: 80px 24px 40px;
  text-align: center;
  position: relative;
}

.post-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush), transparent);
}

.post-hero-category {
  display: inline-block;
  padding: 4px 16px;
  background: var(--cream);
  border: 1px solid rgba(248, 200, 220, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  max-width: 750px;
  margin: 0 auto 20px;
}

.post-hero-meta {
  font-size: 0.9rem;
  color: var(--text-light);
}

.post-hero-meta span { margin: 0 8px; color: var(--blush); }

.post-hero-image {
  max-width: 900px;
  margin: -20px auto 0;
  padding: 0 24px;
}

.post-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(156, 175, 136, 0.15);
}

.post-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.post-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
  margin: 48px 0 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 200, 220, 0.3);
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 36px 0 16px;
}

.post-content blockquote {
  border-left: 3px solid var(--blush);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--cream-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-soft);
  line-height: 1.7;
}

.post-content strong { color: var(--dark); font-weight: 600; }

.post-content ul, .post-content ol {
  margin: 20px 0 24px 20px;
  padding-left: 0;
}

.post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 8px;
}

.post-content .product-callout {
  background: linear-gradient(135deg, var(--cream), var(--blush-light));
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 36px 0;
  border: 1px solid rgba(248, 200, 220, 0.3);
}

.post-content .product-callout h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.post-content .product-callout p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.post-content .product-callout a {
  font-weight: 600;
  color: var(--rose-deep);
}

/* Post signature */
.post-signature {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(248, 200, 220, 0.3);
  margin-top: 40px;
}

.post-signature p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose-deep);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 80px 24px 60px;
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.about-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
  margin: 48px 0 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.about-value-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(248, 200, 220, 0.2);
}

.about-value-card .icon { font-size: 2.5rem; margin-bottom: 16px; }

.about-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--cream) 100%);
  padding: 72px 24px;
  text-align: center;
  margin: 0;
}

.newsletter-inner {
  max-width: 540px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(248, 200, 220, 0.5);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--rose); }

.newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 160, 160, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blush);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover { color: var(--blush); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .post-featured {
    grid-template-columns: 1fr;
  }
  .post-featured .post-card-image { min-height: 240px; }
  .mission-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(248, 200, 220, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .hero h1 { font-size: 2.4rem; }
  .hero { padding: 40px 20px 30px; }
  .hero-logo { width: 140px; height: 140px; }
  .section { padding: 48px 20px; }
  .section-title { font-size: 2rem; }
  .posts-grid { grid-template-columns: 1fr; gap: 24px; }
  .post-hero h1 { font-size: 2.2rem; }
  .post-hero-image img { height: 220px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(232, 160, 160, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 99;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--rose-deep); transform: translateY(-2px); }

/* Already subscribed message */
.newsletter-already {
  background: rgba(156, 175, 136, 0.15);
  border: 1px solid rgba(156, 175, 136, 0.3);
  border-radius: 8px;
  padding: 16px 24px;
  color: #5a3d3d;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-already span { color: #9CAF88; }

/* Honeypot field - extra hiding */
.newsletter-form .hidden,
.newsletter-form p[style*="display:none"] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Product Showcase Module */
.product-showcase {
  background: linear-gradient(135deg, #FFF5E1 0%, #fdf0f4 100%);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0;
  border: 1px solid rgba(248, 200, 220, 0.3);
}
.product-showcase-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9CAF88;
  margin-bottom: 8px;
}
.product-showcase h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #5a3d3d;
  margin-bottom: 20px;
  font-weight: 600;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.product-showcase-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}
.product-showcase p {
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: #6b5e5e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-showcase-btn {
  display: inline-block;
  background: #c97878;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.2s;
}
.product-showcase-btn:hover {
  background: #b56868;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .product-showcase { padding: 24px 20px; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .product-showcase-grid img { height: 180px; }
}

/* Footer extras */
.footer-legal {
  border-top: 1px solid rgba(248, 200, 220, 0.2);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.8rem;
  color: #9a8a8a;
}
.footer-legal a {
  color: #9a8a8a;
  text-decoration: underline;
}
.footer-legal a:hover { color: #c97878; }

/* Inline Related Posts (mid-article) */
.inline-related {
  background: #fdf8f0;
  border-left: 3px solid #9CAF88;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.inline-related-label {
  display: block;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9CAF88;
  margin-bottom: 10px;
  font-weight: 600;
}
.inline-related a {
  display: block;
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: #c97878;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.inline-related a:hover {
  color: #a05858;
}

/* Product Gallery (Homepage) */
.product-gallery {
  padding: 60px 24px;
  background: #fff;
}
.product-gallery-inner {
  max-width: 900px;
  margin: 0 auto;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s;
}
.product-gallery-grid img:hover {
  transform: scale(1.02);
}
@media (max-width: 600px) {
  .product-gallery-grid { grid-template-columns: 1fr; }
  .product-gallery-grid img { height: 220px; }
}

/* Inline Related Reading Callout */
.inline-related {
  background: linear-gradient(135deg, #FFF5E1 0%, #fef0f0 100%);
  border-left: 4px solid #9CAF88;
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}
.inline-related strong {
  color: #6b8f5e;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.inline-related a {
  color: #8b5e6b;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #F8C8DC;
  text-underline-offset: 3px;
}
.inline-related a:hover {
  color: #E8A0A0;
  text-decoration-color: #E8A0A0;
}

/* ── Visually Hidden (accessibility) ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Unified Post CTA Module ── */
.post-cta {
  background: linear-gradient(135deg, #FFF5E1 0%, #fdf0f4 100%);
  border-radius: 16px;
  padding: 0;
  margin: 48px 0 40px;
  border: 1px solid rgba(248, 200, 220, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.post-cta-visual {
  position: relative;
}
.post-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.post-cta-content {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-cta-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9CAF88;
  margin-bottom: 8px;
}
.post-cta-benefit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #5a3d3d;
  line-height: 1.4;
  margin-bottom: 20px;
}
.post-cta-shop {
  display: inline-block;
  background: #c97878;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 20px;
  text-align: center;
}
.post-cta-shop:hover {
  background: #a85e5e;
  transform: translateY(-1px);
}
.post-cta-lead {
  border-top: 1px solid rgba(156, 175, 136, 0.25);
  padding-top: 16px;
}
.post-cta-lead-text {
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 0.88rem;
  color: #6b5e5e;
  margin-bottom: 10px;
}
.post-cta-lead-text strong {
  color: #5a3d3d;
}
.post-cta-form {
  display: flex;
  gap: 8px;
}
.post-cta-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(156, 175, 136, 0.4);
  border-radius: 6px;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 0.88rem;
  background: #fff;
  color: #5a3d3d;
  outline: none;
  transition: border-color 0.2s;
}
.post-cta-form input[type="email"]:focus {
  border-color: #9CAF88;
}
.post-cta-form input[type="email"]::placeholder {
  color: #b0a5a5;
}
.post-cta-form button {
  padding: 10px 18px;
  background: #9CAF88;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.post-cta-form button:hover {
  background: #7d9468;
}

/* Mobile CTA */
@media (max-width: 700px) {
  .post-cta {
    grid-template-columns: 1fr;
  }
  .post-cta-visual img {
    height: 200px;
    min-height: auto;
  }
  .post-cta-content {
    padding: 24px 20px 22px;
  }
  .post-cta-benefit {
    font-size: 1.15rem;
  }
  .post-cta-form {
    flex-direction: column;
  }
  .post-cta-form button {
    width: 100%;
    padding: 12px;
  }
}
