/* =========================
   GLOBAL
   ========================= */

:root {
  /* Color Palette - Cozy Glowing Ivory Milk & Sophisticated Slate Navy */
  --bg: #f7f5f0;
  --bg-secondary: #eeeae1;

  --primary: #344966;
  --primary-light: #506680;
  --primary-dark: #1c2d42;

  /* Brand Accent Colors matching the logo */
  --accent-blue: #8eb1d9;
  --accent-gold: #e5a93b;

  --text: #2b3c50;
  --text-light: #5f738a;
  --white: #ffffff;

  --border: #e2dbd0;

  --button: #344966;
  --button-text: #ffffff;
  --button-hover: #1c2d42;

  --shadow: 0 10px 30px rgba(45, 62, 82, 0.05);
  --shadow-hover: 0 15px 35px rgba(45, 62, 82, 0.1);

  /* Typography */
  /* Font 1 — Lora: hero titles, section headings, premium highlight text — elegant, soft luxury */
  --font-heading: "Lora", Georgia, "Times New Roman", serif;
  /* Font 2 — Taviraj: subtitles, product names, card titles, FAQ headings — modern editorial */
  --font-ui: "Merriweather", Georgia, "Times New Roman", serif;
  /* Font 3 — Roboto Slab: nav, buttons, labels, filters, small UI text — clean, stable ecommerce */
  --font-body: "Roboto Slab", Georgia, "Times New Roman", serif;
  /* Legacy alias — resolves to Roboto Slab for any remaining var(--font-family) references */
  --font-family: var(--font-body);

  /* Responsive Fluid Typography System */
  --fs-hero: clamp(2.4rem, 6.8vw, 8.5rem); /* Hero main title (.hero-title) */
  --fs-h1: clamp(
    1.8rem,
    4.5vw,
    4.2rem
  ); /* Page titles (.about-hero-title, .diaper-hero-title, .cart-hero-title) */
  --fs-h2: clamp(
    1.6rem,
    3.5vw,
    2.75rem
  ); /* Section headers (.showcase-title, .trial-title, .why-choose-title, .faq-title, .about-cta-title, etc.) */
  --fs-h3: clamp(
    1.25rem,
    2.2vw,
    1.85rem
  ); /* Card/sub-headings (.story-card-title, .product-title, .details-title, .section-title) */
  --fs-h4: clamp(
    1.1rem,
    1.5vw,
    1.35rem
  ); /* Component sub-headings (.why-card-title, .gifting-card-title, .summary-title, .empty-title) */
  --fs-body: clamp(
    0.95rem,
    0.2vw + 0.9rem,
    1.0625rem
  ); /* Standard body paragraphs (.showcase-desc, .trial-desc, .stack-main-desc, etc.) */
  --fs-body-lg: clamp(
    1.05rem,
    0.4vw + 1rem,
    1.25rem
  ); /* Large body / intro text (.about-hero-subtext, .philosophy-text) */
  --fs-body-sm: clamp(
    0.82rem,
    0.1vw + 0.8rem,
    0.9375rem
  ); /* Small body (.why-card-desc, .story-card-desc, .gifting-card-desc, etc.) */
  --fs-ui: clamp(
    0.85rem,
    0.8vw + 0.1rem,
    0.9375rem
  ); /* Navigation links, buttons, form controls */
  --fs-meta: clamp(
    0.7rem,
    0.6vw + 0.1rem,
    0.8125rem
  ); /* Badges, tiny text, remove buttons, legal info */

  /* Layout & Spacing */
  --max-width: 1600px;
  --header-height: 95px;
  --announcement-height: 42px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── Lora Typography Style: Oblique headings (Lora Heading Font Only) ── */
.hero-title,
.hero-left-text,
.about-hero-title,
.why-choose-title,
.about-cta-title,
.diaper-hero-title,
.product-title,
.details-title,
.related-title,
.cart-hero-title,
.blog-hero-title,
.blog-featured-title,
.details-hero-title,
.faq-hero-title,
.faq-title,
.promise-title,
.support-title,
.guide-hero-title,
.timeline-panel .panel-title,
.metrics-title,
.visual-story-block .story-title,
.cta-title,
.showcase-title,
.trial-title,
.stack-main-title,
.catnavPanelTitle,
.core-collection-title,
.section-title,
.philosophy-huge-text,
.philosophy-bold,
.pediatrician-quote {
  font-style: oblique;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Hide scrollbar for Lenis smooth scrolling support */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

.lenis-target {
  scroll-behavior: auto !important;
}

/* ==========================================================================
   Structural Layout
   ========================================================================== */

/* Main Container width limits and inline padding bounds */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* =========================
   TYPOGRAPHY
   ========================= */

/*
   FONT HIERARCHY
   ────────────────────────────────────────────────────
   Lora        → --font-heading  → hero titles, section headings, premium highlights
   Taviraj     → --font-ui       → subtitles, product names, card titles, FAQ headings
   Roboto Slab → --font-body     → nav, buttons, labels, filters, UI text, forms
*/

/* ── Base body: Roboto Slab for all UI defaults ── */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── HEADER / NAVBAR typography ── */
.announcement-bar {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.logo-text {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.mobile-submenu-title {
  font-family: var(--font-ui);
  font-size: var(--fs-body-sm);
  font-weight: 500;
}

.mobile-submenu-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
}

.discover-links-list li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

.gifting-card-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.3;
}

.gifting-card-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.6;
}

/* ── HERO typography ── */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 0.92;
  font-style: oblique;
}

.hero-left-text {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-right-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

/* ── BUTTONS ── */
.btn-pill,
.btn-pill-white,
.btn-outline-pill {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ── SHOWCASE section typography ── */
.showcase-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
}

.feature-label {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.showcase-desc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

/* ── TRIAL section typography ── */
.trial-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
}

.trial-desc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

.trial-form-label {
  font-family: var(--font-body);
  font-weight: 400;
}

.trial-select {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ── STACK section ── */
.stack-main-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
}

.stack-main-desc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
}

.stack-perk-label {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0px;
}

/* ── CATNAV section ── */
.catnavItem {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1.5px;
}

.catnavPanelEyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2px;
}

.catnavPanelTitle {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.catnavPanelDesc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
}

.catnavPanelCta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── CORE COLLECTION carousel ── */
.core-collection-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}

.collection-product-title {
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.collection-desc {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
}

.collection-price {
  font-family: var(--font-body);
  font-weight: 600;
}

.collection-cta-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.review-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
}

/* ── PHILOSOPHY section ── */
.philosophy-eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
}

.philosophy-text {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.7;
  font-size: var(--fs-body-lg);
}

.philosophy-bold {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  font-style: oblique;
  font-size: var(--fs-body-lg);
  display: block;
  margin-bottom: 0.65em;
  color: var(--white);
}

.philosophy-cta {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/*
 * .philosophy-prose — TinyMCE content normalization for the Philosophy section.
 * The philosophy section sits on a dark overlay/background, so all text must
 * be white. TinyMCE injects inline color/font/size styles that override the
 * inherited cascade, so we use high-specificity descendant rules to strip and
 * re-apply the correct design tokens without touching stored DB content.
 */
.philosophy-prose {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: 1.75;
}

/* Normalize every block/inline element TinyMCE can generate */
.philosophy-prose p,
.philosophy-prose div,
.philosophy-prose span,
.philosophy-prose li,
.philosophy-prose h1,
.philosophy-prose h2,
.philosophy-prose h3,
.philosophy-prose h4,
.philosophy-prose h5,
.philosophy-prose h6 {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--font-heading) !important;
  font-size: var(--fs-body-lg) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  background: none !important;
  background-color: transparent !important;
}

/* Paragraph spacing — match .stack-main-desc / .showcase-desc pattern */
.philosophy-prose p {
  margin: 0 0 0.85em 0 !important;
}

.philosophy-prose p:last-child {
  margin-bottom: 0 !important;
}

/* Keep bold/em/strong readable but still light */
.philosophy-prose strong,
.philosophy-prose b {
  font-weight: 600 !important;
  color: var(--white) !important;
}

.philosophy-prose em,
.philosophy-prose i {
  font-style: italic !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Links inside prose */
.philosophy-prose a {
  color: var(--accent-gold) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Lists */
.philosophy-prose ul,
.philosophy-prose ol {
  padding-left: 1.4em !important;
  margin: 0 0 0.85em 0 !important;
  list-style: disc;
}

.philosophy-prose ol {
  list-style: decimal;
}

/* ── ABOUT page ── */
.about-hero-label {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 2.5px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.about-hero-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
}

.story-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.story-card-title {
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.story-card-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.75;
}

.story-card-accent {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.why-choose-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.why-card-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.3;
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.7;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: 4px;
}

.philosophy-huge-text {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

.philosophy-quote-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.faq-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.faq-question {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.35;
}

.faq-panel-inner {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.8;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.about-cta-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.75;
}

/* ── MOM MOMENTS testimonials ── */
.mom-eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
}

.mom-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.mom-subheading {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}

.mom-quote {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0px;
}

.mom-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.mom-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ── PRODUCT PAGES ── */
.product-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.product-category {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.breadcrumb-product {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
}

.selector-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.size-desc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
}

.price-current {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.5px;
}

.description-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
}

.btn-add-cart-big,
.btn-buy-now {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-name {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.details-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.accordion-trigger {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.accordion-content p,
.accordion-content li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.related-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.related-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
}

.related-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.btn-view-product {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── DIAPER LISTING PAGE ── */
.diaper-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.diaper-hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  letter-spacing: 0.1px;
  line-height: 1.7;
}

.filters-title {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.filter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.filter-checkbox {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

.btn-clear-filters {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.results-count {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

.sort-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.sort-select {
  font-family: var(--font-body);
  font-size: 12.5px;
}

.product-name {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
}

.product-size {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
}

.price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.btn-add-cart {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -3px;
  text-transform: lowercase;
}

.dispatch-title {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.dispatch-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
}

.form-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

.copyright {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
}

.legal-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
}

/* ── ABOUT breadcrumb ── */
.about-breadcrumb {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ── BREADCRUMB (diaper page) ── */
.breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

/* ── FEATURE PILLS ── */
.feature-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── AVAILABILITY / BADGES ── */
.availability-status {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}

.product-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.badge-new {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  background-color: #fef7e6;
  color: #8c6a28;
  border: 1px solid #f6e2bd;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}

/* ── PAGINATION ── */
.pagination-btn {
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
}

/* Announcement Bar styling */
.announcement-bar {
  height: var(--announcement-height);
  background-color: #fef7e6; /* Soft gold background wash */
  color: #8c6a28; /* Deep gold-bronze text */
  border-bottom: 1px solid #f6e2bd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
  position: relative;
}

/* Header & Navbar container */
.site-header {
  height: var(--header-height);
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.is-scrolled {
  height: 75px;
  background-color: rgba(245, 244, 242, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* 3-Column Navbar Grid structure */
.nav-col-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.nav-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-col-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

/* Logo Stacking styling */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11000;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transform-origin: center top;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 4px 10px rgba(45, 62, 82, 0.05));
  margin-top: -10px;
}

.site-header.is-scrolled .logo-img {
  height: 70px;
  margin-top: 0;
  filter: drop-shadow(0 2px 5px rgba(45, 62, 82, 0.03));
}

.footer-logo-container {
  display: block;
  margin-top: 40px;
  width: fit-content;
}

.footer-logo-img {
  height: 135px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(45, 62, 82, 0.04));
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

/* Nav Links & Actions */
.nav-link {
  font-size: var(--fs-ui);
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-light);
}

/* Nav Icons Group styling */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  color: var(--primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 10px;
  background-color: var(--accent-blue);
  color: var(--primary-dark);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile Nav Icons helper */
.nav-col-right-mobile {
  display: none;
}

/* Active header nav underline styling */
.nav-link.underline-hover.is-active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   MOBILE ACCORDION SUBMENU STYLES
   ========================================================================== */
.mobile-menu-item.has-submenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: none;
  padding: 0 28px;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-submenu-toggle i {
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.mobile-submenu-toggle.is-active i {
  transform: rotate(180deg);
}

/* Submenu container — reliable max-height collapse */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-submenu.is-active {
  max-height: 900px;
}

.mobile-submenu-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 0 16px;
  background-color: transparent;
  border-bottom: 1px solid var(--border);
}

.mobile-submenu-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: 1px solid rgba(52, 73, 102, 0.08);
  padding: 4px 0;
}

.mobile-submenu-title {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 10px 0;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-submenu-title i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-submenu-title.is-active i {
  transform: rotate(45deg);
}

/* Sub-link list: always visible when parent submenu-inner is open */
.mobile-submenu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-submenu-links.is-active {
  max-height: 500px;
}

.mobile-submenu-links a {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 7px 0;
  display: block;
  transition: color 0.2s ease;
}

.mobile-submenu-links a:hover {
  color: var(--primary);
}

.mobile-submenu-bottom {
  margin-top: 12px;
}

.mobile-explore-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Discover flat link list — always visible inside expanded submenu-inner */
.mobile-discover-links {
  list-style: none;
  padding: 4px 0 4px;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-discover-links li a {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 8px 0;
  display: block;
  transition: color 0.2s ease;
}

.mobile-discover-links li a:hover {
  color: var(--primary);
}

/* Tablet responsiveness: collapse columns on smaller screens */

/* =========================
   HERO SECTIONS
   ========================= */

/* ==========================================================================
   1. Hero Section Styling
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--announcement-height));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--bg);
}

.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 1;
}

.grid-col-line {
  height: 100%;
  border-right: 1px solid var(--border);
}

.grid-col-line:last-child {
  border-right: none;
}

.hero-title-container {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  z-index: 5;
  position: relative;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 500;
  color: var(--primary);
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 0;
}

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 10;
  position: relative;
}

.hero-col {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

.hero-col-left {
  justify-content: center;
  align-items: flex-start;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 80px;
}

.hero-left-text {
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -1px;
}

.hero-col-center {
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0;
}

.baby-image-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -160px;
  z-index: 10;
}

.baby-main {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 3;
  transform-origin: bottom center;
  pointer-events: none;
}

.baby-main-layer {
  display: none;
  opacity: 0;
}

.baby-main-layer.active {
  display: block;
  opacity: 1;
}

.baby-ghost {
  position: absolute;
  bottom: 0;
  right: -10%;
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 2;
  opacity: 0.12;
  filter: blur(3px);
  pointer-events: none;
  transform-origin: bottom center;
}

.baby-ghost-layer {
  display: none;
  opacity: 0;
}

.baby-ghost-layer.active {
  display: block;
  opacity: 0.12;
}

.hero-col-right {
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 80px;
  gap: 32px;
}

.hero-right-text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* =========================
   PRODUCT CARDS
   ========================= */

/* ==========================================================================
   UI Components & Interactive Elements
   ========================================================================== */

/* Pill Button Standard */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button);
  color: var(--button-text);
  font-weight: 500;
  font-size: var(--fs-ui);
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(99, 80, 80, 0.1);
  transition: var(--transition);
}

.btn-pill:hover {
  background-color: var(--button-hover);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 80, 80, 0.18);
}

.btn-pill:active {
  transform: scale(0.98) translateY(0);
}

/* White Pill Button */
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: var(--fs-ui);
  padding: 14px 32px;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-pill-white:hover {
  background-color: var(--bg);
  transform: scale(1.03) translateY(-2px);
}

/* Underline Animation on Hover */
.underline-hover {
  position: relative;
}

.underline-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.underline-hover:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* New Badge Tag */
.badge-new {
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 6px;
  letter-spacing: 0.5px;
  display: inline-block;
  line-height: 1.2;
}

/* Hamburger Menu button vector lines */
.menu-toggle {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 10010;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Side Panel Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 45, 66, 0.45);
  z-index: 10004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-backdrop.is-active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Side Panel Navigation Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background-color: var(--bg);
  z-index: 10005;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  box-shadow: -8px 0 40px rgba(45, 62, 82, 0.12);
  transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav-overlay.is-active {
  right: 0;
  pointer-events: all;
}

/* Close button — top-right of side panel */
.mobile-close-btn {
  position: sticky;
  top: 0;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  z-index: 1;
}

.mobile-close-btn:hover {
  background-color: var(--border);
  transform: scale(1.08);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px 0 48px;
  text-align: left;
  width: 100%;
}

.mobile-menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}

.mobile-nav-overlay.is-active .mobile-menu-item {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger side-panel reveal */
.mobile-nav-overlay.is-active .mobile-menu-item:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-nav-overlay.is-active .mobile-menu-item:nth-child(2) {
  transition-delay: 0.14s;
}

.mobile-nav-overlay.is-active .mobile-menu-item:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav-overlay.is-active .mobile-menu-item:nth-child(4) {
  transition-delay: 0.26s;
}

.mobile-nav-overlay.is-active .mobile-menu-item:nth-child(5) {
  transition-delay: 0.32s;
}

.mobile-nav-link {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 500;
  color: var(--primary);
  display: block;
  padding: 18px 0;
  width: 100%;
  text-align: left;
}

/* Floating contact widget */
.floating-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(99, 80, 80, 0.2);
  z-index: 99;
  transition: var(--transition);
}

.floating-widget:hover {
  background-color: var(--primary-light);
  transform: scale(1.05) translateY(-2px);
}

/* =========================
   MEGA MENUS
   ========================= */

/* =========================
   TESTIMONIALS
   ========================= */

/* ==========================================================================
   8. Mom-Approved Moments Testimonial Carousel Section
   ========================================================================== */

.mom-moments-section {
  position: relative;
  z-index: 13;
  background-color: #f6f5f3;
  padding: 120px 0 100px;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.mom-container {
  width: 100%;
  margin: 0 auto;
}

/* ── Header Row ────────────────────────────────────────────────────────── */
.mom-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 4%;
}

.mom-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.mom-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.mom-subheading {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--text-light);
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Carousel Viewport & Track ─────────────────────────────────────────── */
.mom-carousel-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding: 24px 0 40px;
  /* Top/bottom padding allows card hover scale/shadow travel */
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y;
  /* Allow vertical browser scroll, custom horizontal swipe */
}

.mom-carousel-viewport:active {
  cursor: grabbing;
}

.mom-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding-left: 4%;
  /* initial padding matching grid align */
  user-select: none;
  -webkit-user-select: none;
}

/* ── Testimonial Cards ─────────────────────────────────────────────────── */
.mom-card {
  position: relative;
  flex: 0 0 280px;
  /* portrait cards 9:16 aspect constraint */
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 8px 24px rgba(99, 80, 80, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow;
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Card hover states */
.mom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(99, 80, 80, 0.12);
}

/* ── Media Elements ────────────────────────────────────────────────────── */
.mom-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mom-video,
.mom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.mom-card:hover .mom-video,
.mom-card:hover .mom-img {
  transform: scale(1.05);
}

/* Media darker gradient overlay for typography readability */
.mom-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 5, 0) 0%,
    rgba(10, 7, 5, 0.35) 45%,
    rgba(10, 7, 5, 0.78) 90%,
    rgba(10, 7, 5, 0.88) 100%
  );
  opacity: 0.95;
  transition: opacity 0.4s ease;
}

.mom-card:hover .mom-media-overlay {
  opacity: 1;
}

/* ── Typography & Inside Layout ────────────────────────────────────────── */
.mom-card-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  /* pushes text panel to bottom */
  padding: 28px 24px;
  box-sizing: border-box;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Stars rating UI */
.mom-rating {
  margin-bottom: 2px;
}

.mom-stars {
  color: #e5b842;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
}

.mom-quote {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: -0.2px;
}

.mom-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.mom-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.mom-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* ── Text-Only Card Specific Styles ────────────────────────────────────── */
.mom-card-text {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  box-shadow: none;
}

.mom-card-text .mom-card-content {
  height: 100%;
  justify-content: center;
  margin-top: 0;
  color: var(--primary);
  padding: 36px 28px;
}

.mom-card-text .mom-quote-icon {
  font-family: serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(99, 80, 80, 0.12);
  margin-bottom: -15px;
  height: 36px;
  display: block;
}

.mom-card-text .mom-quote {
  color: var(--primary);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
}

.mom-card-text .mom-name {
  color: var(--primary);
}

.mom-card-text .mom-role {
  color: var(--text-light);
}

/* ── Responsive Testimonial Settings ───────────────────────────────────── */

/* =========================
   ABOUT PAGE
   ========================= */

/* ==========================================================================
   ABOUT PAGE CUSTOM STYLES
   ========================================================================== */

.about-page {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* 1. HERO BANNER SECTION */
.about-hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("https://images.unsplash.com/photo-1596464716127-f2a82984de30?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  /* Zoomed in for initial intro reveal */
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(99, 80, 80, 0.3) 0%,
    rgba(78, 62, 62, 0.55) 100%
  );
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  color: var(--white);
}

.about-hero-label {
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: inline-block;
  opacity: 0.9;
}

.about-hero-title {
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.about-hero-subtext {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.about-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-hero-actions .btn-pill {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}

.about-hero-actions .btn-pill:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

.about-hero-actions .btn-pill-primary {
  background-color: var(--white);
  color: var(--primary-dark);
}

.about-hero-actions .btn-pill-primary:hover {
  background-color: transparent;
  color: var(--white);
}

.about-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--white);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.8s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 14px;
    opacity: 0;
  }

  100% {
    top: 6px;
    opacity: 1;
  }
}

/* 2. BREADCRUMB SECTION */
.about-breadcrumb-bar {
  border-bottom: 1px solid var(--border);
  background-color: var(--bg-secondary);
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.about-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.about-breadcrumb a:hover {
  color: var(--primary);
}

.about-breadcrumb span {
  color: var(--text);
}

.breadcrumb-separator {
  color: var(--border) !important;
}

/* 3. PINNED HORIZONTAL STORYTELLING STRIP */
.horizontal-story-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
  display: flex;
  align-items: center;
}

.horizontal-story-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 10%;
  will-change: transform;
}

.horizontal-story-track {
  display: flex;
  gap: 80px;
  padding-right: 15vw;
}

.story-card {
  width: 700px;
  height: 60vh;
  min-height: 420px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(99, 80, 80, 0.04);
  box-shadow: 0 10px 30px rgba(99, 80, 80, 0.01);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-card-img-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.story-card:hover .story-card-img {
  transform: scale(1.05);
}

.story-card-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.story-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 1.5px;
}

.story-card-title {
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.2;
}

.story-card-desc {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--text-light);
}

.story-card-accent {
  border-left: 2px solid var(--border);
  padding-left: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-top: 10px;
}

/* 4. WHY CHOOSE CLOUDCUSH SECTION */
.why-choose-section {
  padding: 120px 0;
  background-color: var(--bg-secondary);
}

.why-choose-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.why-choose-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.why-choose-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-dark);
  letter-spacing: -0.8px;
}

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

.why-card {
  background: var(--white);
  border: 1px solid rgba(99, 80, 80, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(99, 80, 80, 0.01);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(99, 80, 80, 0.06);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: rgba(99, 80, 80, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 26px;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}

.why-card:hover .why-icon-wrap {
  background-color: var(--primary);
  color: var(--white);
}

.why-card-title {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary-dark);
}

.why-card-desc {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--text-light);
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(99, 80, 80, 0.02) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

/* 5. INFINITE TEXT MARQUEE */
.marquee-section {
  padding: 60px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.marquee-content span {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-light);
  opacity: 0.2;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.marquee-dot {
  font-size: 26px !important;
  opacity: 0.15 !important;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 6. LAYERED PHILOSOPHY SECTION */
.philosophy-layered-section {
  position: relative;
  padding: 160px 0;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.philosophy-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  text-align: left;
}

.philosophy-quote-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.philosophy-huge-text {
  font-size: var(--fs-h2);
  line-height: 1.4;
  font-weight: 400;
  color: var(--primary-dark);
  letter-spacing: -1px;
}

.philosophy-right-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(99, 80, 80, 0.06);
  z-index: 1;
}

.philosophy-right-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Prepped for GSAP parallax scroll */
}

/* 7. REUSED TESTIMONIAL CAROUSEL */
/* Reuses styles from sections.css: .mom-moments-section, .mom-card, etc. */
.about-page .mom-moments-section {
  background-color: var(--bg-secondary);
}

/* 8. FAQ SECTION */
.faq-section {
  padding: 120px 0;
  background-color: var(--bg);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.faq-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.faq-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: -0.8px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--primary-dark);
  padding-right: 20px;
  transition: var(--transition);
}

.faq-trigger:hover .faq-question {
  color: var(--primary);
}

.faq-icon-box {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.is-open .faq-panel {
  max-height: 600px;
}

.faq-panel-inner {
  padding-bottom: 24px;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--text-light);
}

.faq-panel-inner p {
  margin-bottom: 10px;
}

.faq-panel-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 12px;
}

.faq-panel-inner li {
  margin-bottom: 6px;
}

.faq-panel-inner strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.faq-item.is-open .faq-icon-box {
  transform: rotate(45deg);
}

/* 9. FINAL CTA SECTION */
.about-cta-section {
  position: relative;
  padding: 140px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.about-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1507652313519-d4e9174996dd?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.15);
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(78, 62, 62, 0.45) 0%,
    rgba(99, 80, 80, 0.6) 100%
  );
  z-index: 2;
}

.about-cta-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: var(--fs-h2);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-cta-desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.9;
}

.about-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-cta-actions .btn-pill {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}

.about-cta-actions .btn-pill:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

.about-cta-actions .btn-pill-primary {
  background-color: var(--white);
  color: var(--primary-dark);
}

.about-cta-actions .btn-pill-primary:hover {
  background-color: transparent;
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* =========================
   PRODUCT PAGES
   ========================= */

/* ============================================
   Product Details Page Styles
   ============================================ */

.product-details {
  background-color: var(--bg);
}

/* Product Hero Grid */
.product-hero {
  padding: 60px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery Section */
.product-gallery-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
  user-select: none;
}

.gallery-main:hover .main-image {
  transform: scale(1.05);
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb[data-active="true"] {
  border-color: var(--primary);
}

/* Product Info Section */
.product-info-section {
  display: flex;
  flex-direction: column;
}

.breadcrumb-product {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumb-product a:hover {
  color: var(--primary);
}

.product-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.product-category {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.rating-stars {
  font-size: 14px;
  color: #ffc107;
  font-weight: 600;
}

.btn-write-review {
  font-size: 13px;
  color: var(--primary);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount {
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.availability-status {
  font-size: 14px;
  font-weight: 600;
}

.availability-status.in-stock {
  color: #2e7d32;
}

.description-block {
  margin-bottom: 32px;
}

.description-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.selector-block {
  margin-bottom: 24px;
}

.selector-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.size-btn:hover {
  border-color: var(--primary);
}

.size-btn[data-active="true"] {
  border-color: var(--primary);
  background-color: var(--bg-secondary);
}

.size-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.size-desc {
  font-size: 11px;
  color: var(--text-light);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.qty-btn:hover {
  background-color: var(--bg-secondary);
}

.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-weight: 600;
}

/* Remove arrows from number input */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.btn-add-cart-big {
  background-color: var(--button);
  color: var(--button-text);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: var(--fs-ui);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-cart-big:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
}

.btn-buy-now {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: var(--fs-ui);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-buy-now:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* Expanded Details Section */
.product-details-expanded {
  padding: 80px 0;
  background-color: var(--bg);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.details-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
}

.feature-block {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  opacity: 1;
  transform: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger i {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-trigger.is-active i {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.is-active {
  max-height: 1000px;
  padding-bottom: 28px;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
}

.accordion-content ul {
  list-style: disc;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 24px;
}

.accordion-content li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.accordion-content strong {
  font-weight: 700;
  color: var(--primary);
}

/* Related Products */
.related-products {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: none;
  transition:
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--white);
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(99, 80, 80, 0.1);
}

.related-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--bg-secondary);
  margin-bottom: 0;
}

.related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.related-card:hover .related-img-wrap img {
  transform: scale(1.06);
}

.related-card .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.related-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  padding: 14px 14px 0;
}

.related-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  padding: 0 14px;
  line-height: 1.4;
}

.related-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding: 0 14px;
}

.related-price .original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.btn-view-product {
  margin: 0 16px 16px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: calc(100% - 32px);
  text-align: center;
}

.btn-view-product:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(99, 80, 80, 0.18);
}

/* Responsive */

/* ============================================
   Diaper Listing Page Styles
   ============================================ */

.diaper-listing {
  background-color: var(--bg);
}

/* Hero Banner */
.diaper-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diaper-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}

.diaper-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.diaper-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.diaper-hero-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.diaper-hero-subtitle {
  font-size: var(--fs-body);
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-sep,
.breadcrumb-current {
  color: var(--white);
  opacity: 0.8;
}

/* Main Layout */
.diaper-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 56px 0 80px;
  align-items: start;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Filters Panel */
.filters-panel {
  position: sticky;
  top: 120px;
  height: fit-content;
  background-color: var(--bg);
  border-right: 1px solid var(--border);
  padding-right: 32px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.filters-title {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary);
}

.filters-close {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

.filter-group {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-label {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.filter-label:hover {
  opacity: 0.7;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  max-height: 200px;
  overflow-y: auto;
}

/* ── Filter accordion collapse/expand ── */
.filter-options {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    margin-top 0.2s ease,
    opacity 0.25s ease;
  opacity: 0;
}

.filter-options.is-open {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 16px;
  opacity: 1;
}

/* Arrow rotation on open */
.filter-label i {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 16px;
  flex-shrink: 0;
}

.filter-label.is-open i {
  transform: rotate(180deg);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-clear-filters {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 16px;
}

.btn-clear-filters:hover {
  background-color: var(--bg-secondary);
}

/* Products Section */
.products-section {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-count {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: var(--white);
  color: var(--primary);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sort-select:hover {
  border-color: var(--primary);
}

.filter-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-toggle:hover {
  background-color: var(--bg-secondary);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: none;
  background-color: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  animation: cardReveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
  will-change: transform, box-shadow;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(99, 80, 80, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:nth-child(1) {
  animation-delay: 0.04s;
}
.product-card:nth-child(2) {
  animation-delay: 0.08s;
}
.product-card:nth-child(3) {
  animation-delay: 0.12s;
}
.product-card:nth-child(4) {
  animation-delay: 0.16s;
}
.product-card:nth-child(5) {
  animation-delay: 0.2s;
}
.product-card:nth-child(6) {
  animation-delay: 0.24s;
}
.product-card:nth-child(7) {
  animation-delay: 0.28s;
}
.product-card:nth-child(8) {
  animation-delay: 0.32s;
}
.product-card:nth-child(9) {
  animation-delay: 0.36s;
}
.product-card:nth-child(10) {
  animation-delay: 0.4s;
}
.product-card:nth-child(11) {
  animation-delay: 0.44s;
}
.product-card:nth-child(12) {
  animation-delay: 0.48s;
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
  background-color: var(--bg-secondary);
  margin-bottom: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.product-main-img {
  display: block;
}

.product-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
}

.product-image-wrap:hover .product-main-img {
  transform: scale(1.08);
}

.product-image-wrap:hover .product-hover-img {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.best-seller {
  background-color: var(--primary-light);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 20px;
  flex: 1;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.product-size {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.rating-count {
  color: var(--text-light);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-add-cart {
  background-color: var(--button);
  color: var(--button-text);
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: var(--fs-ui);
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.btn-add-cart:hover {
  background-color: var(--button-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 80, 80, 0.18);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination-btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-size: var(--fs-ui);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  color: var(--text-light);
}

/* ============================================
   Responsive Design
   ============================================ */

/* =========================
   FOOTER
   ========================= */

/* Footer Section Container */
.site-footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
  padding: 100px 0 0;
  overflow: hidden;
}

/* Footer bottom bar gets its own padding so it sits flush at the floor */
.footer-bottom-bar {
  padding: 40px 0 50px;
}

/* ── Footer Background Image Layer ────────────────────────────────────────── */
/* Product image anchored to the bottom-right, bleeds naturally into footer.  */
/* z-index stack: bg-image(0) → gradient-mask(1) → content(2)                */
.footer-bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
  display: block;
  object-fit: cover;
  object-position: bottom center;
  will-change: transform;
  /* Fade in from top so image appears in lower half of footer only */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  transform: none;
}

/* ── Footer Gradient Veil ─────────────────────────────────────────────────── */
/* Sits above the image, below the content. Keeps right-side text readable.  */
.footer-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Solid at top, softens in lower third — lets image breathe at bottom */
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    var(--bg) 30%,
    rgba(247, 245, 240, 0.75) 55%,
    rgba(247, 245, 240, 0.35) 75%,
    rgba(247, 245, 240, 0.08) 100%
  );
}

/* Ensure all direct footer children sit above both decorative layers */
.site-footer > .container {
  position: relative;
  z-index: 2;
}

/* 1. HERO FOOTER TOP (Giant Editorial Branding) */
.footer-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
  padding-bottom: 50px;
  margin-bottom: 60px;
}

.footer-huge-brand-wrap {
  flex: 1;
}

.footer-logo-brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-big-logo {
  height: clamp(90px, 10vw, 160px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.footer-big-logo:hover {
  transform: scale(1.03) rotate(-1.5deg);
}

.footer-huge-brand {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0;
  font-style: italic;
  display: flex;
  align-items: center;
}

.typing-cursor {
  font-family: var(--font-body);
  font-weight: 200;
  color: var(--accent-gold);
  animation: footerCursorBlink 0.8s infinite;
  margin-left: 4px;
  display: inline-block;
  font-style: normal;
}

@keyframes footerCursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.footer-slogan-wrap {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  padding-bottom: 10px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.3;
}

.footer-slogan-sub {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

/* 2 & 3. CREATIVE LINK LAYOUT & BRAND STORY BLOCK */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

/* Column 1: Brand Story Block */
.footer-story-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 40px;
}

.footer-story-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}

.footer-story-icon svg {
  width: 40px;
  height: 40px;
}

.footer-story-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-story-location {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

/* Columns 2, 3, 4: Link Groups */
.footer-nav-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav-title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Typographic Links with gold line animate-in effect */
.footer-nav-link-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.footer-nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-nav-link-item:hover {
  color: var(--primary);
}

.footer-nav-link-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* 4. SOCIAL SECTION */
.footer-social-wrap {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
  background-color: transparent;
}

.footer-social-icon:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.08) translateY(-2px);
}

/* 5. BOTTOM BAR */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-policy-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-policy-link:hover {
  color: var(--accent-gold);
}

.footer-payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-payment-icon {
  height: 20px;
  width: auto;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition-fast);
}

.footer-payment-icon:hover {
  filter: none;
  opacity: 1;
}

/* =========================
   ADDITIONAL SECTIONS
   ========================= */

/* ==========================================================================
   2. Showcase Section Styling
   ========================================================================== */

.showcase-section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background-color: #f4f4ef;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  box-sizing: border-box;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
  width: 100%;
}

.showcase-col {
  display: flex;
  flex-direction: column;
}

.showcase-col-left {
  align-items: flex-start;
  gap: 36px;
  padding-right: 40px;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.cloud-icon {
  width: 100%;
  height: 100%;
}

.feature-label {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.showcase-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  letter-spacing: -0.1px;
}

.showcase-col-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.diaper-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diaper-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  will-change: transform;
}

.pin-wrapper,
.gsap-pin-wrapper {
  z-index: 1 !important;
}

/* ==========================================================================
   3. Trial Pack Section Styling
   ========================================================================== */

.atelier-section {
  position: relative;
  z-index: 10;
  background-color: var(--white);
  padding: 120px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.atelier-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}

/* Asymmetric Editorial Header Block */
.atelier-header {
  display: grid;
  grid-template-columns: 24fr 42fr 34fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 80px;
}

.atelier-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
}

.atelier-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0;
  max-width: 620px;
}

.atelier-title em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.atelier-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  padding-top: 6px;
  max-width: 480px;
}

.atelier-canvas {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Floating Child Doodles */
.doodle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.doodle {
  position: absolute;
  color: var(--accent-blue);
  opacity: 0.15;
  stroke-width: 1.2;
  fill: none;
  animation: floatDoodle 15s infinite ease-in-out;
  transition: opacity 0.3s ease;
}

.doodle-cloud-1 {
  width: 90px;
  height: auto;
  top: 12%;
  left: 6%;
  animation-duration: 18s;
}

.doodle-star-1 {
  width: 28px;
  height: auto;
  top: 25%;
  right: 8%;
  animation-duration: 12s;
  animation-delay: -2s;
}

.doodle-heart-1 {
  width: 26px;
  height: auto;
  bottom: 15%;
  left: 8%;
  animation-duration: 14s;
  animation-delay: -4s;
}

.doodle-smile-1 {
  width: 32px;
  height: auto;
  bottom: 22%;
  right: 12%;
  animation-duration: 16s;
  animation-delay: -1s;
}

.doodle-spark-1 {
  width: 24px;
  height: auto;
  top: 8%;
  right: 28%;
  animation-duration: 10s;
  animation-delay: -3s;
}

@keyframes floatDoodle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

/* Left Column: Floating Product Showcase */
.atelier-showcase-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.atelier-glow-backdrop {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(238, 234, 225, 0.5) 0%,
    rgba(238, 234, 225, 0) 70%
  );
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.atelier-diaper-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.atelier-variant {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.atelier-variant.active {
  opacity: 1;
  pointer-events: auto;
}

.atelier-img {
  max-height: 75%;
  max-width: 75%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(52, 73, 102, 0.06));
}

/* Floating callout tags around diaper */
.atelier-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.atelier-tag:hover {
  transform: translateY(-3px);
}

.tag-dot {
  position: relative;
  width: 36px;
  height: 1px;
  background-color: var(--accent-gold);
  flex-shrink: 0;
  overflow: visible;
}

.tag-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--accent-gold);
  border-right: 1px solid var(--accent-gold);
}

.tag-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  max-width: 170px;
  pointer-events: auto;
  background: rgba(253, 251, 247, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 73, 102, 0.08);
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(52, 73, 102, 0.03);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.atelier-tag:hover .tag-content {
  border-color: rgba(229, 169, 59, 0.3);
  box-shadow: 0 6px 24px rgba(229, 169, 59, 0.08);
}

.tag-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.tag-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Custom position tweaks for floating labels to look art-directed */
.tag-top-left {
  top: 20%;
  left: 15px;
  right: 70%;
  flex-direction: row-reverse;
}
.tag-top-left .tag-content {
  text-align: right;
}
.tag-top-left .tag-dot::after {
  right: -2px;
  transform: translateY(-50%) rotate(45deg);
}

.tag-bottom-left {
  bottom: 20%;
  left: 15px;
  right: 70%;
  flex-direction: row-reverse;
}
.tag-bottom-left .tag-content {
  text-align: right;
}
.tag-bottom-left .tag-dot::after {
  right: -2px;
  transform: translateY(-50%) rotate(45deg);
}

.tag-center-left {
  top: 36%;
  left: 15px;
  right: 70%;
  flex-direction: row-reverse;
}
.tag-center-left .tag-content {
  text-align: right;
}
.tag-center-left .tag-dot::after {
  right: -2px;
  transform: translateY(-50%) rotate(45deg);
}

.tag-top-right {
  top: 22%;
  left: 70%;
  right: 15px;
  flex-direction: row;
}
.tag-top-right .tag-content {
  text-align: left;
}
.tag-top-right .tag-dot::after {
  left: -2px;
  transform: translateY(-50%) rotate(-135deg);
}

.tag-bottom-right {
  bottom: 18%;
  left: 70%;
  right: 15px;
  flex-direction: row;
}
.tag-bottom-right .tag-content {
  text-align: left;
}
.tag-bottom-right .tag-dot::after {
  left: -2px;
  transform: translateY(-50%) rotate(-135deg);
}

/* Right Column: Sizing Engine */
.atelier-engine-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 20px;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

/* Large faded background watermark name */
.atelier-watermark-wrap {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.atelier-watermark {
  font-family: var(--font-heading);
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(52, 73, 102, 0.022);
  letter-spacing: -2px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  user-select: none;
  white-space: nowrap;
}

/* Stage Selector Tabs */
.atelier-stages {
  display: flex;
  gap: 32px;
  z-index: 2;
  position: relative;
}

.atelier-stage-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: all 0.3s ease;
}

.btn-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.5;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.btn-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.35;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.atelier-stage-btn.active .btn-num {
  opacity: 1;
}

.atelier-stage-btn.active .btn-text {
  opacity: 1;
  font-weight: 600;
}

.atelier-stage-btn.active .btn-text::after {
  width: 100%;
}

.atelier-stage-btn:hover:not(.active) .btn-text {
  opacity: 0.7;
}

/* Weight Thread Slider */
.weight-thread-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  position: relative;
}

.weight-thread-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.weight-thread-line {
  position: relative;
  height: 1px;
  background-color: var(--border);
  width: calc(100% - 40px);
  margin: 24px auto 12px auto;
}

.weight-thread-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--accent-gold);
  width: 25%;
}

.weight-thread-ring {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-gold);
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(229, 169, 59, 0.2);
  z-index: 5;
}

.weight-thread-points {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.weight-point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: var(--border);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.weight-point::after {
  content: "";
  position: absolute;
  inset: -20px;
  cursor: pointer;
}

.weight-point.active {
  background-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(229, 169, 59, 0.15);
}

/* Set absolute left positions based on percentage values for thread points */
.weight-point[data-percent="0"] {
  left: 0%;
}
.weight-point[data-percent="25"] {
  left: 25%;
}
.weight-point[data-percent="50"] {
  left: 50%;
}
.weight-point[data-percent="75"] {
  left: 75%;
}
.weight-point[data-percent="100"] {
  left: 100%;
}

.point-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.weight-point.active .point-label {
  color: var(--primary);
  font-weight: 600;
}

.weight-point:hover:not(.active) {
  background-color: var(--primary);
}

/* Recommended Diaper Info */
.atelier-rec-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  z-index: 2;
  position: relative;
}

.atelier-rec-info {
  display: flex;
  flex-direction: column;
}

.atelier-rec-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.atelier-rec-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.5px;
}

.atelier-rec-size {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.atelier-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.atelier-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--accent-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.atelier-cta:hover::after {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.atelier-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Sensation Profile Metrics */
.atelier-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  position: relative;
}

.atelier-metrics-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.atelier-metric-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atelier-metric-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-body);
}

.atelier-metric-label {
  color: var(--primary);
  font-weight: 500;
}

.atelier-metric-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
}

.atelier-metric-track {
  height: 2px;
  background-color: rgba(52, 73, 102, 0.08);
  position: relative;
  overflow: hidden;
}

.atelier-metric-bar {
  height: 100%;
  background-color: var(--accent-gold);
}

/* Reassurance row */
.atelier-reassurance {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.reassurance-icon {
  font-size: 14px;
  color: var(--accent-gold);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  padding: 16px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.btn-outline-pill:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.03) translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(99, 80, 80, 0.12);
}

.btn-outline-pill:active {
  transform: scale(0.98) translateY(0);
}

/* ==========================================================================
   4. Editorial Stacked Scroll Section â€” BabyCare+ Plan

   CARD LAYOUT (desktop):
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Cards 1-4: width=25vw each, NO gap, NO side margin.
   left: 0 / 25vw / 50vw / 75vw â†’ 4Ã—25 = 100vw, full viewport edge-to-edge.
   height: 78vh.  top: 11vh = (100vh - 78vh)/2 â†’ perfectly centred.
   GSAP: y starts at +VH (below stage), animates to 0.

   Panel 5 (featured image):
   right: 0, width: 52%, height: 100vh, no border-radius.
   GSAP: x starts at -(VW*0.52), slides to x=0 (flush right edge).

   Phase 3 shift: stackPanels moves x: 0 â†’ VW*0.52
   Panel 5 moves x: -(VW*0.52) â†’ 0
   Both travel the same distance in the same direction = one composition.

   Left content: left:0, width:48%, overlays with solid bg on final state.
   ========================================================================== */

/* â”€â”€ Outer section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stack-section {
  position: relative;
  z-index: 12;
  background-color: var(--bg);
}

/* â”€â”€ Pinned stage â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* overflow:hidden is the clipping mask for rising cards                        */
.stack-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
}

/* â”€â”€ Panel container â€” cards 1-4 only â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Shifts RIGHT in Phase 3. Panel 5 and left-content are siblings, NOT inside. */
.stack-panels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* â”€â”€ Base card (1-4) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 25vw Ã— 4 = 100vw â€” perfectly edge-to-edge, no padding, no gap.              */
/* top: 11vh = (100vh-78vh)/2 â†’ centred vertically.                            */
/* Thin gap between cards via a 1px right border for editorial separation.      */
.stack-panel {
  position: absolute;
  top: 11vh;
  width: 25vw;
  height: 78vh;
  overflow: hidden;
  border-radius: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  /* 1px right border creates a hairline gap between cards â€” editorial feel */
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.15);
}

/* Card X positions â€” edge-to-edge, no margin, no gap */
.sp-1 {
  left: 0;
  z-index: 4;
}

.sp-2 {
  left: 25vw;
  z-index: 3;
}

.sp-3 {
  left: 50vw;
  z-index: 2;
}

.sp-4 {
  left: 75vw;
  z-index: 1;
}

/* â”€â”€ Panel 5 â€” dominant featured image â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Sibling of .stack-panels inside .stack-stage.                                */
/* right:0 â†’ x=0 in GSAP = flush right viewport edge.                          */
/* GSAP x-start = -(VW*0.52) â†’ hidden off-screen left; slides right to x=0.    */
.sp-5 {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 52%;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
  z-index: 8;
  box-shadow: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* â”€â”€ Image fill â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stack-panel-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stack-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* â”€â”€ Left editorial content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Absolute, left:0, width:48%, full height. z-index 20 > Panel 5 (z-index 8). */
/* Solid bg hides anything behind it as it slides in from left.                 */
/* GSAP: opacity 0â†’1, x -50pxâ†’0                                                */
.stack-left-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0 52px 0 60px;
  box-sizing: border-box;
  background-color: var(--bg);
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.stack-left-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 460px;
  width: 100%;
}

.stack-main-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0;
}

.stack-main-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 400px;
  margin: 0;
}

.stack-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
}

.stack-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.stack-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.stack-perk-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-perk-icon svg {
  width: 100%;
  height: 100%;
}

.stack-perk-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.88vw, 0.88rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.1px;
  line-height: 1.3;
}

.stack-plan-cta {
  align-self: flex-start;
  margin-top: 4px;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* â”€â”€ Mobile â€” static layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ==========================================================================
   5. Category Navigation Pinned Scroll Section (Diaper Showcase)
   ========================================================================== */

.catnav-section {
  position: relative;
  z-index: 14;
  background-color: var(--bg);
  overflow: hidden;
}

/* Desktop layout stage - full viewport height grid */
.catnav-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg);
  display: grid;
  grid-template-columns: 38% 62%;
}

/* LEFT SIDE: Vertical Category list with interactive progress */
.catnav-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 clamp(40px, 6vw, 100px);
  z-index: 10;
  background-color: var(--bg);
  border-right: 1px solid var(--border);
}

.catnav-nav-header {
  margin-bottom: clamp(30px, 4vh, 60px);
}

.catnav-section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.catnav-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0;
}

.catnav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Button tab item styling */
.catnav-item {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  color: var(--primary);
  opacity: 0.3;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
  outline: none;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: fit-content;
}

/* active tab state - highlight title */
.catnav-item.active {
  opacity: 1;
}

.catnav-item:not(.active):hover {
  opacity: 0.65;
}

.catnav-item-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.catnav-item-label {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary);
}

/* Custom progress track underneath the label */
.catnav-item-progress {
  width: 120px;
  height: 2px;
  background-color: var(--border);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.catnav-item-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  transform-origin: left center;
  transition: none;
}

.catnav-item.active .catnav-item-progress-bar {
  background-color: var(--accent-gold);
}

/* RIGHT SIDE: Immersive Viewport with overlapping floating details */
.catnav-right {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.catnav-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  display: block;
}

.catnav-panel.active {
  opacity: 1;
  pointer-events: auto;
}

/* Media layout containing baby image */
.catnav-panel-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.catnav-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
  transform: scale(1.1);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catnav-panel.active .catnav-img {
  transform: scale(1);
}

/* Cinematic overlay blending the frame elements */
.catnav-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 245, 240, 0.05) 0%,
    rgba(247, 245, 240, 0.3) 50%,
    rgba(247, 245, 240, 0.8) 100%
  );
  pointer-events: none;
}

/* Floating Content Card - Luxury layout styling */
.catnav-panel-content {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  left: clamp(40px, 6vw, 80px);
  right: clamp(40px, 6vw, 80px);
  max-width: 460px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 219, 208, 0.8);
  border-radius: 20px;
  padding: clamp(30px, 4vh, 45px) clamp(30px, 4vw, 45px);
  box-shadow:
    0 15px 35px rgba(52, 73, 102, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  will-change: opacity, transform;
}

.catnav-panel.active .catnav-panel-content {
  opacity: 1;
  transform: translateY(0);
}

.catnav-panel-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.catnav-panel-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.catnav-panel-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Premium pill action button */
.catnav-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: fit-content;
  margin-top: 4px;
  box-shadow: 0 4px 10px rgba(52, 73, 102, 0.15);
}

.catnav-panel-cta::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.catnav-panel-cta:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 169, 59, 0.25);
}

.catnav-panel-cta:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   6. Core Collection Product Section — Premium Carousel
   ========================================================================== */

/* ── Outer Section ─────────────────────────────────────────────────────────── */
.core-collection-section {
  position: relative;
  z-index: 13;
  background-color: #faf9f7;
  padding: 120px 0 100px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Header Row (title + nav arrows) ───────────────────────────────────────── */
.cc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.core-collection-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  text-align: left;
}

/* ── Carousel Navigation Buttons ───────────────────────────────────────────── */
.cc-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 6px;
}

.cc-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background-color: var(--white);
  color: var(--primary);
  font-size: var(--fs-ui);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  will-change: transform;
}

.cc-nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(99, 80, 80, 0.18);
}

.cc-nav-btn:active {
  transform: scale(0.95);
}

.cc-nav-btn.cc-disabled {
  opacity: 0.32;
  pointer-events: none;
}

/* ── Carousel Viewport ─────────────────────────────────────────────────────── */
/* Contains the scrollable track. Overflow hidden clips cards that scroll off.
   cursor: grab only on desktop; touch devices inherit default. */
.cc-viewport {
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  /* Prevent card hover transforms from clipping at viewport edge */
  padding-bottom: 2px;
}

.cc-viewport:active {
  cursor: grabbing;
}

/* ── Carousel Track ────────────────────────────────────────────────────────── */
/* align-items: stretch ensures all cards have identical rendered height.
   will-change + backface-visibility give GPU compositing on the GSAP x-translate. */
.cc-track {
  display: flex;
  gap: 28px;
  align-items: stretch; /* all cards same height — critical for hover maths */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
/* -- Card container ----------------------------------------------------------- */
.collection-card {
  /* Viewport-anchored flex-basis. Uses 100vw, not 100% of the track,
     which changes with GSAP x-translate causing layout chaos at 1920px+.
     Formula: (viewport - 2x60px padding - 2x28px gap) / 3 = (100vw - 176px) / 3
     clamp prevents runaway card sizes on ultra-wide monitors. */
  flex: 0 0 clamp(240px, calc((100vw - 176px) / 3), 520px);
  min-width: 0;

  /* Positioning context for all absolute children */
  position: relative;
  /* Viewport-proportional height keeps aspect ratio across all display widths */
  height: clamp(420px, 34vw, 560px);
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--white);
  box-sizing: border-box;

  /* GPU compositing. isolation: isolate gives each card its own stacking
     context, preventing z-index interference between cards at 2560px+. */
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  isolation: isolate;

  /* Entry animation start state - GSAP ScrollTrigger animates to final state */
  opacity: 0;
  transform: translateY(50px);

  box-shadow: 0 2px 16px rgba(99, 80, 80, 0.07);
  transition: box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* -- Card Link Wrapper -------------------------------------------------------- */
/* Absolute overlay covering the entire card, positioning content inside it */
.collection-card-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; /* Sits below collection-cta-wrap (10) but covers background */
  outline: none;
}

/* -- Image Wrapper ------------------------------------------------------------ */
/* Starts at 58% card height. GSAP animates to 100% on hover.
   translateZ(0) forces a GPU layer, preventing subpixel reflow at large sizes. */
.collection-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58%; /* GSAP target on hover: 100% */
  overflow: hidden;
  background-color: #f5f4f2;
  z-index: 1;
  will-change: height;
  transform: translateZ(0);
}

/* -- Product image ------------------------------------------------------------ */
.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  transform: scale(1.06); /* slight zoom-out on hover via GSAP */
}

/* -- Info Block --------------------------------------------------------------- */
/* Starts below image (top: 58%). GSAP fades to opacity 0 on hover.
   pointer-events: none by default prevents the invisible overlap from blocking
   the CTA button clicks on large screens (1920px+, 2560px+). */
.collection-info {
  position: absolute;
  top: 58%; /* matches image-wrap initial height */
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 22px 24px; /* 24px bottom gives price clear space from card edge */
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-sizing: border-box;
  z-index: 2;
  will-change: opacity;
  pointer-events: none; /* avoids blocking CTA - managed by GSAP + CSS :not(:hover) */
}

/* Re-enable pointer events on info content when card is not hovered */
.collection-card:not(:hover) .collection-info {
  pointer-events: auto;
}

/* â”€â”€ OEKO-TEX Badge (in info flow) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.collection-badge {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.oeko-badge-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(23, 166, 151, 0.22));
}

/* â”€â”€ Rating â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€*/
.collection-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.stars {
  font-size: 12px;
  color: #17a697;
  letter-spacing: -1px;
  font-weight: 600;
}

.review-count {
  font-family: var(--font-family);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* â”€â”€ Product Title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.collection-product-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin: 0 0 6px 0;
  flex-shrink: 0;
  /* Ellipsis after 2 lines — prevents long titles from pushing price off-card */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* â”€â”€ Description â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.collection-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 8px 0;
  font-weight: 300;
  flex-shrink: 0;
  /* Ellipsis after 2 lines — prevents long descriptions from collapsing the price row */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* â”€â”€ Price â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.collection-price {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  margin-top: auto;
  flex-shrink: 0;
}

/* -- CTA Reveal Wrapper ------------------------------------------------------- */
/* Pinned to the bottom of the card at all times.
   Default: invisible (opacity:0, shifted down 20px). GSAP reveals on mouseenter.
   z-index 10 sits above image-wrap (1) and info (2). */
.collection-cta-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Default invisible state - GSAP controls opacity and y transform */
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  /* CSS fallback: pointer-events managed by JS GSAP timeline AND :hover */
  pointer-events: none;
}

/* Enable button clicks when card is hovered (CSS backup for GSAP onStart) */
.collection-card:hover .collection-cta-wrap {
  pointer-events: auto;
}

/* -- CTA Pill Button ---------------------------------------------------------- */
.collection-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(226, 222, 218, 0.7);
  border-radius: 50px;
  padding: 12px 26px;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  /* position:relative + z-index ensures button renders above the glass blur */
  position: relative;
  z-index: 1;
  /* Strong shadow gives the pill depth against the product image behind it */
  box-shadow:
    0 6px 24px rgba(99, 80, 80, 0.16),
    0 1px 4px rgba(99, 80, 80, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-cta-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 80, 80, 0.28);
  transform: translateY(-2px) scale(1.02);
}

.collection-cta-btn:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 4px 16px rgba(99, 80, 80, 0.2);
}

/* â”€â”€ Dot indicators â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.cc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background-color: var(--border);
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-dot.active {
  background-color: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* â”€â”€ Tablet: 2 cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Mobile: 1 card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ==========================================================================
   7. Philosophy / Storytelling Section — Full-width Cinematic
   ==========================================================================
   Architecture:
     .philosophy-section     → full-width, fixed min-height, position:relative
     .philosophy-bg          → abs fill, overflow:hidden (clipping context)
     .philosophy-bg-img      → 100%×110% (extra height for parallax headroom)
     .philosophy-overlay     → abs fill, dark gradient for readability
     .philosophy-content     → abs or relative, left-aligned text panel
   ========================================================================== */

/* ── Outer Section ──────────────────────────────────────────────────────── */
.philosophy-section {
  position: relative;
  width: 100%;
  min-height: 92vh;
  /* cinematic tall viewport */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* clips parallax overshoot */
  background-color: #1a1410;
  /* fallback while image loads */
  z-index: 14;
}

/* ── Background Image Container ────────────────────────────────────────── */
/* Extra height lets GSAP translate it without revealing empty space */
.philosophy-bg {
  position: absolute;
  inset: -10% 0;
  /* 10% extra on top & bottom for parallax travel */
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.philosophy-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* slight upward bias — shows more subject */
  display: block;
  will-change: transform;
  /* Scale up slightly so GSAP can reverse-scale on entrance */
  transform: scale(1.08);
  transform-origin: center center;
}

/* ── Overlay — dark gradient left-weighted ──────────────────────────────── */
.philosophy-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Stronger on the left (text side), fades right to show image */
  background: linear-gradient(
    100deg,
    rgba(10, 7, 5, 0.78) 0%,
    rgba(10, 7, 5, 0.55) 45%,
    rgba(10, 7, 5, 0.2) 80%,
    rgba(10, 7, 5, 0.08) 100%
  );
  /* Initial fade state — GSAP animates opacity in */
  opacity: 0;
  will-change: opacity;
}

/* ── Content Panel ──────────────────────────────────────────────────────── */
.philosophy-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  /* constrain text column */
  padding: 120px 64px 120px 8%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.philosophy-panel {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  will-change: opacity, transform;
}

/* Progressive enhancement: hide secondary panels if JS is disabled */
.philosophy-panel:not(:first-child) {
  opacity: 0;
  pointer-events: none;
}

/* ── Eyebrow label ──────────────────────────────────────────────────────── */
.philosophy-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  /* GSAP entrance start state */
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
}

.philosophy-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

/* Thin horizontal rule below eyebrow */
.philosophy-divider {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}

/* ── Main Text Block ────────────────────────────────────────────────────── */
.philosophy-body {
  /* GSAP entrance start state */
  opacity: 0;
  transform: translateY(56px);
  will-change: opacity, transform;
}

.philosophy-text {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  letter-spacing: -0.3px;
  margin: 0;
}

/* "Born Creative." bold first line */
.philosophy-bold {
  font-weight: 600;
  font-family: var(--font-heading);
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -0.5px;
}

/* ── CTA Link ────────────────────────────────────────────────────────────── */
.philosophy-cta-wrap {
  margin-top: 48px;
  /* GSAP entrance start state */
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.philosophy-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Animated underline */
.philosophy-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scaleX(1);
  transform-origin: left center;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.3s ease;
}

.philosophy-cta:hover {
  color: #fff;
}

.philosophy-cta:hover::after {
  background-color: #fff;
  transform: scaleX(1.04);
  /* subtle width pulse */
}

/* =====================================================================
   RESPONSIVE — Philosophy Section
   ===================================================================== */

/* Filters panel mobile overlay backdrop */
.filters-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 45, 64, 0.35);
  z-index: 9999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.filters-overlay.is-active {
  display: block;
}

/* Brand Accent color for ratings */
.stars {
  color: var(--accent-gold);
}

/* Selected size button subtle blue wash */
.size-btn[data-active="true"] {
  border-color: var(--accent-blue) !important;
  background-color: rgba(169, 194, 236, 0.08) !important;
  color: var(--primary-dark) !important;
}

/* =============================================================================
   E-COMMERCE CART PAGE STYLES
   ============================================================================= */

.cart-page {
  background-color: var(--bg);
  min-height: 60vh;
  padding-bottom: 120px;
}

.cart-hero {
  background-color: var(--bg-secondary);
  padding: 60px 0 40px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.cart-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.cart-hero-subtitle {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--text-light);
  margin-top: 8px;
}

.cart-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.cart-page .breadcrumb-link {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.cart-page .breadcrumb-link:hover {
  color: var(--primary);
}

.cart-page .breadcrumb-sep {
  color: var(--border);
}

.cart-page .breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* Left side content */
.cart-main-content {
  min-width: 0; /* prevent layout break */
}

.cart-items-list {
  display: flex;
  flex-direction: column;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 120px 1fr 150px 100px;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  max-height: 200px;
  opacity: 1;
  transform: translateX(0);
  transition:
    max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease,
    border-color 0.35s ease;
}

.cart-item-row.is-removing {
  opacity: 0;
  transform: translateX(-20px);
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-bottom-color: transparent !important;
  overflow: hidden;
}

.cart-item-img-wrap {
  width: 120px;
  height: 120px;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-item-img-wrap:hover {
  transform: scale(1.02);
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.3;
}

.cart-item-size {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
}

.btn-item-remove {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  width: fit-content;
  transition: var(--transition-fast);
}

.btn-item-remove i {
  font-size: 13px;
}

.btn-item-remove:hover {
  color: #a34e4e;
}

.cart-item-quantity-wrapper {
  display: flex;
  justify-content: center;
}

/* Quantity Selector Override */
.cart-item-quantity-wrapper .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
  background: var(--white);
}

.cart-item-quantity-wrapper .qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-ui);
  color: var(--primary);
  background: transparent;
  transition: var(--transition-fast);
}

.cart-item-quantity-wrapper .qty-btn:hover {
  background-color: var(--bg-secondary);
}

.cart-item-quantity-wrapper .qty-input {
  width: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  border: none;
  background: transparent;
  pointer-events: none;
}

.cart-item-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cart-item-price {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.cart-item-price-original {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  text-decoration: line-through;
}

/* Right side content: Summary Sidebar */
.summary-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 140px; /* leaves room for sticky header */
  box-shadow: var(--shadow);
}

.summary-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
}

.summary-value {
  font-family: var(--font-ui);
  font-size: 15.5px;
  color: var(--primary);
  font-weight: 500;
}

.discount-row .summary-label,
.discount-row .summary-value {
  color: #4c7c59;
  font-weight: 500;
}

.summary-divider {
  height: 1px;
  background-color: var(--border);
  margin: 8px 0;
}

.total-row .summary-label {
  font-size: var(--fs-ui);
  color: var(--primary);
  font-weight: 600;
}

.total-row .summary-value {
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: 700;
}

/* Coupon section */
.coupon-section {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.coupon-field {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 12.5px;
  background-color: var(--bg);
  color: var(--text);
  transition: var(--transition-fast);
}

.coupon-input:focus {
  border-color: var(--primary-light);
  background-color: var(--white);
}

.btn-coupon-apply {
  padding: 10px 18px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px;
  transition: var(--transition-fast);
}

.btn-coupon-apply:hover {
  background-color: var(--primary-dark);
}

.coupon-feedback {
  font-family: var(--font-body);
  font-size: 11.5px;
  margin-top: 6px;
  padding-left: 8px;
}

.coupon-feedback.success {
  color: #4c7c59;
}

.coupon-feedback.error {
  color: #a34e4e;
}

.btn-checkout-big {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-top: 24px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow);
}

.btn-checkout-big:hover:not(:disabled) {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-checkout-big:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.secure-checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 16px;
}

.secure-checkout-note i {
  font-size: 13px;
}

/* Empty Cart State */
.cart-empty-state {
  text-align: center;
  padding: 80px 24px;
  max-width: 540px;
  margin: 40px auto 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.empty-icon-wrap {
  width: 72px;
  height: 72px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--primary-light);
  font-size: clamp(24px, 2.5vw, 28px);
}

.empty-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.empty-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.btn-continue-shopping:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   BLOG & JOURNAL PAGES
   ========================================================================== */

/* 1. Blog Hero Section */
.blog-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1544816155-12df9643f363?w=1800&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 45, 66, 0.35) 0%,
    rgba(28, 45, 66, 0.7) 100%
  );
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 60px;
}

.blog-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--bg);
}

.blog-hero-subtext {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0.95;
  color: var(--bg);
}

/* 3. Featured Story Section */
.blog-featured-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.blog-featured-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.blog-featured-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 520px;
  width: 100%;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-featured-img-wrap:hover .blog-featured-img {
  transform: scale(1.04);
}

.blog-featured-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(43, 60, 80, 0.05) 0%,
    rgba(43, 60, 80, 0.25) 100%
  );
  pointer-events: none;
}

.blog-featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-featured-content {
  background-color: var(--bg-secondary);
  padding: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 2;
  margin-left: -120px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-post-tag {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.blog-post-dot {
  color: var(--text-light);
  font-size: 8px;
}

.blog-post-read {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
}

.blog-featured-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.blog-featured-title a {
  transition: var(--transition-fast);
}

.blog-featured-title a:hover {
  color: var(--accent-gold);
}

.blog-featured-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 32px;
}

.blog-featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.author-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}

.author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--primary-dark);
}

.author-role {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-text-arrow i {
  transition: transform 0.3s ease;
}

.btn-text-arrow:hover {
  color: var(--primary-dark);
}

.btn-text-arrow:hover i {
  transform: translateX(4px);
}

/* 4. Creative Blog Grid Section */
.blog-grid-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.blog-grid-header {
  text-align: center;
  margin-bottom: 70px;
}

.blog-grid-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-body-lg);
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.blog-grid-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--primary-dark);
}

.blog-creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card General */
.blog-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-link-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

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

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  background-color: var(--bg-secondary);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 60, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-btn-pill {
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: var(--transition);
}

.blog-card:hover .blog-card-btn-pill {
  transform: translateY(0);
}

.blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.blog-card-tag {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.blog-card-dot {
  color: var(--text-light);
  font-size: 6px;
}

.blog-card-read {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--primary-dark);
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.6;
}

/* Mixed Grid Variants - Dynamic Masonry Rhythm */

/* By default, all cards are 1 column */
.blog-card {
  grid-column: span 1;
}

/* Typographic Quote Card (for posts with no image) */
.card-typographic {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  justify-content: center;
}

.card-typographic .blog-card-content {
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 44px;
}

.card-typographic .quote-icon {
  font-size: 40px;
  color: var(--accent-gold);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1;
}

.card-typographic .quote-text {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--primary-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.card-typographic .quote-author-wrap {
  display: flex;
  flex-direction: column;
}

.card-typographic .quote-author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--primary);
}

.card-typographic .quote-author-role {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
}

.card-typographic .quote-card-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.6;
  letter-spacing: 1px;
}

/* Every 5th card: automatically spans 2 columns and renders horizontally on desktop */
@media (min-width: 1025px) {
  .blog-creative-grid .blog-card:nth-child(5n + 4):not(.card-typographic) {
    grid-column: span 2;
  }

  .blog-creative-grid
    .blog-card:nth-child(5n + 4):not(.card-typographic)
    .blog-card-link-wrapper {
    flex-direction: row;
  }

  .blog-creative-grid
    .blog-card:nth-child(5n + 4):not(.card-typographic)
    .blog-card-img-wrap {
    width: 48%;
    aspect-ratio: auto;
    height: 100%;
  }

  .blog-creative-grid
    .blog-card:nth-child(5n + 4):not(.card-typographic)
    .blog-card-content {
    width: 52%;
    justify-content: center;
    padding: 44px;
  }
}

/* 5. Parent Tips / Journal Strip Section */
.blog-tips-strip-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.blog-tips-strip-header {
  text-align: center;
  margin-bottom: 50px;
}

.strip-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-body-lg);
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.strip-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
}

.blog-tips-marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.blog-tips-track {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  padding: 10px 30px 10px 0;
  will-change: transform;
  animation: tipsMarqueeAnim 35s linear infinite;
}

.blog-tips-marquee:hover .blog-tips-track {
  animation-play-state: paused;
}

@keyframes tipsMarqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-width: 360px;
  max-width: 360px;
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

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

.tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tip-card-content {
  display: flex;
  flex-direction: column;
}

.tip-card-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.tip-card-desc {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  line-height: 1.5;
}

/* 6. Blog Newsletter Section */
.blog-newsletter-section {
  position: relative;
  padding: 130px 0;
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.blog-newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0.15;
}

.blog-newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(28, 45, 66, 0.3) 0%,
    rgba(28, 45, 66, 0.85) 100%
  );
}

.blog-newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.newsletter-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: inline-block;
}

.blog-newsletter-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--bg);
}

.blog-newsletter-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.blog-newsletter-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
}

.form-input-wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.form-input-wrap:focus-within {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-email-input {
  flex-grow: 1;
  border: none;
  background: none;
  outline: none;
  padding: 0 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  width: 100%;
}

.newsletter-email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form .btn-pill-white {
  padding: 12px 28px;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.blog-newsletter-form .btn-pill-white:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.newsletter-disclaimer {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   BLOG DETAILS PAGE
   ========================================================================== */

/* 1. Article Cinematic Hero */
.details-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.details-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1519689680058-324335c77eba?w=1800&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.details-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 45, 66, 0.25) 0%,
    rgba(28, 45, 66, 0.75) 100%
  );
  z-index: 1;
}

.details-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.details-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.details-category-badge {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.details-meta-dot {
  color: var(--bg);
  opacity: 0.7;
}

.details-read-time {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--bg);
  opacity: 0.9;
}

.details-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}

.details-hero-subtitle {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  font-weight: 300;
  max-width: 750px;
  color: var(--bg);
  opacity: 0.95;
}

.active-crumb {
  color: var(--primary);
  font-weight: 500;
}

/* 3. Article Content Layout */
.details-article-section {
  padding: 90px 0;
  background-color: var(--bg);
}

.details-article-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
  align-items: start;
}

/* Sticky Meta Sidebar */
.details-meta-sidebar {
  height: 100%;
}

.sticky-meta-wrap {
  position: sticky;
  top: 140px;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.author-profile {
  margin-bottom: 40px;
}

.author-avatar-container {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-sidebar-name {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.author-sidebar-role {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.author-sidebar-role-val {
  display: block;
}

.author-sidebar-bio {
  font-family: var(--font-ui);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.5;
}

.article-info-list {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-val {
  font-family: var(--font-ui);
  font-size: var(--fs-body-sm);
  color: var(--primary-dark);
  font-weight: 600;
}

.article-share-block {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.share-title {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 16px;
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  background-color: var(--white);
}

.share-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Reading Flow Content */
.details-reading-content {
  max-width: 800px;
}

.details-reading-content p {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
  font-weight: 300;
}

.details-reading-content p.article-lead {
  font-size: clamp(1.15rem, 0.4vw + 1.1rem, 1.45rem);
  line-height: 1.75;
  color: var(--primary-dark);
}

/* Dropcap */
.dropcap {
  float: left;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.8;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 0px;
  color: var(--accent-gold);
  font-weight: 500;
}

.details-reading-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-top: 50px;
  margin-bottom: 20px;
}

.details-reading-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  color: var(--primary-dark);
  margin-top: 36px;
  margin-bottom: 16px;
}

/* Pullquote */
.article-pullquote {
  margin: 48px 0;
  padding: 36px 40px;
  border-left: 2px solid var(--accent-gold);
  background-color: var(--bg-secondary);
  border-radius: 0 20px 20px 0;
  position: relative;
}

.quote-design-icon {
  font-size: 36px;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 12px;
  line-height: 1;
}

.pullquote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 0.5vw + 1.1rem, 1.6rem) !important;
  line-height: 1.6 !important;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 16px !important;
}

.pullquote-author {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Split Image/Text block inside article */
.content-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 48px 0;
  align-items: center;
}

.split-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text h3 {
  margin-top: 0;
}

.article-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.article-bullets li {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}

.article-bullets li::before {
  content: "•";
  color: var(--accent-gold);
  font-size: 20px;
  position: absolute;
  left: 4px;
  top: -2px;
}

/* Highlight Box */
.parenting-highlight-box {
  background-color: var(--bg-secondary);
  padding: 36px;
  border-radius: 20px;
  margin: 48px 0;
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--shadow);
}

.parenting-highlight-box .box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.parenting-highlight-box .box-header i {
  font-size: 24px;
  color: var(--accent-gold);
}

.parenting-highlight-box h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 600;
}

.parenting-highlight-box .box-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* Numbered lists */
.article-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 48px;
  padding-left: 24px;
}

.article-numbered-list li {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-light);
}

.article-numbered-list li strong {
  color: var(--primary-dark);
}

/* Immersive figure image */
.article-immersive-figure {
  margin: 56px 0;
}

.figure-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow);
}

.figure-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure-caption {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* 4. Related Articles Grid */
.details-related-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.related-header {
  margin-bottom: 60px;
  text-align: center;
}

.related-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-body-lg);
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.related-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.related-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.related-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
}

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

.related-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.related-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
}

.related-content {
  padding: 36px;
}

.related-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  color: var(--primary-dark);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.related-card:hover .related-card-title {
  color: var(--primary);
}

.related-card-excerpt {
  font-family: var(--font-ui);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.related-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.related-read-more i {
  transition: transform 0.3s ease;
}

.related-card:hover .related-read-more {
  color: var(--accent-gold);
}

.related-card:hover .related-read-more i {
  transform: translateX(4px);
}

/* Offset positioning on Desktop for rhythm */
@media (min-width: 1025px) {
  .offset-card-1 {
    transform: translateY(24px);
  }
  .offset-card-2 {
    transform: translateY(-24px);
  }
  .details-related-section {
    padding: 120px 0 140px;
  }
}

/* 5. Details Bottom CTA */
.details-bottom-cta {
  position: relative;
  padding: 120px 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1544816155-12df9643f363?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  will-change: transform;
}

.cta-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(52, 73, 102, 0.4) 0%,
    rgba(28, 45, 66, 0.85) 100%
  );
}

.cta-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.details-bottom-cta .cta-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--bg);
}

.details-bottom-cta .cta-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.95;
  font-weight: 300;
}

.details-bottom-cta .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.details-bottom-cta .btn-pill {
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  border: 1.5px solid var(--white);
  color: var(--white);
}

.details-bottom-cta .btn-pill-primary {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.details-bottom-cta .btn-pill-primary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.details-bottom-cta .btn-pill:not(.btn-pill-primary):hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =============================================================================
   9. FAQ PAGE STYLING
   ============================================================================= */
.faq-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.faq-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1544022613-e87ca75a784a?w=1800&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  will-change: transform;
}

.faq-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 45, 66, 0.4) 0%,
    rgba(28, 45, 66, 0.75) 100%
  );
  z-index: 1;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 60px;
}

.faq-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--bg);
}

.faq-hero-subtext {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto;
  opacity: 0.95;
  color: var(--bg);
}

/* FAQ Interactive Layout */
.faq-interactive-section {
  padding: 100px 0;
  background-color: var(--bg);
}

.faq-interactive-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 140px;
}

.faq-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.faq-category-item:hover {
  border-color: var(--accent-blue);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.faq-category-item.active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.faq-category-num {
  font-family: var(--font-heading);
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--accent-gold);
  opacity: 0.8;
}

.faq-category-item.active .faq-category-num {
  opacity: 1;
}

.faq-category-name {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 500;
}

/* FAQ Card Enhancements on FAQ page */
.faq-page .faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-page .faq-item:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-hover);
}

.faq-page .faq-item.is-open {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.faq-page .faq-trigger {
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}

.faq-page .faq-item.is-open .faq-trigger {
  border-color: var(--border);
}

.faq-page .faq-question {
  font-size: var(--fs-body-lg);
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--primary-dark);
}

.faq-page .faq-item.is-open .faq-question {
  color: var(--primary-dark);
  font-weight: 600;
}

.faq-page .faq-trigger .faq-icon-box {
  color: var(--accent-gold);
  font-size: 22px;
}

.faq-page .faq-item.is-open .faq-trigger .faq-icon-box {
  transform: rotate(45deg);
  color: var(--primary-light);
}

.faq-page .faq-panel-inner {
  padding: 24px 0 30px 0;
}

/* 4. Asymmetrical Comfort Promise Section */
.faq-promise-section {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.promise-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

.promise-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 40px;
}

.promise-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promise-feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.promise-feature-item:hover .feature-icon-circle {
  background-color: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: scale(1.08) rotate(5deg);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text .feature-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary-dark);
}

.feature-text .feature-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.5;
}

.promise-showcase {
  position: relative;
  padding-bottom: 80px;
}

.promise-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1.15;
  box-shadow: 0 20px 45px rgba(45, 62, 82, 0.08);
}

.promise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.promise-img-wrap:hover .promise-img {
  transform: scale(1.04);
}

.promise-floating-card {
  position: absolute;
  bottom: 0;
  right: -40px;
  background-color: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(45, 62, 82, 0.12);
  max-width: 380px;
  border: 1px solid var(--border);
  z-index: 2;
}

.floating-card-tag {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.floating-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.floating-card-text {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.floating-card-author {
  font-family: var(--font-ui);
  font-size: var(--fs-meta);
  color: var(--primary-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 5. Support CTA Section */
.faq-support-cta {
  padding: 120px 0;
  background-color: var(--bg);
}

.support-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #152436 100%);
  padding: 90px 60px;
  border-radius: 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(28, 45, 66, 0.08);
}

.support-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 10% 20%,
    rgba(229, 169, 59, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.support-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-block;
}

.support-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.support-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--bg);
  opacity: 0.9;
  line-height: 1.65;
}

.support-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.support-cta-buttons .btn-pill-white {
  padding: 16px 36px;
  background-color: var(--white);
  color: var(--primary-dark);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.support-cta-buttons .btn-pill-white:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2.5px);
}

.support-cta-buttons .btn-pill-outline-white {
  padding: 16px 36px;
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.support-cta-buttons .btn-pill-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2.5px);
}

/* =============================================================================
   10. DIAPER GUIDE PAGE STYLING
   ============================================================================= */
.guide-hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.guide-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1544816155-12df9643f363?w=1800&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  will-change: transform;
}

.guide-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 45, 66, 0.4) 0%,
    rgba(28, 45, 66, 0.78) 100%
  );
  z-index: 1;
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 60px;
}

.guide-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
}

.guide-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--bg);
}

.guide-hero-subtext {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0.95;
  color: var(--bg);
}

.guide-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--bg);
}

.guide-hero-scroll .scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--bg);
  border-radius: 20px;
  position: relative;
}

.guide-hero-scroll .scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

/* Pinned Timeline Journey */
.guide-timeline-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-color: var(--bg);
  overflow: hidden;
}

.guide-timeline-container {
  height: 100%;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.guide-timeline-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 36px;
}

.guide-timeline-nav .timeline-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--border);
}

.guide-timeline-nav .timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background-color: var(--accent-gold);
  transition: height 0.1s linear;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-step {
  position: relative;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.65;
  transition: var(--transition);
}

.timeline-step.active {
  color: var(--primary-dark);
  opacity: 1;
}

.timeline-step .step-dot {
  position: absolute;
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg);
  border: 2px solid var(--border);
  transition: var(--transition);
  z-index: 2;
}

.timeline-step.active .step-dot {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.4);
}

.timeline-step .step-title {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
  transform-origin: left center;
}

.timeline-step.active .step-title {
  transform: scale(1.04);
}

.guide-timeline-panels {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
}

.timeline-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.6s ease;
}

.timeline-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.timeline-panel .panel-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 45px rgba(45, 62, 82, 0.08);
  position: relative;
}

.timeline-panel .panel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-panel.active .panel-img-wrap img {
  transform: scale(1);
}

.timeline-panel .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(28, 45, 66, 0.05) 0%,
    rgba(28, 45, 66, 0.2) 100%
  );
}

.timeline-panel .panel-info {
  display: flex;
  flex-direction: column;
}

.timeline-panel .panel-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.timeline-panel .panel-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.timeline-panel .panel-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.65;
}

/* Staggered entry transitions inside active panels */
.timeline-panel .panel-info > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-panel.active .panel-info > * {
  opacity: 1;
  transform: translateY(0);
}

.timeline-panel.active .panel-info .panel-eyebrow {
  transition-delay: 0.1s;
}
.timeline-panel.active .panel-info .panel-title {
  transition-delay: 0.2s;
}
.timeline-panel.active .panel-info .panel-desc {
  transition-delay: 0.3s;
}

/* 3. Comfort Metrics Section */
.guide-metrics-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.metrics-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.metrics-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}

.metrics-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.25;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.metric-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.metric-icon {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 12px;
}

.metric-label {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.metric-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
  line-height: 1.5;
}

/* 4. Apple-Style Pinned Visual Story */
.visual-story-section {
  padding: 120px 0;
  background-color: var(--bg);
  position: relative;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}

.visual-story-sticky {
  position: sticky;
  top: 140px;
  height: 70vh;
  display: flex;
  align-items: center;
}

.sticky-media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 62, 82, 0.08);
}

.visual-story-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.8s ease;
}

.visual-story-image.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.visual-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-image .media-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(28, 45, 66, 0.85);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.visual-story-scrollable {
  display: flex;
  flex-direction: column;
}

.visual-story-block {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-story-block:first-child {
  padding-top: 140px;
}

.visual-story-block:last-child {
  padding-bottom: 140px;
}

.story-badge {
  font-family: var(--font-ui);
  font-size: var(--fs-meta);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.story-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 30px;
}

.story-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.story-specs span {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  color: var(--primary-light);
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* 5. Editorial Pediatrician Quote Block */
.guide-quote-section {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.quote-box {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.quote-box .quote-icon {
  font-size: 72px;
  color: var(--accent-gold);
  opacity: 0.12;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.pediatrician-quote {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  line-height: 1.65;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.quote-author .author-name {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 4px;
}

.quote-author .author-title {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text-light);
}

/* 6. Emotional Final CTA Section */
.guide-cta-section {
  padding: 120px 0;
  background-color: var(--bg);
}

.guide-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #152436 100%);
  padding: 95px 60px;
  border-radius: 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(28, 45, 66, 0.08);
}

.guide-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 10% 20%,
    rgba(229, 169, 59, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.cta-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-block;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--bg);
  opacity: 0.9;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-actions .btn-pill-white {
  padding: 16px 36px;
  background-color: var(--white);
  color: var(--primary-dark);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.cta-actions .btn-pill-white:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2.5px);
}

.cta-actions .btn-pill-outline-white {
  padding: 16px 36px;
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.cta-actions .btn-pill-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2.5px);
}

/* ==========================================================================
   THE JOURNAL — Premium Editorial Blog Carousel
   ========================================================================== */
.blog-carousel-section {
  position: relative;
  z-index: 13;
  background-color: #faf9f7; /* Cozy Glowing Ivory Milk tint */
  padding: 120px 0 100px;
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.blog-carousel-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: border-box;
}

/* Header layout */
.blog-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.blog-carousel-title-group {
  max-width: 600px;
}

.blog-carousel-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.blog-carousel-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.blog-carousel-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--text-light);
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

/* Nav arrows */
.blog-carousel-nav {
  display: flex;
  gap: 12px;
}

.blog-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 18px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(45, 62, 82, 0.02);
}

.blog-nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 62, 82, 0.08);
}

.blog-nav-btn:active {
  transform: translateY(0);
}

/* Viewport and Track */
.blog-carousel-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding: 16px 0 40px; /* Top/bottom padding allows card hover scale/shadow travel */
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.blog-carousel-viewport:active {
  cursor: grabbing;
}

.blog-carousel-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

/* Blog Cards */
.blog-carousel-card {
  position: relative;
  flex: 0 0 380px;
  height: 480px;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 62, 82, 0.02);
  border: 1.5px solid rgba(226, 222, 218, 0.5);
  transition:
    border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow, border-color;
  display: flex;
  flex-direction: column;
}

.blog-card-anchor {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.blog-card-media {
  position: relative;
  width: 100%;
  height: 58%;
  overflow: hidden;
  will-change: height;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: scale(1.06);
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 45, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  pointer-events: none;
}

.blog-card-read-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(226, 222, 218, 0.7);
  border-radius: 50px;
  padding: 12px 26px;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow:
    0 6px 24px rgba(99, 80, 80, 0.16),
    0 1px 4px rgba(99, 80, 80, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card-read-tag:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 80, 80, 0.28);
  transform: translateY(-2px) scale(1.02);
}

.blog-card-read-tag:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 4px 16px rgba(99, 80, 80, 0.2);
}

/* Card details flow */
.blog-card-details {
  position: absolute;
  top: 58%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 24px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-sizing: border-box;
  z-index: 2;
  will-change: opacity;
  pointer-events: none;
}

.blog-carousel-card:not(:hover) .blog-card-details {
  pointer-events: auto;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.blog-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.blog-card-dot {
  color: var(--text-light);
  font-size: 8px;
}

.blog-card-read {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
  /* limit title to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 16px 0;
  font-weight: 300;
  /* limit description to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(226, 222, 218, 0.4);
  padding-top: 16px;
}

.blog-card-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-card-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Card Hover Interactions */
.blog-carousel-card:hover {
  box-shadow: 0 20px 40px rgba(45, 62, 82, 0.08);
  border-color: rgba(226, 222, 218, 0.9);
}

.blog-carousel-card:hover .blog-card-title {
  color: var(--primary-light);
}

/* Dots styling */
.blog-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.blog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border: none;
}

.blog-dot.active {
  background-color: var(--primary);
  transform: scale(1.25);
  width: 24px;
  border-radius: 4px;
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .blog-carousel-section {
    padding: 80px 0 70px;
  }
  .blog-carousel-header {
    margin-bottom: 40px;
  }
  .blog-carousel-track {
    gap: 24px;
  }
  .blog-carousel-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .blog-carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .blog-carousel-nav {
    display: none; /* Hide navigation buttons on mobile, swipe is default */
  }
  .blog-carousel-card {
    flex: 0 0 280px;
  }
  .blog-card-details {
    padding: 20px 18px;
  }
}

/* Touch devices support - ensure CTA buttons are always visible on touchscreen devices */
@media (hover: none), (pointer: coarse) {
  .collection-cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* Dynamic Blogs Category Tabs & Search Bar styles */
.blog-categories-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 15px;
}
.blog-category-btn {
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-family: var(--font-body), "Roboto Slab", sans-serif;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  color: #475569;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.blog-category-btn:hover {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #f8fafc;
}
.blog-category-btn.active {
  background: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 41, 59, 0.15);
}

.blog-search-bar {
  max-width: 500px;
  margin: 0 auto 30px;
  padding: 0 15px;
  display: flex;
  position: relative;
}
.blog-search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  font-family: var(--font-body), "Roboto Slab", sans-serif;
  font-size: 0.9rem;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.blog-search-input:focus {
  border-color: #94a3b8;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.blog-search-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
}
.blog-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #f8fafc;
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto;
  border: 1px dashed #e2e8f0;
}
.blog-empty-icon {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 15px;
}
.blog-empty-title {
  font-family: var(--font-heading), "Lora", serif;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 8px;
}
.blog-empty-desc {
  font-family: var(--font-body), "Roboto Slab", sans-serif;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Premium SweetAlert2 overrides */
.swal2-premium-popup {
  background: var(--bg) !important;
  border-radius: 20px !important;
  font-family: var(--font-body) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border) !important;
  padding: 2.5rem 2rem !important;
  color: var(--text) !important;
}
.swal2-premium-popup .swal2-title {
  font-family: var(--font-heading) !important;
  color: var(--primary-dark) !important;
  font-style: oblique;
  font-weight: 600 !important;
  font-size: 1.6rem !important;
}
.swal2-premium-popup .swal2-html-container {
  font-family: var(--font-body) !important;
  color: var(--text-light) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}
.swal2-confirm-primary {
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  padding: 0.6rem 1.6rem !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: background 0.3s;
}
.swal2-confirm-primary:hover {
  background: var(--primary-dark) !important;
}
