:root {
    /* Brand Colors from Brandbook */
    --color-bg: #FFFFFF;
    --color-bg-alt: #fdefe3;
    /* Pastel Beige (Brand) */
    --color-bg-mint: #eff4e9;
    /* Pastel Mint (Brand) */
    --color-bg-pink: #fbf3f4;
    /* Pastel Pink (Brand) */

    --color-text: #0E0E0E;
    /* Deep Black for primary text */
    --color-text-light: #52575b;
    /* Dark Gray for secondary */
    --color-accent: #a69378;
    /* Gold Accent */
    --color-emerald: #2A5A46;
    /* Premium Emerald Green */
    --color-border: #E5E5E5;

    /* Fonts */
    --font-heading: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

    /* Spacing System (Fixes/01) */
    --spacing-section: 60px;
    /* 60 top + 60 bottom = 120 visual gap */

    --space-heading-text: 36px;
    /* H1/H2 -> Text (32-40px) */
    --space-text-btn: 44px;
    /* Text -> Button (40-48px) */
    --space-para: 24px;
    /* Para -> Para (20-24px) */
    --space-subhead-text: 28px;
    /* H3 -> Text (24-32px) */
    --space-block: 56px;
    /* Block -> Block (48-64px) */

    --spacing-sm: 24px;
    /* Legacy variable mapped to para spacing */

    --align-padding-left: max(5%, calc((100% - 1320px) / 2 + 5%));
    /* Global left alignment matching .container logic */

    --align-padding-left-split: max(10%, calc(110% - 660px));

    /* ============================================
       PREMIUM DESIGN TOKENS (Phase 1 - 2026-02-04)
       ============================================ */

    /* Spacing Scale (8px base module) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-base: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;

    /* Border Radius System */
    --radius-sm: 4px;      /* inputs, badges */
    --radius-md: 8px;      /* buttons, cards */
    --radius-lg: 16px;     /* modals, containers */
    --radius-full: 9999px; /* pills, avatars */

    /* Shadow System (Depth Hierarchy) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);

    /* Transition System */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Semantic Color Tokens */
    --color-bg-section: #F4F4F4;
    --color-text-dark: #333;
    --color-text-muted: #666;
    --color-text-disabled: #999;
    --color-border-light: #eee;

    /* Z-Index Hierarchy */
    --z-header: 100;
    --z-dropdown: 200;
    --z-modal: 300;
    --z-cart: 400;
    --z-skip: 500;

    /* Semantic Status Colors */
    --color-success: #2e7d32;
    --color-success-bg: #e8f5e9;
    --color-error: #c62828;
    --color-error-bg: #ffebee;
    --color-warning: #f57f17;
    --color-warning-bg: #fff8e1;

    /* Header Height (logo + padding×2) — used in calc() for content offsets */
    --header-height: 108px;  /* 60px logo + 24px×2 padding */

    /* Force Cache Bust: v703 — S027 hero min-height */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    font-size: 16px;
    scroll-padding-top: calc(var(--header-height) + 72px);
    /* scroll-behavior: smooth — handled by Lenis */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    /* PREMIUM: 1.7 for optimal readability (was 1.5) */
    font-weight: 400;
    /* PREMIUM: 400 for better legibility (was 300) */
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    /* font-weight set individually below for hierarchy */
    line-height: 1.3;
    /* PREMIUM: 1.3 for better readability (was 1.1) */
    letter-spacing: -0.02em;
    color: var(--color-text);
}

h1 {
    font-size: 50px;
    font-weight: 700;  /* Bold - primary heading */
    margin-bottom: var(--space-heading-text);
}

h2 {
    font-size: 36px;
    font-weight: 600;  /* Semibold - secondary heading */
    margin-bottom: var(--space-heading-text);
}

h3 {
    font-size: 28px;
    font-weight: 600;  /* Semibold - tertiary heading */
    margin-bottom: var(--space-subhead-text);
}

h4 {
    font-size: 22px;
    font-weight: 500;  /* Medium - quaternary heading */
    margin-bottom: var(--space-md);
    /* Using variable instead of 1.5rem */
}

/* Standard Paragraph */
p {
    margin-bottom: var(--space-para);
    color: var(--color-text-light);
    max-width: 750px;
    /* Limit paragraph width 650-800px */
}

/* Intro Text / Hero Text for Inner Pages */
.hero-text {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    color: var(--color-text);
    margin-bottom: var(--space-text-btn);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

/* ACCESSIBILITY: Focus States — keyboard only (focus-visible) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Mouse click: no outline */
:focus:not(:focus-visible) {
    outline: none;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-emerald);
    outline-offset: 2px;
}

img {
    border: 1px solid var(--color-border);
    /* PREMIUM: Using border variable */
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all var(--transition-normal);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-border);
    /* PREMIUM: Using variable instead of hardcoded black */
    padding: 0 var(--space-md);
    height: 48px;
    line-height: 46px;
    /* Adjust for border */
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border-radius: var(--radius-md);
}

.btn:hover,
.btn:active {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: var(--color-bg);
    box-shadow: var(--shadow-md);
    /* PREMIUM: Elevation on hover */
}

/* Mobile Active State explicit override if needed later, but grouped above works generally. */

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    padding: 0 var(--space-md);
    height: 48px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
}

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--color-emerald);
    border-color: var(--color-emerald);
    color: var(--color-bg);
}

/* Header - Centered & Minimal */

/* Utilities */
.container {
    max-width: 1320px;
    /* Updated to 1320px per user request */
    margin: 0 auto;
    padding: 0 5%;
}

/* Fix Header Overlap */
section:first-of-type:not(.hero):not(.section-hero-split),
.collection {
    padding-top: calc(var(--header-height) + 20px);
}

#collection {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

/* Header - Centered & Minimal */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    z-index: var(--z-header);
    padding: var(--space-md) 0;
    /* PREMIUM: Using variable (24px) instead of 1.5rem */
    transition: var(--transition-normal);
}

header.scrolled {
    padding: var(--space-base) 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* Header - Centered & Minimal -> Updates? Keeping Structure, Font updated via var */
/* Logo Styles Updated */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

/* Force override global img styles for logo */
.logo a.logo-link img,
.footer-col .footer-logo img,
img.main-logo,
.logo img {
    height: 60px;
    /* Adjusted height for header */
    width: auto;
    max-height: none;
    border: none !important;
    background: transparent !important;
    padding: 0;
    margin: 0;
    display: block;
    object-fit: contain;
    transition: height var(--transition-normal);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    justify-self: start;
    margin-left: var(--space-xl);
}

/* Hamburger: hidden on desktop */
.hamburger {
    display: none;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: var(--color-text);
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    flex-wrap: nowrap;
    min-width: 0;
}

/* Hero - Split Layout (True Split) */
.hero {
    min-height: 90vh;
    background: #EBEBE9;
    position: relative;
    color: var(--color-text);
    padding: 0;
    overflow: hidden;
}

/* Remove old overlay */
.hero::before {
    display: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 90vh;
    width: 100%;
}

/* Left Side (Text) */
.hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Smart Padding: calculates distance to align with 1320px center container */
    padding-left: var(--align-padding-left-split);
    padding-right: 4rem;
}

.hero-text-inner {
    max-width: 600px;
    opacity: 0;
    animation: fadeInHero 1.5s ease-out forwards;
}

/* Right Side (Image) */
.hero-image-side {
    height: 100%;
    width: 100%;
    position: relative;
    opacity: 0;

    /* Flexbox Alignment Strategy */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    padding-top: 0;
    /* Removed padding to let image grow */
    box-sizing: border-box;
    /* Include padding in height calc */

    animation: fadeInHero 1.5s ease-out 0.3s forwards;
}

.hero-image-side img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90%;
    /* Cap height at 90% to guarantee 10% breathing room at TOP */
    display: block;
    object-fit: contain;
    object-position: bottom center;
    border: none;
    box-shadow: none;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-inner h1 {
    font-size: 48px;
    /* Corrected to 48px */
    margin-bottom: var(--space-heading-text);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* .hero-text-inner p replaced by global .hero-text */

.hero-text-inner .btn {
    border: none;
    font-size: 14px;
    padding: 0 3.5rem;
    height: 48px;
    line-height: 48px;
}

.hero-text-inner .btn-secondary {
    font-size: 14px;
    padding: 0 3.5rem;
    height: 48px;
    line-height: 46px;
}

/* Mobile Split */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: calc(var(--header-height) + 20px);
    }

    .hero-text-side {
        padding: 60px 5%;
        text-align: center;
        order: 2;
    }

    .hero-text-inner {
        margin: 0 auto;
    }

    .hero-image-side {
        order: 1;
        height: 50vh;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-text-inner .btn:hover,
.hero .btn:hover {
    background: var(--color-emerald);
    color: var(--color-bg);
}

/* Why Section - Clean Text */
.why-section {
    padding: 100px 0 var(--spacing-section) 0;
    /* 100px top gap from hero, standard bottom */
    text-align: left;
    /* Left align */
    background: var(--color-bg);
}

.why-section h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.why-section>.container>p {
    margin: 30px 0 4rem 0;
    /* Left align margin */
    max-width: 780px;
    text-align: left;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-block) 60px;
    /* 56px vertical gap, reduced horizontal for tighter layout */
    margin-top: 0;
    margin-left: 0;
    /* Ensure grid starts at container left edge */
    text-align: left;
    align-items: baseline;
}

.why-header {
    display: flex;
    align-items: center;
    gap: var(--space-base);
    margin-bottom: var(--space-base);
    /* PREMIUM: Using 16px (base) instead of non-standard 15px */
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    /* Handled by wrapper */
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--color-text);
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* Collection Section */
.collection {
    padding: var(--spacing-section) 0;
}

.collection .container>p {
    margin: 0 0 3rem 0;
    max-width: 750px;
    text-align: left;
}

.collection h2 {
    margin-bottom: var(--space-heading-text);
    text-align: left;
}

/* Science Section - Full Width */
.science {
    width: 100%;
    padding: 0;
    /* Clear padding, handled by inner */
    background: var(--color-bg-section);
    /* Full width bg */
}

.science-content {
    display: flex;
    /* keep split layout structure? Or user wants centered content? User said "Content centrally in container, left aligned". Science was split. */
    /* Science was a split view (Text Left / Image Right). User query: "Screen 4/5/6... Background stretch completely... Text stays as is relative to screen center, but align left".
       Split view is already full width effectively. Let's ensure the background is on the section.
    */
    display: flex;
    flex-direction: row;
    /* Restoring row for desktop */
    width: 100%;
    max-width: 100%;
    /* Full bleed */
    margin: 0;
}

.science-text h2,
.science-text p {
    max-width: 600px;
    /* Constrain text width */
    margin-left: 0;
    /* Strict left align */
    margin-right: 5%;
    /* Gap from image */
}


/* Heritage Section - Full Width */
.heritage {
    width: 100%;
    background-color: var(--color-bg);
    /* Full width BG */
    text-align: left;
    padding: var(--spacing-section) 0;
}

.heritage .container {
    /* Inherits max-width: 1320px */
    margin: 0 auto;
    padding: 0 5%;
    text-align: left;
}

.heritage h2 {
    margin-bottom: var(--space-heading-text);
}

.heritage>.container>p {
    max-width: 780px;
    margin: 0 0 1rem 0;
    /* Left align */
}

.heritage .u-margin-top-md {
    margin-top: var(--space-block);
}

.heritage h3 {
    font-size: 1.8rem;
    /* Increase font-size */
    font-weight: 600;
    /* Increase weight */
    margin-bottom: 1rem;
}

.heritage .u-margin-top-md p {
    max-width: 780px;
    /* Limit second paragraph width */
    margin: 0;
    /* Strict left align */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-2xl);
    /* PREMIUM: Using variable (64px) instead of hardcoded 4rem */
}

.product-card {
    background: transparent;
    text-align: center;
    cursor: pointer;
}

.product-image {
    height: 600px;
    background: var(--color-bg-section);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    /* PREMIUM: Faster, more responsive (was 1.2s) */
    border: none;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
    color: var(--color-text);
}

.product-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-weight: 300;
}

.product-card .btn {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition-normal);
}

.product-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}



.science-text {
    padding: var(--spacing-section) 5% var(--spacing-section) var(--align-padding-left);
    /* Smart Padding: align left with 1320px container */
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg-section);
}

.science-text h2 {
    margin-bottom: 2rem;
}

.science-img {
    border-top: 1px solid var(--color-border);
}

/* Footer - Grid & Spacing */
footer {
    padding-top: 80px;
    padding-bottom: 60px;
    background: var(--color-text);
    color: var(--color-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3xl);
    /* PREMIUM: Using variable (80px) instead of hardcoded 100px */
    text-align: left;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--color-bg);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Footer Logo Column */
.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 32px;
    border: none;
    outline: none;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    margin-top: var(--space-md);
    /* PREMIUM: 24px instead of non-standard 15px */
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Dark mode divider */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    gap: 100px;
}

.copyright p:last-child {
    grid-column: 4;
    /* Push to end if grid */
    text-align: right;
}

.copyright p:first-child {
    grid-column: 1 / span 3;
}

/* Modal - Clean */
.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out forwards;
}

.modal.show .modal-content {
    animation: modalContentPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

@keyframes modalContentPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Content */
.modal-content {
    background: var(--color-bg);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /* Sharp edges for luxury */
    max-width: 600px;
    padding: 3rem;
}

.modal-hero h2 {
    color: var(--color-text);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    font-weight: 300;
    transition: color var(--transition-normal);
}

.close-modal:hover {
    color: var(--color-text);
}

.close-modal:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Mobile */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;  /* 48px logo + 16px×2 padding */
    }

    header {
        padding: 16px 0;
    }

    header.scrolled {
        padding: 12px 0;
    }

    .logo img,
    .logo a.logo-link img {
        height: 48px;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: var(--space-md) 5%;
        box-shadow: var(--shadow-md);
        z-index: var(--z-dropdown);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: var(--z-header);
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        transition: all var(--transition-normal);
    }

    .nav-social,
    .nav-lang {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        /* PREMIUM: Using variable (32px) instead of 2rem */
    }

    .science-content {
        flex-direction: column;
    }

    .science-img {
        min-height: 400px;
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Vertical stacking */
        gap: var(--space-lg);
        /* PREMIUM: Using variable (32px) instead of hardcoded 35px */
    }

    .copyright {
        grid-template-columns: 1fr;
        gap: 1rem;
        display: flex;
        flex-direction: column-reverse;
        /* Usually better on mobile */
        text-align: center;
    }

    .copyright p:last-child {
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS (GSAP-driven)
   ============================================ */

/* Legacy fade-in kept as fallback if GSAP fails to load */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* GSAP takes over — elements start invisible, GSAP reveals them */
.gsap-animated {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Product card scroll animation (GSAP stagger reveal) */
.product-card {
    will-change: transform;
}

/* Smooth scroll body (Lenis) */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* No-motion class (added by JS when reduced motion detected) */
html.no-motion .fade-in,
html.no-motion section,
html.no-motion header,
html.no-motion footer,
html.no-motion .product-card,
html.no-motion .why-item,
html.no-motion .faq-item,
html.no-motion .footer-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Utilities extracted from inline styles */
.u-margin-right-sm {
    margin-right: 1rem;
}

.u-margin-top-lg {
    margin-top: 4rem;
}


/* FAQ Section - Full Width */
.faq-section {
    width: 100%;
    padding: 80px 0 60px;
    text-align: left;
    background-color: var(--color-bg-section);
    /* Full width BG */
}

.faq-section h2 {
    font-size: 2.5rem;
    /* Decrease title size slightly */
    margin-bottom: 4rem;
    /* Increase spacing between title and first question */
}

.faq-content {
    text-align: left;
    max-width: 750px;
    /* Limit text width 650-750px */
    margin: 0;
    /* Align to container left edge (same as other sections) */
}

.faq-item {
    margin-bottom: 4rem;
    /* Increase spacing between FAQ items (30-40%) */
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    /* Increase visual contrast of question headings */
    font-weight: 500;
}

.faq-item p {
    max-width: 100%;
    /* Let it fill the 750px container */
}



.cart-items-container {
    margin-bottom: 2rem;
}

/* Cart Preview Dropdown */
.cart-wrapper {
    position: relative;
}

.cart-preview {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: var(--color-bg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: var(--z-cart);
    margin-top: 10px;
}

.cart-wrapper:hover .cart-preview,
.cart-preview:hover {
    display: block;
}

.cart-preview-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
    font-weight: 500;
}

.cart-preview-message {
    background: var(--color-success-bg);
    color: var(--color-success);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-preview-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-preview-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-preview-item:last-child {
    border-bottom: none;
}

.cart-preview-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-preview-item-info {
    flex: 1;
}

.cart-preview-item-price {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-preview-item-name {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.cart-preview-item-details {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cart-preview-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-disabled);
    padding: 0.5rem;
    align-self: flex-end;
}

.cart-preview-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border-light);
    font-size: 0.95rem;
}

.cart-preview-buttons {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.cart-preview-buttons .btn {
    flex: 1;
    text-align: center;
    height: 44px;
    line-height: 42px;
}

.cart-preview-buttons .btn-view {
    background: var(--color-bg);
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
}

.cart-preview-buttons .btn-checkout {
    background: var(--color-emerald);
    border: 1px solid var(--color-emerald);
    color: var(--color-bg);
}

.cart-preview-info {
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    border-top: 1px solid var(--color-border-light);
}

.cart-preview-info a {
    text-decoration: underline;
}

.cart-preview-empty {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
}

/* Accessibility & Refactor */
.btn-reset {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.product-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: var(--z-skip);
    transition: top var(--transition-fast);
}

.skip-link:focus-visible {
    top: 0;
}

/* Product Detail Page Styles */
.product-detail-section {
    padding-top: calc(var(--header-height) + 140px);
    padding-bottom: var(--spacing-section);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--color-bg-section);
}

.product-header-block h1 {
    margin-bottom: var(--space-heading-text);
}

.product-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: var(--space-block);
    font-weight: 300;
}

.product-description-block p {
    margin-bottom: var(--space-para);
    line-height: 1.6;
}

.detail-row {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.detail-row h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    color: var(--color-text-light);
}

.ingredients-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-detail-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-bg);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: var(--z-dropdown);
    top: 100%;
    left: 0;
    border: 1px solid var(--color-border);
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--color-text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-section);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Ensure Logo Link inherits minimal style */
.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* =========================================
   Utilities (Golden Standard Implementation)
   ========================================= */

.u-padding-bottom-lg {
    padding-bottom: 40px;
}

.u-padding-vertical-xl {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

.u-margin-top-sm {
    margin-top: 1rem;
}

.u-margin-top-md {
    margin-top: var(--space-heading-text);
    /* 36px */
}

.u-margin-top-lg {
    margin-top: var(--spacing-section);
}

.u-margin-bottom-xl {
    margin-bottom: var(--spacing-section);
}

.u-bg-gray {
    background-color: var(--color-bg-section);
}

.u-text-emphasis {
    font-weight: 500;
    color: var(--color-text);
}

.u-cursor-pointer {
    cursor: pointer;
}

/* List Styling */
.clean-list {
    list-style: none;
    padding-left: 0;
}

.clean-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.clean-list li::before {
    content: "\2713";
    /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-weight: bold;
}

/* --- Auth & Account Styles --- */

/* Error Page (404) */
.error-page-container {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Article Page */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 20px) 20px 60px;
    min-height: 50vh;
}

/* Auth Page */
.section-auth {
    min-height: 60vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-section);
}

.auth-container {
    background: var(--color-bg);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-light);
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-text-disabled);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-normal);
}

.auth-tab.active {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}

.auth-tab:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form.active {
    display: flex;
}

/* Cart Footer */
.cart-footer {
    margin-top: auto;
    border-top: 1px solid var(--color-border-light);
    padding-top: 1.5rem;
    text-align: left;
    /* Aligned Left per user request */
}

.cart-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.cart-footer .btn {
    width: auto;
    min-width: 200px;
}

/* FIXED: Removed orphan CSS properties (lines 1424-1428) - 2026-02-04 */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-disabled);
    margin-bottom: 0.25rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid var(--color-border-light);
    border-radius: 0;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color var(--transition-normal);
}

.form-group input:focus {
    border-bottom-color: var(--color-text);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group a {
    text-decoration: underline;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.auth-footer a {
    text-decoration: underline;
    cursor: pointer;
}

/* Account Page */
.account-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    min-height: 50vh;
    padding-top: calc(var(--header-height) + 40px);
}

.account-nav {
    border-right: 1px solid var(--color-border-light);
    padding-right: 2rem;
}

.account-nav li {
    margin-bottom: 0.5rem;
}

.account-nav a {
    display: block;
    padding: 0.8rem 0;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 1rem;
}

.account-nav a:hover,
.account-nav a.active {
    color: var(--color-text);
    font-weight: 500;
}

.account-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* Mobile Account */
@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .account-nav {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding-bottom: 1rem;
        padding-right: 0;
    }
}

/* Contact Modal Specifics */
.contact-modal-content {
    max-width: 600px;
    /* Wider for form */
    width: 90%;
}

.input-underline {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #E5E5E5;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: transparent;
    border-radius: 0;
    outline: none;
    transition: border-color var(--transition-normal);
    margin-bottom: 1.5rem;
}

.input-underline:focus {
    border-bottom-color: var(--color-text);
}

.input-underline::placeholder {
    color: var(--color-text-disabled);
}

select.input-underline {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1em;
}

textarea.input-underline {
    resize: vertical;
    min-height: 100px;
}

.hidden-field {
    display: none;
}

.file-upload-container {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.consent-checkbox input {
    margin-top: 3px;
}

/* FIXED: Removed orphan CSS properties (lines 1608-1612) - 2026-02-04 */

.account-nav ul {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
}

.account-nav a {
    white-space: nowrap;
}
/* FIXED: Removed extra closing brace - 2026-02-04 */

/* =========================================
   Inner Page Hero Sections (S007 Audit Fix)
   ========================================= */

.section-hero {
    padding: calc(var(--header-height) + 72px) 0 var(--spacing-section) 0;
    background: var(--color-bg);
}

.section-hero h1 {
    margin-bottom: var(--space-heading-text);
}

.section-hero p {
    max-width: 700px;
}

.section-hero-split {
    padding: calc(var(--header-height) + 72px) 0 var(--spacing-section) 0;
    background: var(--color-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.section-hero-split .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
}

.section-hero-split .hero-text-side {
    flex: 1;
}

.section-hero-split .hero-image-side {
    flex: 1;
}

@media (max-width: 1024px) {
    .section-hero-split .container {
        flex-direction: column;
    }
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--space-heading-text);
    align-items: center;
    flex-wrap: wrap;
}
.social-icon {
    color: var(--color-text);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: var(--color-accent);
}

/* Header Social Icons (inside nav-links) */
.nav-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: var(--space-xl);
}

/* Language Switcher */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-link {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s ease;
}
.lang-link:hover {
    color: var(--color-accent);
}
.lang-link.active {
    font-weight: 600;
}
.lang-sep {
    color: var(--color-text-muted);
    font-size: 0.6rem;
    letter-spacing: 0;
}

/* Journal Page Sections */
.section-articles {
    padding: calc(var(--header-height) + 24px) 0 var(--spacing-section) 0;
    background: var(--color-bg);
}

.section-subscribe {
    padding: var(--spacing-section) 0;
    background: var(--color-bg-section);
}

/* History Page Block */
.history-block {
    padding: var(--spacing-section) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.history-block:last-child {
    border-bottom: none;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY (Phase 7 - 2026-02-04)
   ============================================
   Breakpoint Strategy:
   - 1024px: Tablet / small desktop — nav collapses, grids stack
   - 768px:  Mobile — typography scales down, single-column layouts
   ============================================ */

@media (max-width: 1024px) {
    h1 {
        font-size: 38px;
        line-height: 1.3;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;  /* 36px logo + 12px×2 padding */
    }

    header {
        padding: 12px 0;
    }

    header.scrolled {
        padding: 8px 0;
    }

    .logo img,
    .logo a.logo-link img {
        height: 36px;
    }

    .section-hero-split {
        min-height: auto;
    }

    h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    body {
        font-size: 16px;
        line-height: 1.7;
    }

    p {
        font-size: 15px;
    }

    .hero-text {
        font-size: 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Missing utility classes */
.btn-full { width: 100%; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 0.85rem; }
.active-page { font-weight: 600; color: var(--color-emerald); }

/* =========================================
   COLLECTION PAGE (S010 — 2026-03-13)
   ========================================= */

/* Breadcrumbs */
.breadcrumbs {
    padding: calc(var(--header-height) + 32px) var(--spacing-sm) 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
    max-width: 1320px;
    margin: 0 auto;
}

.breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumbs a:hover {
    color: var(--color-text);
}

.breadcrumb-sep {
    margin: 0 8px;
    color: var(--color-accent);
}

.breadcrumb-current {
    color: var(--color-text);
    font-weight: 500;
}

/* Collection Hero */
.collection-hero {
    padding: calc(var(--header-height) + 24px) 0 var(--spacing-section);
    background: var(--color-bg);
}

.collection-hero-split {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--space-block);
}

.collection-hero-text {
    flex: 1;
    min-width: 0;
}

.collection-hero-text h1 {
    margin-bottom: var(--space-heading-text);
}

.collection-hero-text p {
    max-width: 500px;
    color: var(--color-text-light);
}

/* Slider */
.collection-hero-slider {
    flex: 1;
    position: relative;
    min-width: 0;
    max-width: 500px;
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-bg-alt);
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.06));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
}

.slider-price {
    font-weight: 500;
    color: var(--color-accent);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--color-text);
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.slider-arrow-left { left: 12px; }
.slider-arrow-right { right: 12px; }

/* Collection Layout */
.collection-section {
    padding: 0 0 var(--spacing-section);
}

.collection-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.collection-sidebar {
    position: sticky;
    top: 140px;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: 12px;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.filter-options label:hover {
    color: var(--color-text);
}

.filter-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-emerald);
    cursor: pointer;
}

.filter-coming-soon {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.coming-soon-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-left: 4px;
}

/* Collection Grid — 3 columns next to sidebar */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card {
    height: 380px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.collection-card .product-image {
    height: 200px;
    flex-shrink: 0;
}

.collection-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.collection-card .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
}

.collection-card .product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: auto;
    margin-bottom: 8px;
}

.collection-card .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

/* Empty state */
.collection-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--color-text);
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: var(--color-bg-alt);
}

.pagination-btn.active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.pagination-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Collection SEO Block */
.collection-seo {
    padding: var(--spacing-section) 0;
    background: var(--color-bg-alt);
}

.collection-seo h2 {
    margin-bottom: var(--space-heading-text);
}

.collection-seo p {
    max-width: 800px;
    color: var(--color-text-light);
    margin-bottom: var(--space-para);
}

.collection-seo p:last-child {
    margin-bottom: 0;
}

/* Collection Responsive */
@media (max-width: 1024px) {
    .collection-hero-split {
        flex-direction: column;
    }

    .collection-hero-slider {
        max-width: 400px;
        width: 100%;
    }

    .collection-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding-top: calc(var(--header-height) + 60px);
    }

    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .filter-group {
        flex: 1;
        min-width: 140px;
        margin-bottom: 0;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card {
        height: 340px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: auto;
    }

    .collection-sidebar {
        flex-direction: column;
    }
}

/* =========================================
   PDP — Extended Product Detail Pages (S011)
   ========================================= */

/* PDP Hero */
.pdp-hero {
    padding: calc(var(--header-height) + 24px) 0 var(--spacing-section);
    background: var(--color-bg);
}

.pdp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pdp-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.pdp-hero-info h1 {
    margin-bottom: var(--space-heading-text);
}

.pdp-price-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 2rem;
}

.pdp-price-row .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

/* PDP Sections */
.pdp-section {
    padding: var(--spacing-section) 0;
}

.pdp-section h2 {
    margin-bottom: var(--space-heading-text);
}

.pdp-section p {
    max-width: 800px;
    color: var(--color-text-light);
    margin-bottom: var(--space-para);
    line-height: 1.7;
}

.pdp-section p:last-child {
    margin-bottom: 0;
}

.pdp-section-alt {
    background: var(--color-bg-alt);
}

/* PDP Lists */
.pdp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-para) 0;
    max-width: 800px;
}

.pdp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.pdp-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--color-text);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 20px;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* PDP Info Grid */
.pdp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
}

.pdp-info-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
}

.pdp-info-item p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

/* PDP Summary */
.pdp-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
}

.pdp-summary-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 500;
}

.pdp-summary-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

/* PDP Responsive */
@media (max-width: 900px) {
    .pdp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pdp-hero-image img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .pdp-info-grid {
        grid-template-columns: 1fr;
    }

    .pdp-summary {
        grid-template-columns: 1fr;
    }
}