/* =========================
   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);
}

/* ── Site Search Overlay ──────────────────────────────────────────────────── */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 10050;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}

.site-search.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 45, 66, 0.45);
  backdrop-filter: blur(4px);
}

.site-search-panel {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  padding: 22px 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-search.is-active .site-search-panel {
  transform: translateY(0);
}

.site-search-form {
  width: min(720px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.site-search-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.site-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text);
  padding: 6px 0;
}

.site-search-input::placeholder {
  color: var(--text-light);
}

.site-search-submit {
  border: none;
  background: var(--button);
  color: var(--button-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.site-search-submit:hover {
  background: var(--button-hover);
}

.site-search-close {
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.site-search-close:hover {
  color: var(--primary);
}

@media (max-width: 600px) {
  .site-search-submit {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .site-search-input {
    font-size: 1rem;
  }
}

.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 {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  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: linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
  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: linear-gradient(135deg, #ffffff 0%, var(--bg-secondary) 100%);
  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-bg-static {
  background-image: url("../../assets/images/ai-home-comfort.png.webp");
  background-position: center top;
}

.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-logo {
  width: clamp(110px, 12vw, 160px);
  height: auto;
  display: block;
  margin: 0 auto 26px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
}

.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);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-desc p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-read-more-btn {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
  margin-top: -4px;
}

.story-read-more-btn:hover {
  color: var(--primary-dark);
}

/* Expanded Card Layout */
.story-card.expanded {
  height: auto !important;
  min-height: auto !important;
}

.story-card.expanded .story-card-desc,
.story-card.expanded .story-card-desc p {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

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

/* Static vertical About story layout */
.about-story-stack {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.about-story-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.about-story-heading span,
.about-story-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-story-heading h2 {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-dark);
}

.about-story-list {
  display: grid;
  gap: 42px;
}

.about-story-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  min-height: 440px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(45, 62, 82, 0.06);
}

.about-story-panel.is-reversed {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.about-story-panel.is-reversed .about-story-media {
  order: 2;
}

.about-story-panel.is-reversed .about-story-copy {
  order: 1;
}

.about-story-media {
  position: relative;
  min-height: 360px;
  background-color: var(--bg-secondary);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-copy {
  padding: clamp(30px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-copy h3 {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.22;
  color: var(--primary-dark);
}

.about-story-body {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.about-story-body p {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.78;
  color: var(--text-light);
}

.about-story-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent-gold);
  background-color: var(--bg);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-style: italic;
  line-height: 1.55;
  color: var(--primary-dark);
}

/* 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;
}

.about-static-vision {
  border-left: 2px solid var(--accent-gold);
  padding-left: 22px;
  margin-top: 12px;
}

.about-static-vision span {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-meta);
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-static-vision p {
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-light);
}

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

.about-static-commitment-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 9vw, 144px) 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 231, 0.46)),
    var(--bg-secondary);
}

.about-commitment-container {
  position: relative;
  z-index: 2;
}

.about-commitment-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.about-commitment-orb-one {
  width: 380px;
  height: 380px;
  top: -190px;
  right: -110px;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.16), rgba(229, 169, 59, 0));
}

.about-commitment-orb-two {
  width: 460px;
  height: 460px;
  bottom: -260px;
  left: -180px;
  background: radial-gradient(circle, rgba(54, 79, 118, 0.13), rgba(54, 79, 118, 0));
}

.about-commitment-header {
  max-width: 760px;
  margin: 0 auto clamp(52px, 6vw, 78px);
  text-align: center;
}

.about-commitment-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(54, 79, 118, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-commitment-kicker i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.about-commitment-title {
  margin: 0;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 5.4vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.about-commitment-title em {
  color: var(--primary);
  font-weight: 400;
}

.about-commitment-intro {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.about-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.about-commitment-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(54, 79, 118, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(29, 47, 75, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-commitment-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 169, 59, 0.38);
  box-shadow: 0 24px 54px rgba(29, 47, 75, 0.12);
}

.about-commitment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.about-commitment-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(229, 169, 59, 0.13);
  color: var(--accent-gold);
  font-size: 1.5rem;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.about-commitment-card:nth-child(even) .about-commitment-icon {
  background: rgba(54, 79, 118, 0.1);
  color: var(--primary);
}

.about-commitment-card:hover .about-commitment-icon {
  transform: rotate(-5deg) scale(1.07);
}

.about-commitment-number {
  color: rgba(54, 79, 118, 0.22);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-commitment-card h3 {
  margin: 0 0 11px;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.18;
}

.about-commitment-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-light);
}

.about-commitment-line {
  position: absolute;
  right: 30px;
  bottom: 25px;
  left: 30px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(54, 79, 118, 0.08);
}

.about-commitment-line::after {
  content: "";
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

.about-commitment-card:hover .about-commitment-line::after {
  width: 100%;
}

.about-commitment-footnote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 34px;
  margin-top: 38px;
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-commitment-footnote span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-commitment-footnote i {
  color: var(--accent-gold);
}

/* 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("../images/ai-home-comfort.png");
  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);
}

/* Centered Product Detail Images Column */
.product-details-images-section {
  padding: 80px 0;
  background-color: var(--bg);
}

.product-detail-images-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(99, 80, 80, 0.03);
}

.detail-big-image {
  width: 100%;
  height: auto;
  display: block;
}

.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;
  min-height: 320px;
  padding: 78px 0;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(18, 42, 67, 0.72) 0%, rgba(31, 76, 108, 0.62) 55%, rgba(85, 115, 136, 0.54) 100%),
    url("../images/blogback.png") center 28% / cover no-repeat;
}

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

/* Subtle darkening only sits above the image (when one is present) for text contrast */
.diaper-hero:has(.diaper-hero-image)::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 60px 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:
    linear-gradient(
      to bottom,
      rgba(255, 245, 179, 0.75) 0%,
      rgba(255, 253, 235, 0.4) 60%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    url("../images/auth_sky_bg.png") no-repeat center/cover;
  margin-bottom: 0;
  cursor: pointer;
  flex-shrink: 0;
}

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

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

.product-hover-img {
  display: none !important;
}

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

.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.25rem, 5.8vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0;
  font-style: italic;
  display: flex;
  align-items: center;
  transition:
    font-size 0.4s ease,
    line-height 0.4s ease,
    letter-spacing 0.4s ease;
}

/* Smaller variant when typing the longer tagline */
.footer-huge-brand.footer-huge-brand--tagline {
  font-size: clamp(1.6rem, 3.8vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.typing-cursor {
  font-family: var(--font-body);
  font-weight: 200;
  color: var(--accent-gold);
  animation: footerCursorBlink 0.8s infinite;
  margin-left: 2px;
  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.showcase-sphere-layout {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 160px;
  box-sizing: border-box;
}

.showcase-sphere-title-wrap {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin-bottom: 70px;
  padding: 0 24px;
}

.showcase-sphere-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -2px;
  margin: 0;
  white-space: nowrap;
}

.showcase-sphere-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.showcase-sphere-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 10;
}

.showcase-sphere-left {
  text-align: right;
  align-items: flex-end;
}

.showcase-sphere-right {
  text-align: left;
  align-items: flex-start;
}

/* Feature callouts */
.sphere-feature-item {
  max-width: 340px;
  position: relative;
  transition: transform 0.4s ease;
}

.sphere-feature-item:hover {
  transform: translateY(-4px);
}

.sphere-feature-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  opacity: 0.85;
  margin-bottom: 8px;
}

.sphere-feature-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}

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

.sphere-feature-text p {
  margin: 0;
  line-height: 1.65;
}

.sphere-feature-cta {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-secondary) 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(45, 62, 82, 0.04);
}

/* Center Video Column & Rings */
.showcase-sphere-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 660px;
}

.diaper-sphere-container {
  position: relative;
  width: 360px;
  height: 580px;
  border-radius: 30px;
  overflow: visible; /* to allow rings to render outside */
  background: #ffffff;
  border: 6px solid #ffffff;
  box-shadow: 0 35px 70px rgba(45, 62, 82, 0.16);
  z-index: 5;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.diaper-sphere-container:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 45px 80px rgba(45, 62, 82, 0.22);
}

.diaper-sphere-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Orbital Rings */
.sphere-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(52, 73, 102, 0.14);
  pointer-events: none;
  z-index: -1;
  transition: border-color 0.5s ease;
}

.ring-1 {
  width: 640px;
  height: 640px;
  animation: rotateRing 60s linear infinite;
}

.ring-2 {
  width: 800px;
  height: 800px;
  border: 1px dotted rgba(52, 73, 102, 0.08);
  animation: rotateRingBack 80s linear infinite;
}

@keyframes rotateRing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateRingBack {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.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;
  min-height: 460px;
  padding: clamp(92px, 10vw, 132px) 0 clamp(72px, 8vw, 104px);
  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("../images/blogs/diaper-newborn-up-to-5kg.png.webp");
  background-size: cover;
  background-position: center 46%;
  will-change: transform;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(20, 35, 54, .44), rgba(20, 35, 54, .55)),
    linear-gradient(180deg, rgba(28, 45, 66, .18) 0%, rgba(28, 45, 66, .72) 100%);
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 20px;
}

.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-avatar-logo {
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}

.home-faq-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.home-faq-read-link:hover {
  color: var(--accent-gold);
}

.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: contain;
  background: var(--white);
  padding: 5px;
}

.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 .support-email-link {
  text-transform: lowercase;
}

.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: 55vh;
  min-height: 410px;
  max-height: 560px;
  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("../images/ai-home-faq-care.png");
  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: 1200px;
  padding-top: 24px;
}

.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: 18px;
  color: var(--bg);
}

.guide-hero-title-size {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.guide-hero-subtext {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 22px;
  opacity: 0.95;
  color: var(--bg);
}

.guide-hero-scroll {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  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;
  object-position: bottom center; /* or center top */
  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;
}

.guide-size-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.guide-size-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
}

.guide-size-table th,
.guide-size-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.guide-size-table th {
  background-color: var(--primary-dark);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.guide-size-table tr:last-child td {
  border-bottom: 0;
}

.guide-size-table td:first-child,
.guide-size-table td:nth-child(2) {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.guide-check-list,
.guide-benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.guide-check-list li,
.guide-benefit-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-light);
  line-height: 1.55;
}

.guide-check-list li::before,
.guide-benefit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.guide-benefit-list {
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin: 48px auto 0;
  padding: 28px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.guide-faq-box {
  max-width: 1080px;
}

.guide-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
  text-align: left;
}

.guide-faq-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.guide-faq-card h3 {
  font-family: var(--font-ui);
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.guide-faq-card p {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  color: var(--text-light);
}

/* 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);
}

/* ==========================================================================
   HOME FAQ SECTION - Parent support block before footer
   ========================================================================== */
.home-faq-section {
  position: relative;
  z-index: 13;
  background: #ffffff;
  padding: 110px 0 120px;
  overflow: hidden;
}

.home-faq-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-faq-header {
  max-width: 720px;
  margin-bottom: 52px;
}

.home-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.home-faq-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-gold);
}

.home-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--primary-dark);
  margin: 0 0 18px;
}

.home-faq-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.home-faq-media {
  position: sticky;
  top: 110px;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f0ea;
  box-shadow: 0 28px 70px rgba(45, 62, 82, 0.12);
}

.home-faq-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.home-faq-media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(45, 62, 82, 0.12);
}

.home-faq-media-note span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.home-faq-media-note strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.25;
  color: var(--primary-dark);
}

.home-faq-list {
  background: #faf9f7;
  border: 1px solid rgba(226, 222, 218, 0.9);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
}

.home-faq-item {
  border-bottom: 1px solid rgba(226, 222, 218, 0.9);
}

.home-faq-item:last-of-type {
  border-bottom: 0;
}

.home-faq-list .faq-trigger {
  padding: 22px 0;
  gap: 18px;
}

.home-faq-list .faq-question {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary-dark);
}

.home-faq-list .faq-icon-box {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(45, 62, 82, 0.08);
}

.home-faq-list .faq-panel-inner {
  padding: 0 56px 24px 0;
}

.home-faq-list .faq-panel-inner p {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.75;
  color: var(--text-light);
}

.home-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .home-faq-section {
    padding: 80px 0 88px;
  }

  .home-faq-layout {
    grid-template-columns: 1fr;
  }

  .home-faq-media {
    position: relative;
    top: auto;
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .home-faq-media img {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 560px) {
  .home-faq-container {
    width: min(100% - 28px, 1180px);
  }

  .home-faq-header {
    margin-bottom: 34px;
  }

  .home-faq-media {
    aspect-ratio: 4 / 3;
  }

  .home-faq-media-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .home-faq-list {
    padding: 12px 16px 22px;
  }

  .home-faq-list .faq-trigger {
    padding: 18px 0;
  }

  .home-faq-list .faq-icon-box {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .home-faq-list .faq-panel-inner {
    padding-right: 0;
  }

  .home-faq-actions .btn-pill,
  .home-faq-actions .btn-pill-outline {
    width: 100%;
    justify-content: center;
  }
}

/* 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;
}
.swal2-cancel-secondary {
  background: transparent !important;
  border: none !important;
  color: var(--primary-dark) !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-style: oblique;
  padding: 0 !important;
  margin-left: 0.75rem !important;
}

.swal2-cancel-secondary:hover {
  color: var(--primary) !important;
  text-decoration: underline;
}
.swal2-actions {
  gap: 0.75rem !important;
  align-items: center !important;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE — Layout & Structure
   ========================================================================== */

/* ── Product Hero Section ─────────────────────────────────────────────────── */
.product-hero {
  padding: 48px 0 64px;
  background: var(--bg);
}

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

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.product-gallery-section {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 245, 179, 0.75) 0%,
      rgba(255, 253, 235, 0.4) 60%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    url("../images/auth_sky_bg.png") no-repeat center/cover;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
}

.thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 245, 179, 0.75) 0%,
      rgba(255, 253, 235, 0.4) 60%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    url("../images/auth_sky_bg.png") no-repeat center/cover;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.thumb:hover {
  border-color: var(--primary-light);
}

.thumb[data-active="true"] {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(52, 73, 102, 0.15);
}

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

/* Breadcrumb */
.breadcrumb-product {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-light);
  margin-bottom: 4px;
}

.breadcrumb-product a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.breadcrumb-product span:last-child {
  color: var(--text);
  font-weight: 500;
}

/* Title & Category */
.product-details .product-title {
  font-size: var(--fs-h2);
  color: var(--primary-dark);
  margin: 0;
}

.product-details .product-category {
  color: var(--text-light);
  margin: -12px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

/* Rating Section */
.product-rating-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rating-stars {
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.btn-write-review {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-write-review:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ── Price Section ────────────────────────────────────────────────────────── */
.price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--border);
}

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

.price-current {
  color: var(--primary-dark);
}

.price-original {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #2e7d32;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 50px;
  padding: 3px 10px;
}

.availability {
  flex-shrink: 0;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
}

.availability-status.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* ── Description Block ────────────────────────────────────────────────────── */
.description-block {
  padding: 4px 0;
}

.description-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Selector Blocks (Size / Quantity) ────────────────────────────────────── */
.selector-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selector-label {
  color: var(--text);
  text-transform: uppercase;
}

/* Size Selector */
.size-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 80px;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.size-btn:hover {
  border-color: var(--primary-light);
  background: rgba(52, 73, 102, 0.03);
}

.size-btn[data-active="true"] {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(52, 73, 102, 0.2);
}

.size-label {
  display: block;
  color: var(--primary-dark);
}

.size-desc {
  display: block;
  color: var(--text-light);
}

/* Quantity Selector */
.quantity-selector {
  display: inline-flex;
  width: min-content;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

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

.qty-btn:active {
  background: var(--border);
}

.qty-input {
  width: 56px;
  height: 44px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── CTA Buttons ──────────────────────────────────────────────────────────── */
.cta-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.btn-add-cart-big {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-add-cart-big:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 73, 102, 0.25);
}

.btn-add-cart-big.btn-added {
  background: #2e7d32;
  border-color: #2e7d32;
}

.btn-buy-now {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-buy-now:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 73, 102, 0.25);
}

/* ── Feature Pills ────────────────────────────────────────────────────────── */
.features-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--bg-secondary);
  color: var(--primary);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.feature-pill i {
  font-size: 15px;
  color: var(--accent-gold);
}

.feature-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.feature-pill:hover i {
  color: var(--white);
}

/* ==========================================================================
   PRODUCT DETAIL IMAGES SECTION (Vertical Column)
   ========================================================================== */
.product-details-images-section {
  padding: 48px 0 64px;
  background: var(--bg);
}

.text-center {
  text-align: center;
}

.product-detail-images-column {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.detail-big-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   RELATED PRODUCTS
   ========================================================================== */
.related-products {
  padding: 72px 0 80px;
  background: var(--bg-secondary);
}

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

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

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

.related-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.related-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 245, 179, 0.75) 0%,
      rgba(255, 253, 235, 0.4) 60%,
      rgba(255, 255, 255, 0.95) 100%
    ),
    url("../images/auth_sky_bg.png") no-repeat center/cover;
}

.related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

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

.related-img-wrap .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  width: min-content;
}

.related-name {
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.related-desc {
  color: var(--text-light);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price {
  color: var(--primary-dark);
}

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

.btn-view-product {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--primary);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-view-product:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ==========================================================================
   BUY NOW MODAL
   ========================================================================== */
.bn-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(28, 45, 66, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.bn-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bn-modal {
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 24px 80px rgba(28, 45, 66, 0.3),
    0 0 0 1px rgba(28, 45, 66, 0.06);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.bn-overlay.is-open .bn-modal {
  transform: translateY(0) scale(1);
}

/* Scrollbar styling for modal */
.bn-modal::-webkit-scrollbar {
  width: 5px;
}

.bn-modal::-webkit-scrollbar-track {
  background: transparent;
}

.bn-modal::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

/* ── Modal Header ─────────────────────────────────────────────────────────── */
.bn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.bn-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-style: oblique;
}

.bn-title i {
  color: var(--accent-gold);
  font-size: 20px;
}

.bn-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-light);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.bn-close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Product Row (Summary Strip) ──────────────────────────────────────────── */
.bn-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.bn-product-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.bn-product-info {
  flex: 1;
  min-width: 0;
}

.bn-product-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bn-product-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  margin: 0 0 2px 0;
}

.bn-product-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}

/* ── Address Section ──────────────────────────────────────────────────────── */
.bn-section {
  padding: 24px 28px;
}

.bn-section-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Saved address cards */
.bn-addresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.bn-loading,
.bn-no-addr {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  padding: 16px;
  margin: 0;
}

.bn-addr-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bn-addr-card:hover {
  border-color: var(--primary-light);
  background: rgba(52, 73, 102, 0.02);
}

.bn-addr-card.is-selected {
  border-color: var(--primary);
  background: rgba(52, 73, 102, 0.04);
}

.bn-addr-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: var(--transition-fast);
}

.bn-addr-card.is-selected .bn-addr-radio {
  border-color: var(--primary);
}

.bn-addr-card.is-selected .bn-addr-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.bn-addr-body {
  flex: 1;
  min-width: 0;
}

.bn-addr-default {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: #fef7e6;
  border: 1px solid #f6e2bd;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 6px;
}

.bn-addr-name {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 3px 0;
}

.bn-addr-line {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Toggle new address button */
.bn-toggle-addr {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.bn-toggle-addr:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ── New Address Form ─────────────────────────────────────────────────────── */
.bn-new-addr {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.bn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bn-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bn-field-full {
  grid-column: 1 / -1;
}

.bn-field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bn-field input {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bn-field input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.bn-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 73, 102, 0.08);
  outline: none;
}

.bn-save-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
}

.bn-save-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ── Modal Footer ─────────────────────────────────────────────────────────── */
.bn-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.bn-btn-cancel {
  flex: 0 0 auto;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bn-btn-cancel:hover {
  color: var(--primary-dark);
  background: var(--border);
}

.bn-btn-confirm {
  flex: 1;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.bn-btn-confirm:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52, 73, 102, 0.25);
}

.bn-btn-confirm:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinning loader icon animation */
.bn-btn-confirm .ri-loader-4-line {
  animation: bnSpin 0.8s linear infinite;
}

@keyframes bnSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   PRODUCT DETAILS — Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery-section {
    position: relative;
    top: 0;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 24px 0 40px;
  }

  .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .size-selector {
    gap: 8px;
  }

  .size-btn {
    min-width: 68px;
    padding: 10px 14px;
  }

  .related-products {
    padding: 48px 0 56px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Modal responsive */
  .bn-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .bn-modal {
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }

  .bn-header,
  .bn-section,
  .bn-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bn-product-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bn-form-grid {
    grid-template-columns: 1fr;
  }

  .bn-field-full {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    gap: 8px;
  }

  .features-pills {
    gap: 8px;
  }

  .feature-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .product-details .product-title {
    font-size: var(--fs-h3);
  }
}

/* =============================================================================
   CHECKOUT PAGE  (checkout.php)
   ============================================================================= */

/* Breadcrumb — reuse the cart look on checkout + payment pages */
.checkout-page .breadcrumb,
.payment-result-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);
}

.checkout-page .breadcrumb-link,
.payment-result-page .breadcrumb-link {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.checkout-page .breadcrumb-link:hover,
.payment-result-page .breadcrumb-link:hover {
  color: var(--primary);
}

.checkout-page .breadcrumb-sep,
.payment-result-page .breadcrumb-sep {
  color: var(--border);
}

.checkout-page .breadcrumb-current,
.payment-result-page .breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

/* Two-column layout: form + sticky summary */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}

.checkout-form-col {
  min-width: 0;
}

.checkout-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.checkout-section-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.checkout-field label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition-fast);
}

.checkout-field textarea {
  resize: vertical;
  min-height: 60px;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(80, 102, 128, 0.1);
}

.checkout-field input.is-locked {
  background: var(--bg-secondary);
  color: var(--text-light);
  cursor: not-allowed;
}

.checkout-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 400;
}

.checkout-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkout-form-error {
  color: #a34e4e;
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 6px;
  min-height: 1em;
}

/* Order summary items inside the summary card */
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.checkout-item-name {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}

.checkout-item-qty {
  color: var(--text-light);
  font-size: 12.5px;
}

.checkout-item-price {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.checkout-empty {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  padding: 20px 0;
}

/* =============================================================================
   PAYMENT RESULT PAGE  (payment-callback.php)
   ============================================================================= */
.payment-result-card {
  max-width: 620px;
  margin: 0 auto 80px auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 56px 40px;
  text-align: center;
}

.payment-result-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 46px;
}

.payment-result-icon.success {
  background: #e7f2ea;
  color: #4c7c59;
}

.payment-result-icon.failed {
  background: #f7e7e7;
  color: #a34e4e;
}

.payment-result-icon.pending {
  background: #f6efe1;
  color: #b0872f;
}

.payment-result-title {
  font-family: var(--font-ui);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.payment-result-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px auto;
}

.payment-result-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pill buttons on the result page */
.payment-result-actions .btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow);
}

.payment-result-actions .btn-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.payment-result-actions .btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.payment-result-actions .btn-pill-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--bg);
}

/* Responsive: stack columns on tablet/mobile */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-summary-col .summary-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 560px) {
  .checkout-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-form {
    padding: 24px 20px;
  }

  .payment-result-card {
    padding: 40px 24px;
  }

  .payment-result-actions .btn-pill,
  .payment-result-actions .btn-pill-outline {
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT US SECTION — Company intro (logo + details) · homepage
   Content sourced from about.php
   ========================================================================== */
.aboutus-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f2ea 100%);
  padding: clamp(72px, 9vw, 130px) 24px;
  overflow: hidden;
}
.aboutus-section::before {
  content: "CLOUDCUSH";
  position: absolute;
  top: 30px;
  left: -2vw;
  font-family: var(--font-heading);
  font-size: clamp(70px, 15vw, 240px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(28, 45, 66, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.aboutus-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* ── Left: logo card ── */
.aboutus-visual {
  display: flex;
  justify-content: center;
}
.aboutus-logo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 400px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 30px 60px -34px rgba(28, 45, 66, 0.4);
}
.aboutus-logo-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(229, 169, 59, 0.35);
  border-radius: 18px;
  pointer-events: none;
}
.aboutus-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}
.aboutus-logo-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ── Right: details ── */
.aboutus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.aboutus-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-gold);
}

.aboutus-title {
  margin: 20px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
}
.aboutus-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.aboutus-text {
  margin: 0 0 16px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(28, 45, 66, 0.72);
}

.aboutus-points {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}
.aboutus-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--primary-dark);
}
.aboutus-points i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.12);
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.aboutus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .aboutus-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .aboutus-visual {
    order: -1;
  }
}
@media (max-width: 520px) {
  .aboutus-points {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BRAND STORY SECTION — Heritage milestones timeline (homepage)
   Content sourced from about.php · editorial + numbered timeline
   ========================================================================== */
.brandstory-section {
  position: relative;
  background: linear-gradient(180deg, #f6f2ea 0%, #ffffff 100%);
  padding: clamp(72px, 10vw, 140px) 24px;
  overflow: hidden;
}
.brandstory-section::before {
  content: "HERITAGE";
  position: absolute;
  top: 32px;
  right: -2vw;
  font-family: var(--font-heading);
  font-size: clamp(78px, 16vw, 260px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(28, 45, 66, 0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.brandstory-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* ── Left: sticky editorial intro ── */
.brandstory-aside {
  position: sticky;
  top: 100px;
}
.brandstory-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.brandstory-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-gold);
}
.brandstory-title {
  margin: 22px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
}
.brandstory-title em {
  font-style: italic;
  color: var(--accent-gold);
}
.brandstory-intro {
  max-width: 440px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(28, 45, 66, 0.72);
}
.brandstory-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 34px 0;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(28, 45, 66, 0.35);
}
.brandstory-sign-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.brandstory-sign-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.brandstory-sign-meta strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}
.brandstory-sign-meta span {
  font-size: 0.78rem;
  color: rgba(28, 45, 66, 0.55);
}
.brandstory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Right: vertical milestone timeline ── */
.brandstory-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3vw, 38px);
  padding-left: 8px;
}
.brandstory-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--accent-gold),
    var(--border) 72%,
    transparent
  );
}
.brandstory-node {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.brandstory-node-index {
  position: relative;
  z-index: 1;
}
.brandstory-node-no {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}
.brandstory-node-body {
  padding: 4px 4px 22px;
  border-bottom: 1px solid rgba(226, 219, 208, 0.7);
}
.brandstory-node:last-child .brandstory-node-body {
  border-bottom: none;
  padding-bottom: 0;
}
.brandstory-node-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.brandstory-node-title {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
}
.brandstory-node-text {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(28, 45, 66, 0.68);
}
.brandstory-node-accent {
  display: inline-block;
  padding-left: 14px;
  border-left: 2px solid var(--accent-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--primary-dark);
}
.brandstory-node:hover .brandstory-node-no {
  transform: scale(1.06);
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .brandstory-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .brandstory-aside {
    position: static;
  }
}
@media (max-width: 560px) {
  .brandstory-section::before {
    top: 18px;
  }
  .brandstory-signature {
    width: 100%;
  }
  .brandstory-node {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .brandstory-timeline::before {
    left: 23px;
  }
  .brandstory-node-no {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   PRODUCT REVIEWS SECTION (MINIMAL CAROUSEL)
   ========================================================================== */
.product-reviews-section {
  padding: 60px 0;
  background-color: #faf9f7; /* soothing off-white/beige background */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.reviews-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.reviews-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.reviews-overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-overall-rating .rating-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.reviews-overall-rating .stars-list {
  color: #ffb800;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.reviews-overall-rating .rating-count {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.reviews-navigation {
  display: flex;
  gap: 10px;
}

.rev-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rev-nav-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.reviews-slider-container {
  position: relative;
  width: 100%;
}

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px 0;
  scrollbar-width: none; /* Hide standard scrollbar Firefox */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Hide standard scrollbar Chrome/Safari */
}

.review-slide-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-slide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.review-slide-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-info-block {
  flex: 1;
}

.reviewer-slide-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 2px 0;
}

.reviewer-slide-date {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
}

.verified-pill {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: rgba(34, 197, 94, 0.08);
  padding: 4px 8px;
  border-radius: 12px;
}

.review-slide-stars {
  color: #ffb800;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-slide-stars .ri-star-line {
  color: var(--border);
}

.review-slide-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .review-slide-card {
    flex: 0 0 280px;
    padding: 18px;
  }

  .reviews-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Premium verified-review experience */
.product-reviews-section {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(142, 177, 217, 0.13), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(229, 169, 59, 0.1), transparent 24%),
    #fbfaf7;
}

.product-reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(52, 73, 102, 0.025) 1px, transparent 1px);
  background-size: 100% 64px;
}

.product-reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-header-row {
  align-items: center;
  margin-bottom: 34px;
}

.reviews-heading-block {
  display: grid;
  gap: 8px;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.reviews-eyebrow i {
  color: #4dab67;
  font-size: 1rem;
}

.reviews-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.7px;
  color: var(--primary-dark);
}

.reviews-overall-rating {
  gap: 14px;
  margin-top: 3px;
}

.reviews-overall-rating .rating-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-dark);
}

.reviews-rating-copy {
  display: grid;
  gap: 3px;
}

.reviews-overall-rating .stars-list {
  gap: 3px;
  font-size: 1.05rem;
}

.reviews-overall-rating .rating-count {
  color: var(--text-light);
  font-size: 0.76rem;
}

.reviews-navigation {
  gap: 9px;
}

.rev-nav-btn {
  width: 46px;
  height: 46px;
  border-color: rgba(52, 73, 102, 0.18);
  color: var(--primary-dark);
  box-shadow: 0 5px 16px rgba(52, 73, 102, 0.06);
}

.rev-nav-btn i {
  font-size: 1.25rem;
}

.rev-nav-btn:hover:not(:disabled) {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(52, 73, 102, 0.18);
}

.rev-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.reviews-slider {
  gap: 18px;
  padding: 4px 2px 18px;
  scroll-padding-inline: 2px;
}

.review-slide-card {
  position: relative;
  flex-basis: clamp(290px, 25vw, 360px);
  min-height: 300px;
  padding: 26px;
  border-color: rgba(52, 73, 102, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(44, 58, 79, 0.055);
  overflow: hidden;
}

.review-slide-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(142, 177, 217, 0.08);
  pointer-events: none;
}

.review-slide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 73, 102, 0.24);
  box-shadow: 0 18px 42px rgba(44, 58, 79, 0.1);
}

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(142, 177, 217, 0.2);
  font-size: 2.4rem;
  line-height: 1;
}

.review-slide-top {
  position: relative;
  z-index: 1;
  padding-right: 26px;
  margin-bottom: 20px;
}

.reviewer-initial {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  box-shadow: 0 5px 12px rgba(52, 73, 102, 0.18);
}

.reviewer-slide-name {
  color: var(--primary-dark);
  font-size: 0.96rem;
}

.reviewer-slide-date {
  margin-top: 2px;
  color: var(--text-light);
}

.verified-pill {
  position: absolute;
  top: 49px;
  left: 56px;
  color: #338a49;
  background: #edf8ef;
  padding: 3px 7px;
  font-size: 0.67rem;
}

.review-slide-stars {
  position: relative;
  z-index: 1;
  margin: 17px 0 14px;
  font-size: 0.94rem;
}

.review-slide-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.75;
  color: #39485c;
}

@media (max-width: 768px) {
  .product-reviews-section {
    padding: 48px 0 52px;
  }

  .reviews-header-row {
    align-items: flex-end;
    gap: 18px;
  }

  .reviews-section-title {
    font-size: 2rem;
  }

  .rev-nav-btn {
    width: 42px;
    height: 42px;
  }

  .review-slide-card {
    flex: 0 0 min(86vw, 330px);
    min-height: 280px;
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .reviews-header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .reviews-overall-rating {
    gap: 10px;
  }

  .reviews-navigation {
    padding-bottom: 3px;
  }

  .review-slide-card {
    flex-basis: calc(100vw - 58px);
  }

  .review-slide-top {
    padding-right: 20px;
  }
}

/* Out of Stock Buttons styling */
.btn-add-cart-big.out-of-stock,
.btn-add-cart.out-of-stock,
.cc2-add-cart-btn.out-of-stock {
  background-color: #f1f5f9 !important;
  color: #94a3b8 !important;
  border: 1px solid #cbd5e1 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* ── IMPROVED MOBILE SIDEBAR UI ── */
.mobile-nav-overlay .mobile-close-btn {
  position: static;
  margin: 0;
  width: 38px;
  height: 38px;
  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;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav-overlay .mobile-close-btn:hover {
  background-color: var(--border);
  transform: scale(1.08) rotate(90deg);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-logo-container {
  display: flex;
  align-items: center;
}

.mobile-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.mobile-logo-img {
  max-height: 52px;
  width: auto;
}

.mobile-menu-list {
  padding: 20px 0 !important;
}

/* Remove default full-width borders and add modern padding/spacing */
.mobile-nav-overlay .mobile-menu-item {
  border-bottom: none !important;
  padding: 2px 24px !important;
}

.mobile-nav-overlay .mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  font-weight: 500;
  color: var(--primary) !important;
  padding: 14px 20px !important;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background-color: transparent;
}

.mobile-nav-overlay .mobile-nav-link:hover,
.mobile-nav-overlay .mobile-nav-link:active {
  background-color: var(--bg-secondary) !important;
  color: var(--primary-dark) !important;
  padding-left: 26px !important;
}

/* Elegant drawer footer */
.mobile-nav-footer {
  margin-top: auto;
  padding: 32px 28px 48px;
  background-color: var(--bg);
}

.mobile-nav-footer-divider {
  height: 1px;
  background-color: var(--border);
  margin-bottom: 24px;
  width: 100%;
}

.mobile-nav-footer-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0 0 6px;
}

.mobile-nav-footer-email {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.mobile-nav-footer-email:hover {
  color: var(--accent-gold);
}

/* Hide the active background menu toggle button to avoid duplicate close icons */
.menu-toggle.is-active {
  opacity: 0;
  pointer-events: none;
}

/* Premium mobile drawer refresh */
@media (max-width: 768px) {
  .mobile-nav-backdrop {
    background:
      radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
      rgba(13, 31, 51, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mobile-nav-overlay {
    top: 10px;
    right: -110%;
    width: min(360px, calc(100vw - 20px));
    height: calc(100vh - 20px);
    margin-right: 10px;
    border: 1px solid rgba(45, 95, 125, 0.13);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(253, 249, 241, 0.98) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(246, 250, 252, 0.98) 100%);
    box-shadow: -18px 24px 54px rgba(13, 31, 51, 0.28);
    transition: right 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .mobile-nav-header {
    position: sticky;
    top: 0;
    padding: 18px 18px 14px;
    border-bottom: 0;
    background: transparent;
  }

  .mobile-logo-container {
    min-width: 0;
    padding: 7px 12px;
    border: 1px solid rgba(45, 95, 125, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .mobile-logo-img {
    max-height: 42px;
  }

  .mobile-logo-text {
    font-size: 1.28rem;
  }

  .mobile-nav-overlay .mobile-close-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(45, 95, 125, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: #263241;
    box-shadow: 0 10px 22px rgba(13, 31, 51, 0.1);
  }

  .mobile-nav-overlay .mobile-close-btn:hover,
  .mobile-nav-overlay .mobile-close-btn:focus-visible {
    background: #304765;
    color: var(--white);
    transform: rotate(90deg);
  }

  .mobile-menu-list {
    gap: 9px;
    padding: 6px 16px 16px !important;
  }

  .mobile-nav-overlay .mobile-menu-item {
    padding: 0 !important;
    border-bottom: 0 !important;
  }

  .mobile-nav-overlay .mobile-nav-link {
    min-height: 56px;
    padding: 10px 12px !important;
    border: 1px solid rgba(45, 95, 125, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    color: #263241 !important;
    box-shadow: 0 10px 24px rgba(13, 31, 51, 0.06);
    font-family: var(--font-body);
    font-size: 0.96rem !important;
    font-weight: 700;
  }

  .mobile-nav-link-label {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-link-label i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(45, 95, 125, 0.09);
    color: #304765;
    font-size: 1.1rem;
    flex: 0 0 auto;
  }

  .mobile-nav-link-arrow {
    color: rgba(38, 50, 65, 0.42);
    font-size: 1.28rem;
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .mobile-nav-overlay .mobile-nav-link:hover,
  .mobile-nav-overlay .mobile-nav-link:active,
  .mobile-nav-overlay .mobile-nav-link:focus-visible {
    padding-left: 12px !important;
    background: #304765 !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(48, 71, 101, 0.18);
  }

  .mobile-nav-overlay .mobile-nav-link:hover .mobile-nav-link-label i,
  .mobile-nav-overlay .mobile-nav-link:active .mobile-nav-link-label i,
  .mobile-nav-overlay .mobile-nav-link:focus-visible .mobile-nav-link-label i {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
  }

  .mobile-nav-overlay .mobile-nav-link:hover .mobile-nav-link-arrow,
  .mobile-nav-overlay .mobile-nav-link:active .mobile-nav-link-arrow,
  .mobile-nav-overlay .mobile-nav-link:focus-visible .mobile-nav-link-arrow {
    color: var(--white);
    transform: translateX(3px);
  }

  .mobile-nav-footer {
    padding: 10px 16px 24px;
    background: transparent;
  }

  .mobile-nav-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .mobile-nav-action {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(45, 95, 125, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: #263241;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(13, 31, 51, 0.06);
  }

  .mobile-nav-action i {
    font-size: 1.35rem;
  }

  .mobile-nav-action-whatsapp {
    background: linear-gradient(180deg, #35dc70 0%, #18b455 100%);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
  }

  .mobile-nav-support-card {
    padding: 16px;
    border: 1px solid rgba(45, 95, 125, 0.1);
    border-radius: 20px;
    background: rgba(253, 249, 241, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .mobile-nav-support-kicker {
    display: block;
    margin-bottom: 4px;
    color: #304765;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mobile-nav-footer-text {
    color: #516173;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .mobile-nav-footer-email {
    margin-top: 4px;
    color: #304765;
  }
}

/* Scoped overrides to resolve gaps and format anchor cards in Core Collection Section */
#coreCollectionSection {
  padding: 80px 0 60px !important;
}

#coreCollectionSection .cc-header {
  margin-bottom: 20px !important;
}

#coreCollectionSection .cc2-card {
  text-decoration: none !important;
  color: inherit !important;
}

/* Mom-Approved Moments: featured parent story */
.mom-moments-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

.mom-header {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.mom-eyebrow {
  margin-bottom: 9px;
  color: var(--accent-gold);
  font-family: "Roboto Slab", serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
}

.mom-title {
  margin-bottom: 8px;
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.mom-subheading {
  font-family: "Lora", serif;
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  line-height: 1.5;
}

.mom-feature-story {
  width: min(1180px, 92%);
  min-height: 500px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  overflow: hidden;
  border: 1px solid rgba(28, 45, 66, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(28, 45, 66, 0.1);
}

.mom-feature-image-wrap { position: relative; min-height: 500px; overflow: hidden; }
.mom-feature-image { width: 100%; height: 100%; min-height: 500px; display: block; object-fit: cover; object-position: center; }
.mom-feature-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 72%, rgba(255,255,255,.18)); pointer-events: none; }
.mom-feature-badge { position: absolute; left: 22px; bottom: 22px; z-index: 1; display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.88); color: var(--primary-dark); font-family: var(--font-ui); font-size: .76rem; font-weight: 800; backdrop-filter: blur(10px); }
.mom-feature-badge i { color: var(--accent-gold); }
.mom-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.mom-feature-kicker { margin-bottom: 13px; color: var(--accent-gold); font-family: var(--font-ui); font-size: .72rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.mom-feature-copy h3 { margin: 0 0 18px; color: var(--primary-dark); font-family: var(--font-heading); font-size: clamp(2rem, 3.2vw, 3.3rem); font-weight: 500; line-height: 1.06; }
.mom-feature-copy > p { margin: 0; color: var(--text-light); font-size: .98rem; line-height: 1.72; }
.mom-trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 28px 0; }
.mom-trust-row > span { min-width: 0; display: flex; flex-direction: column; gap: 3px; padding: 13px 9px; border-radius: 10px; background: #f8f5ef; }
.mom-trust-row i { margin-bottom: 4px; color: var(--accent-gold); font-size: 18px; }
.mom-trust-row strong { color: var(--primary-dark); font-family: var(--font-ui); font-size: .74rem; line-height: 1.25; }
.mom-trust-row small { color: var(--text-light); font-size: .66rem; }
.mom-feature-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; color: var(--primary-dark); font-family: var(--font-ui); font-size: .82rem; font-weight: 800; border-bottom: 1px solid var(--accent-gold); padding-bottom: 4px; }
.mom-stories-label { width: min(1180px, 92%); margin: 46px auto 0; display: flex; align-items: center; gap: 16px; color: var(--primary-dark); font-family: var(--font-ui); font-size: .72rem; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.mom-stories-line { height: 1px; flex: 1; background: var(--border); }

/* Soft pastel rotation for community review cards */
.mom-carousel-track .mom-card-text {
  --mom-card-bg: #fff8ee;
  --mom-card-border: #efd9ba;
  --mom-card-accent: #c78b35;
  background: linear-gradient(145deg, rgba(255,255,255,.78), var(--mom-card-bg));
  border-color: var(--mom-card-border);
  box-shadow: 0 12px 32px rgba(28, 45, 66, 0.055);
}

.mom-carousel-track .mom-card-text:nth-child(6n + 2) {
  --mom-card-bg: #eef7fb;
  --mom-card-border: #c9e1eb;
  --mom-card-accent: #4e8da8;
}

.mom-carousel-track .mom-card-text:nth-child(6n + 3) {
  --mom-card-bg: #eef8f2;
  --mom-card-border: #c9e5d2;
  --mom-card-accent: #57906a;
}

.mom-carousel-track .mom-card-text:nth-child(6n + 4) {
  --mom-card-bg: #f5f0fb;
  --mom-card-border: #ddd0ec;
  --mom-card-accent: #866aaa;
}

.mom-carousel-track .mom-card-text:nth-child(6n + 5) {
  --mom-card-bg: #fff8dd;
  --mom-card-border: #eedfa8;
  --mom-card-accent: #ad8723;
}

.mom-carousel-track .mom-card-text:nth-child(6n) {
  --mom-card-bg: #fff0f2;
  --mom-card-border: #edcdd3;
  --mom-card-accent: #b86e7a;
}

.mom-carousel-track .mom-card-text .mom-quote-icon {
  color: color-mix(in srgb, var(--mom-card-accent) 22%, transparent);
}

.mom-carousel-track .mom-card-text .mom-stars {
  color: var(--mom-card-accent);
}

.mom-carousel-track .mom-card-text:hover {
  border-color: var(--mom-card-accent);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--mom-card-accent) 14%, transparent);
}

@media (max-width: 900px) {
  .mom-feature-story { grid-template-columns: 1fr; }
  .mom-feature-image-wrap, .mom-feature-image { min-height: 430px; }
}

@media (max-width: 600px) {
  .mom-moments-section { padding: 46px 0 54px; }
  .mom-header { margin-bottom: 24px; }
  .mom-title { font-size: 2.15rem; letter-spacing: -.7px; }
  .mom-feature-story { width: calc(100% - 30px); border-radius: 14px; }
  .mom-feature-image-wrap, .mom-feature-image { min-height: 330px; }
  .mom-feature-copy { padding: 28px 22px 30px; }
  .mom-trust-row { grid-template-columns: 1fr; }
  .mom-trust-row > span { display: grid; grid-template-columns: 26px minmax(0,1fr); align-items: center; }
  .mom-trust-row i { grid-row: 1 / 3; margin: 0; }
  .mom-stories-label { width: calc(100% - 30px); margin-top: 36px; }
}

/* Compact, single-row Journal heading */
.blog-carousel-section {
  padding: 66px 0 64px;
}

.blog-carousel-header {
  display: grid;
  grid-template-columns: max-content minmax(280px, 1fr) max-content;
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}

.blog-carousel-title-group {
  max-width: none;
}

.blog-carousel-eyebrow {
  margin-bottom: 7px;
}

.blog-carousel-title {
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.12;
  white-space: nowrap;
}

.blog-carousel-subtitle {
  max-width: 520px;
  justify-self: center;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 0.94rem;
  line-height: 1.5;
}

.blog-carousel-nav {
  justify-self: end;
}

@media (max-width: 1024px) {
  .blog-carousel-section { padding: 58px 0 56px; }
  .blog-carousel-header { grid-template-columns: 1fr max-content; gap: 16px 24px; }
  .blog-carousel-subtitle { grid-column: 1 / -1; grid-row: 2; justify-self: start; max-width: none; text-align: left; }
  .blog-carousel-nav { grid-column: 2; grid-row: 1; }
}

@media (max-width: 768px) {
  .blog-carousel-section { padding: 48px 0 50px; }
  .blog-carousel-header { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .blog-carousel-title { white-space: normal; font-size: 1.9rem; }
  .blog-carousel-subtitle { grid-column: 1; grid-row: auto; }
}

/* Compact FAQ intro: heading and supporting copy share one row */
.home-faq-section {
  padding: 64px 0 72px;
}

.home-faq-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(320px, .72fr);
  align-items: end;
  gap: 8px 64px;
  margin-bottom: 32px;
}

.home-faq-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  font-family: "Roboto Slab", serif;
}

.home-faq-title {
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -1px;
}

.home-faq-subtitle {
  margin: 0 0 3px;
  font-family: "Lora", serif;
  font-size: .98rem;
  line-height: 1.6;
}

.home-faq-layout {
  display: block;
}

.home-faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.home-faq-columns .home-faq-list {
  padding: 18px 26px;
}

.home-faq-layout > .home-faq-actions {
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .home-faq-section { padding: 54px 0 62px; }
  .home-faq-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .home-faq-eyebrow { grid-column: 1; }
  .home-faq-columns { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .home-faq-section { padding: 44px 0 52px; }
  .home-faq-header { margin-bottom: 24px; }
  .home-faq-title { font-size: 2rem; letter-spacing: -.6px; }
}

/* Compact cart rows: keep long product names from breaking item alignment */
.cart-item-row {
  grid-template-columns: 112px minmax(0, 1fr) 126px 86px;
  gap: 22px;
  min-height: 150px;
  max-height: none;
  padding: 18px 0;
}

.cart-item-img-wrap {
  width: 112px;
  height: 112px;
}

.cart-item-details {
  min-width: 0;
  gap: 5px;
}

.cart-item-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.cart-item-size,
.btn-item-remove {
  font-size: .78rem;
}

.btn-item-remove {
  margin-top: 4px;
}

.cart-item-quantity-wrapper .quantity-selector {
  border-radius: 12px;
  padding: 4px;
}

.cart-item-price {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cart-item-row {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 128px;
    max-height: none;
    gap: 14px;
    padding: 16px 0;
  }

  .cart-item-img-wrap {
    width: 76px;
    height: 76px;
  }

  .cart-item-title {
    -webkit-line-clamp: 2;
    font-size: .9rem;
    line-height: 1.35;
  }

  .cart-item-quantity-wrapper,
  .cart-item-price-wrapper {
    margin-top: 6px;
  }
}

/* Product detail heading: readable sizing for long catalogue names */
.product-details .product-title {
  max-width: 760px;
  font-family: "Lora", serif;
  font-size: clamp(1.85rem, 2.45vw, 2.55rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.8px;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .product-details .product-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-details .product-title {
    font-size: 1.55rem;
    line-height: 1.25;
    letter-spacing: -0.4px;
  }
}

/* Product detail content: remove inherited oversized vertical gaps */
.product-details .product-info-section {
  gap: 14px;
}

.product-details .product-category,
.product-details .product-rating-section,
.product-details .description-block,
.product-details .description-text,
.product-details .price-section {
  margin-top: 0;
  margin-bottom: 0;
}

.product-details .description-block {
  padding: 4px 0 8px;
}

.product-details .description-text {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-details .product-info-section {
    gap: 12px;
  }
}

/* Unified product purchase panel: price, quantity and stock */
.product-details .price-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
}

.product-details .purchase-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-details .purchase-quantity-label {
  font-family: var(--font-body);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-details .price-section .quantity-selector {
  border-width: 1px;
  border-radius: 10px;
  background: var(--white);
}

.product-details .price-section .qty-btn,
.product-details .price-section .qty-input {
  width: 42px;
  height: 42px;
}

@media (max-width: 768px) {
  .product-details .price-section {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px;
  }

  .product-details .purchase-quantity {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
}

/* Product without photos: remove the empty gallery column completely */
.product-hero-grid.no-product-gallery {
  grid-template-columns: minmax(0, 1fr);
}

.product-hero-grid.no-product-gallery .product-info-section {
  width: min(100%, 900px);
  margin-inline: auto;
}

/* Mobile product actions: two equal buttons in one row */
@media (max-width: 768px) {
  .product-details .cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .product-details .btn-add-cart-big,
  .product-details .btn-buy-now {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    padding: 12px 8px;
    gap: 6px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .product-details .btn-add-cart-big i,
  .product-details .btn-buy-now i {
    font-size: 16px;
  }
}

/* Gallery thumbnails stay thumbnail-sized even when only one photo exists */
.product-details .gallery-thumbnails {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-details .gallery-thumbnails .thumb {
  flex: 0 0 88px;
  width: 88px;
  max-width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  .product-details .gallery-thumbnails .thumb {
    flex-basis: 68px;
    width: 68px;
    max-width: 68px;
    height: 68px;
  }
}

/* Product highlights: keep all four benefits in one clean row */
.product-details .features-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  flex-wrap: nowrap;
}

.product-details .feature-pill {
  min-width: 0;
  justify-content: center;
  padding: 10px 9px;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 768px) {
  .product-details .features-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .product-details .features-pills::-webkit-scrollbar {
    display: none;
  }

  .product-details .feature-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Keep the single-product layout inside narrow mobile viewports. */
@media (max-width: 768px) {
  .product-details .product-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-details .product-gallery-section,
  .product-details .product-info-section {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-inline: 0;
  }

  .product-details .gallery-main,
  .product-details .gallery-thumbnails {
    width: 100%;
    min-width: 0;
  }
}

/* Product listing images: consistent compact card thumbnails without cropping */
.products-page .product-image-wrap,
.products-grid .product-image-wrap {
  aspect-ratio: auto;
  height: clamp(270px, 24vw, 360px);
  padding: 14px;
}

.products-page .product-image,
.products-grid .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .products-page .product-image-wrap,
  .products-grid .product-image-wrap {
    height: 230px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .products-page .product-image-wrap,
  .products-grid .product-image-wrap {
    height: 190px;
    padding: 8px;
  }
}

/* Related products use compact thumbnails, not full square hero images */
.product-details .related-products .related-img-wrap {
  aspect-ratio: auto;
  height: 250px;
  padding: 12px;
}

.product-details .related-products .related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .product-details .related-products .related-img-wrap {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .product-details .related-products .related-img-wrap {
    height: 200px;
    padding: 8px;
  }
}

/* Related products: soft multicolour premium card design */
.product-details .related-products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 224, 148, .28), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(183, 224, 255, .32), transparent 27%),
    linear-gradient(135deg, #fffaf0 0%, #f8fbff 52%, #fff7fb 100%);
}

.product-details .related-products .section-title {
  font-style: normal;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.product-details .related-products .section-subtitle {
  width: fit-content;
  margin: 0 auto 38px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(52, 73, 102, .1);
}

.product-details .related-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(52, 73, 102, .1);
  box-shadow: 0 14px 34px rgba(52, 73, 102, .08);
}

.product-details .related-card:nth-child(1) {
  background: linear-gradient(180deg, #fff6cc 0%, #fffdf5 45%, #fff 100%);
}

.product-details .related-card:nth-child(2) {
  background: linear-gradient(180deg, #e6f6ff 0%, #f7fcff 45%, #fff 100%);
}

.product-details .related-card:nth-child(3) {
  background: linear-gradient(180deg, #e9f8e9 0%, #f8fff8 45%, #fff 100%);
}

.product-details .related-card:nth-child(4) {
  background: linear-gradient(180deg, #ffeaf2 0%, #fff8fb 45%, #fff 100%);
}

.product-details .related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(52, 73, 102, .15);
}

.product-details .related-card-content {
  padding: 18px 18px 12px;
}

.product-details .related-name {
  min-height: 3.9em;
  font-size: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details .related-price {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
}

.product-details .related-card-actions {
  margin-top: auto;
  padding: 0 18px 18px;
}

.product-details .btn-view-product {
  padding: 12px 10px;
  border: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #344966, #54749d);
  box-shadow: 0 8px 18px rgba(52, 73, 102, .18);
}

.product-details .related-card:nth-child(2) .btn-view-product {
  background: linear-gradient(135deg, #287a9f, #4aa9c9);
}

.product-details .related-card:nth-child(3) .btn-view-product {
  background: linear-gradient(135deg, #397852, #68a978);
}

.product-details .related-card:nth-child(4) .btn-view-product {
  background: linear-gradient(135deg, #a94e71, #d77b9c);
}

.product-details .btn-view-product:hover {
  filter: brightness(.94);
  transform: translateY(-2px);
}

/* Complete related-section composition */
.product-details .related-products {
  padding: 76px 0 88px;
  isolation: isolate;
}

.product-details .related-products::before,
.product-details .related-products::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
}

.product-details .related-products::before {
  top: -150px;
  left: -90px;
  background: rgba(255, 210, 112, .3);
}

.product-details .related-products::after {
  right: -100px;
  bottom: -155px;
  background: rgba(136, 202, 255, .28);
}

.product-details .related-section-head {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.product-details .related-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  padding: 7px 15px;
  color: #9a6a13;
  background: #fff4cd;
  border: 1px solid #f2d886;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.product-details .related-section-head .section-title {
  margin-bottom: 10px;
  line-height: 1.08;
}

.product-details .related-section-head .section-subtitle {
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1.6;
}

.product-details .related-grid {
  align-items: stretch;
  gap: 20px;
}

.product-details .related-card {
  border-radius: 22px;
}

.product-details .related-card > a {
  flex: 1;
}

.product-details .related-card:nth-child(1) .related-img-wrap {
  background: linear-gradient(145deg, #fff1a9, #fffdf0 72%);
}

.product-details .related-card:nth-child(2) .related-img-wrap {
  background: linear-gradient(145deg, #cdefff, #f4fbff 72%);
}

.product-details .related-card:nth-child(3) .related-img-wrap {
  background: linear-gradient(145deg, #d9f2d8, #f7fff5 72%);
}

.product-details .related-card:nth-child(4) .related-img-wrap {
  background: linear-gradient(145deg, #ffd9e7, #fff6fa 72%);
}

.product-details .related-card-number {
  position: absolute;
  right: 13px;
  bottom: 10px;
  color: rgba(52, 73, 102, .22);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.product-details .btn-view-product::after {
  content: "  →";
  transition: transform .2s ease;
}

@media (max-width: 768px) {
  .product-details .related-products {
    padding: 52px 0 60px;
  }

  .product-details .related-section-head {
    margin-bottom: 28px;
  }

  .product-details .related-products .section-title {
    font-size: 2rem;
  }

  .product-details .related-grid {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .product-details .related-grid {
    grid-template-columns: 1fr;
  }

  .product-details .related-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

/* Diaper journal: product-card inspired image-first layout */
.blog-page .blog-creative-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-page .blog-creative-grid .blog-card {
  grid-column: auto !important;
  min-width: 0;
  border-radius: 20px;
  border: 1px solid rgba(52, 73, 102, .1);
  box-shadow: 0 12px 30px rgba(52, 73, 102, .08);
  overflow: hidden;
}

.blog-page .blog-creative-grid .blog-card:nth-child(4n+1) { background: #fffaf0; }
.blog-page .blog-creative-grid .blog-card:nth-child(4n+2) { background: #f1f9ff; }
.blog-page .blog-creative-grid .blog-card:nth-child(4n+3) { background: #f2fbf2; }
.blog-page .blog-creative-grid .blog-card:nth-child(4n) { background: #fff4f8; }

.blog-page .blog-creative-grid .blog-card-link-wrapper {
  height: 100%;
  flex-direction: column !important;
}

.blog-page .blog-creative-grid .blog-card-img-wrap {
  width: 100% !important;
  height: 245px !important;
  aspect-ratio: auto !important;
}

.blog-page .blog-creative-grid .blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .blog-creative-grid .blog-card-content {
  width: 100% !important;
  padding: 22px !important;
}

.blog-page .blog-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-page .blog-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rich blog visuals placed naturally between article sections */
.article-rich-body .article-inline-visual {
  margin: 42px 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(52, 73, 102, .12);
}

.article-rich-body .article-inline-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-rich-body .article-inline-visual figcaption {
  padding: 12px 18px;
  color: var(--text-light);
  background: #fffaf0;
  font-size: 12px;
  text-align: center;
}

.article-rich-body .article-tip-box {
  margin: 36px 0;
  padding: 24px 28px;
  border: 1px solid #f0d991;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff9df, #f3faff);
}

.article-rich-body .article-tip-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 18px;
}

.article-rich-body .article-tip-box li {
  margin: 8px 0;
  color: var(--text);
}

.article-rich-body .blog-product-callout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  margin: 44px 0;
  padding: 22px;
  border: 1px solid rgba(52, 73, 102, .12);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff5c8, #edf8ff);
  box-shadow: 0 16px 38px rgba(52, 73, 102, .1);
}

.article-rich-body .blog-product-callout img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.article-rich-body .blog-product-callout span {
  color: #a56d08;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-rich-body .blog-product-callout h3 {
  margin: 7px 0 8px;
  font-size: 24px;
}

.article-rich-body .blog-product-callout p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.article-rich-body .blog-product-callout a {
  display: inline-flex;
  padding: 10px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .blog-page .blog-creative-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .blog-page .blog-creative-grid { grid-template-columns: 1fr; }
  .blog-page .blog-creative-grid .blog-card-img-wrap { height: 220px !important; }
  .article-rich-body .blog-product-callout { grid-template-columns: 1fr; text-align: center; }
  .article-rich-body .blog-product-callout img { width: 150px; height: 150px; margin: 0 auto; }
}

/* Blog grid heading: compact spacing after featured article */
.blog-page .blog-featured-section {
  padding: 64px 0 40px;
}

.blog-page .blog-grid-section {
  padding: 46px 0 72px;
}

.blog-page .blog-grid-header {
  margin-bottom: 38px;
}

.blog-page .blog-grid-subtitle {
  margin-bottom: 8px;
  font-size: 16px;
}

.blog-page .blog-grid-title {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.12;
}

@media (max-width: 768px) {
  .blog-page .blog-featured-section {
    padding: 42px 0 26px;
  }

  .blog-page .blog-grid-section {
    padding: 34px 0 54px;
  }

  .blog-page .blog-grid-header {
    margin-bottom: 26px;
  }
}

/* CloudCush daily-care guide: static, readable and aligned with site messaging */
.blog-page .blog-tips-strip-section {
  position: relative;
  padding: 72px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 112, .25), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(144, 211, 255, .28), transparent 26%),
    linear-gradient(135deg, #fffaf0, #f6fbff 54%, #fff7fb);
}

.blog-page .blog-tips-strip-header {
  width: min(100%, 760px);
  margin: 0 auto 40px;
  text-align: center;
}

.blog-page .strip-subtitle {
  display: inline-flex;
  padding: 7px 15px;
  border: 1px solid #efd788;
  border-radius: 999px;
  color: #9a6a13;
  background: #fff5cf;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-page .strip-title {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.1;
  color: var(--primary-dark);
}

.blog-page .strip-description {
  margin: 0 auto;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.65;
}

.blog-page .care-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-page .care-tips-grid .tip-card {
  position: relative;
  display: flex;
  min-width: 0;
  max-width: none;
  min-height: 190px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(52, 73, 102, .1);
  box-shadow: 0 14px 32px rgba(52, 73, 102, .08);
  overflow: hidden;
}

.blog-page .care-tips-grid .tip-card:nth-child(1),
.blog-page .care-tips-grid .tip-card:nth-child(4) { background: #fff7d9; }
.blog-page .care-tips-grid .tip-card:nth-child(2),
.blog-page .care-tips-grid .tip-card:nth-child(5) { background: #eaf7ff; }
.blog-page .care-tips-grid .tip-card:nth-child(3),
.blog-page .care-tips-grid .tip-card:nth-child(6) { background: #edf9ed; }

.blog-page .care-tips-grid .tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(52, 73, 102, .14);
}

.blog-page .care-tips-grid .tip-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #e3a426, #f3c45c);
  box-shadow: 0 8px 18px rgba(218, 156, 34, .22);
}

.blog-page .care-tips-grid .tip-card:nth-child(2) .tip-icon,
.blog-page .care-tips-grid .tip-card:nth-child(5) .tip-icon {
  background: linear-gradient(135deg, #328caf, #63b9d5);
}

.blog-page .care-tips-grid .tip-card:nth-child(3) .tip-icon,
.blog-page .care-tips-grid .tip-card:nth-child(6) .tip-icon {
  background: linear-gradient(135deg, #44835a, #70ad7c);
}

.blog-page .care-tips-grid .tip-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.blog-page .care-tips-grid .tip-card-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.blog-page .tip-number {
  position: absolute;
  right: 14px;
  bottom: 8px;
  color: rgba(52, 73, 102, .13);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .blog-page .care-tips-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .blog-page .blog-tips-strip-section { padding: 50px 0 58px; }
  .blog-page .blog-tips-strip-header { margin-bottom: 28px; }
  .blog-page .care-tips-grid { grid-template-columns: 1fr; }
  .blog-page .care-tips-grid .tip-card { min-height: 0; padding: 22px; }
}

/* Blog hero copy: concise and clearly identifies the journal */
.blog-page .blog-hero-title {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 1.02;
}

.blog-page .blog-hero-subtext {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

@media (max-width: 600px) {
  .blog-page .blog-hero-title {
    font-size: 2.65rem;
  }
}

/* Journal article: show four related stories with edge-to-edge cover images. */
.details-related-section .related-articles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.details-related-section .related-card {
  border-radius: 16px;
  transform: none;
  height: 100%;
}

.details-related-section .related-card:hover {
  transform: translateY(-4px);
}

.details-related-section .related-img-wrap {
  width: 100%;
  height: 220px;
  aspect-ratio: auto;
  background: var(--bg-secondary);
}

.details-related-section .related-img-wrap .related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.details-related-section .related-content {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.details-related-section .related-card-title {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  min-height: 4.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.details-related-section .related-card-link {
  height: 100%;
}

.details-related-section .related-card-excerpt {
  min-height: 6.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.details-related-section .related-read-more {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .details-related-section .related-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .details-related-section .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Visible database tags on individual journal articles. */
.article-tags {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-tags-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(45, 62, 82, 0.14);
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.article-tag:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-2px);
}

.blog-tag-clear {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Shop via partner marketplaces */
.partner-shop-page { background: linear-gradient(180deg, #f9f6ee 0%, #f4f1e9 100%); }
.partner-shop-hero { position: relative; isolation: isolate; overflow: hidden; padding: 44px 0 64px; text-align: center; }
.partner-shop-hero::before { content: ""; position: absolute; z-index: -2; inset: -32px; background: url("../images/blogs/premium-baby-diapers-india.webp") center 42% / cover no-repeat; filter: blur(11px); transform: scale(1.08); opacity: .48; }
.partner-shop-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(110deg, rgba(250,247,239,.94), rgba(247,244,235,.76) 48%, rgba(250,247,239,.9)); }
.partner-shop-hero > .container { max-width: 1040px; padding: 34px clamp(24px, 5vw, 64px) 38px; border: 1px solid rgba(255,255,255,.75); border-radius: 28px; background: rgba(255,255,255,.48); box-shadow: 0 22px 60px rgba(42,53,71,.12); backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); }
.partner-shop-hero .contact-breadcrumb { justify-content: center; width: fit-content; margin: 0 auto 24px; padding: 8px 14px; border: 1px solid rgba(45,62,82,.1); border-radius: 999px; background: rgba(255,255,255,.7); }
.partner-shop-eyebrow { display: inline-block; color: #b67908; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.partner-shop-hero h1 { max-width: 850px; margin: 14px auto 16px; color: #17263d; font-family: var(--font-heading); font-size: clamp(2.6rem, 5vw, 4.7rem); font-weight: 500; line-height: 1.03; text-wrap: balance; }
.partner-shop-hero p { max-width: 680px; margin: 0 auto; color: #53657f; font-size: 1.04rem; line-height: 1.7; text-wrap: balance; }
.partner-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.partner-trust-row span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px solid rgba(45,62,82,.11); border-radius: 999px; background: rgba(255,255,255,.76); color: #31445f; font-size: .76rem; font-weight: 700; box-shadow: 0 5px 16px rgba(42,53,71,.06); }
.partner-trust-row i { color: #c78d1b; font-size: 1rem; }
.partner-shop-products { position: relative; padding: 54px 0 110px; }
.partner-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.partner-product-card { overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(45,62,82,.07); }
.partner-product-image-wrap { position: relative; height: 260px; overflow: hidden; background: #eef4f8; }
.partner-product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.partner-product-card:hover .partner-product-image-wrap img { transform: scale(1.04); }
.partner-market-badge { position: absolute; top: 16px; left: 16px; padding: 8px 14px; border-radius: 999px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.partner-market-flipkart { background: #2874f0; }
.partner-market-amazon { background: #232f3e; }
.partner-product-content { padding: 26px; }
.partner-product-size { color: var(--accent-gold); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.partner-product-content h2 { margin: 9px 0 10px; color: var(--primary-dark); font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.3; }
.partner-product-content p { min-height: 3.2em; margin: 0 0 22px; color: var(--text-light); font-size: .9rem; line-height: 1.6; }
.partner-buy-button { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 13px 18px; border-radius: 999px; background: var(--primary-dark); color: #fff; font-size: .85rem; font-weight: 700; text-decoration: none; transition: transform .25s ease, background .25s ease; }
.partner-buy-button:hover { background: var(--accent-gold); color: #fff; transform: translateY(-2px); }
.partner-shop-note { margin: 32px auto 0; color: var(--text-light); font-size: .78rem; text-align: center; }
@media (max-width: 980px) { .partner-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .partner-shop-hero { padding: 22px 12px 42px; } .partner-shop-hero > .container { padding: 26px 18px 30px; border-radius: 22px; } .partner-shop-hero .contact-breadcrumb { margin-bottom: 20px; font-size: .75rem; } .partner-shop-hero h1 { font-size: 2.55rem; } .partner-trust-row { gap: 8px; } .partner-trust-row span { padding: 8px 11px; font-size: .7rem; } .partner-product-grid { grid-template-columns: 1fr; } .partner-product-image-wrap { height: 230px; } }

/* Diaper guide benefits: premium soft-card presentation. */
.guide-metrics-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #f8f5ed 0%, #eef5f8 52%, #faf7ef 100%);
}

.guide-metrics-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -45px;
  background: url("../images/blogs/diaper-8-to-12kg-baby.webp") center 40% / cover no-repeat;
  filter: blur(24px);
  opacity: .12;
  transform: scale(1.08);
}

.guide-metrics-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(255,255,255,.8), rgba(255,255,255,.25) 55%, transparent 78%);
}

.guide-metrics-section .metrics-header { max-width: 720px; margin-bottom: 46px; }
.guide-metrics-section .metrics-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid rgba(197,142,27,.2); border-radius: 999px; background: rgba(255,255,255,.65); }
.guide-metrics-section .metrics-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-gold); box-shadow: 0 0 0 5px rgba(197,142,27,.12); }
.guide-metrics-section .metrics-title { margin-top: 16px; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.08; text-wrap: balance; }

.guide-metrics-section .metrics-grid { gap: 20px; }
.guide-metrics-section .metric-card { position: relative; overflow: hidden; min-height: 330px; padding: 28px 24px 26px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.72); box-shadow: 0 14px 38px rgba(45,62,82,.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.guide-metrics-section .metric-card::before { content: ""; position: absolute; top: 0; left: 15%; right: 15%; height: 3px; border-radius: 0 0 8px 8px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); }
.guide-metrics-section .metric-card:hover { border-color: rgba(197,142,27,.35); transform: translateY(-8px); box-shadow: 0 22px 50px rgba(45,62,82,.14); }
.guide-metrics-section .metric-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border: 1px solid rgba(197,142,27,.2); border-radius: 18px; background: linear-gradient(145deg, #fff, #fff6dc); box-shadow: 0 9px 22px rgba(197,142,27,.12); font-size: 27px; }
.guide-metrics-section .metric-number { margin-bottom: 4px; font-size: clamp(3.1rem, 4vw, 4.5rem); line-height: 1; }
.guide-metrics-section .metric-label { margin-bottom: 10px; color: var(--primary-dark); font-size: 1.22rem; }
.guide-metrics-section .metric-desc { max-width: 230px; margin: 0 auto; }

.guide-metrics-section .guide-benefit-list { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1080px; gap: 12px; margin-top: 32px; padding: 18px; border: 1px solid rgba(255,255,255,.82); border-radius: 22px; background: rgba(255,255,255,.62); box-shadow: 0 12px 34px rgba(45,62,82,.07); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.guide-metrics-section .guide-benefit-list li { min-height: 50px; padding: 14px 14px 14px 45px; border: 1px solid rgba(45,62,82,.08); border-radius: 14px; background: rgba(255,255,255,.68); line-height: 1.35; }
.guide-metrics-section .guide-benefit-list li::before { left: 15px; top: 13px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(197,142,27,.13); font-size: .78rem; }

@media (max-width: 1024px) {
  .guide-metrics-section .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-metrics-section .guide-benefit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .guide-metrics-section { padding: 64px 0; }
  .guide-metrics-section .metrics-header { margin-bottom: 32px; }
  .guide-metrics-section .metrics-title { font-size: 2.35rem; }
  .guide-metrics-section .metrics-grid,
  .guide-metrics-section .guide-benefit-list { grid-template-columns: 1fr; }
  .guide-metrics-section .metric-card { min-height: 0; padding: 26px 20px; }
}
