/* --- THE ARTISANAL LUXURY DESIGN SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Fonts */
    --font-brand-serif: 'Playfair Display', serif;
    --font-brand-sans: 'Inter', sans-serif;

    /* FOUNDATION CANVAS */
    --canvas-bg: #faf9f6;
    /* Warm Ivory Linen (Perfect hai, isse mat chhedo) */

    /* 🖋️ TEXT COLOR REFINEMENT (Newspaper black se shifting to Luxury Ink) */
    --ink-primary: #201d19;
    /* Deep Espresso Black (Raw black se soft aur premium lagta hai) */
    --ink-secondary: #6e695f;
    /* Warm Earthy Taupe/Grey (Newsprint grey nahi lagega) */
    --border-fine: #e3ded5;
    /* Ultra soft linen thread color borders ke liye */

    /* 🔥 THE BOUTIQUE SECRET SAUCE (Inspired by your live assets) */
    --accent-primary: #9cb09d;
    /* Exact Sage Green jo image_c6e833.jpg ke button me h */
    --accent-dark: #768a77;
    /* Deep Sage for hovers, important links and focus text */
    --accent-tint: #f0f4f0;
    /* Light pastel background fills, cards, or subtle sections */
    --accent-gold: #c2a67f;
    /* Muted Metallic/Champagne gold for small luxury highlights */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--canvas-bg);
    color: var(--ink-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

button,
a {
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- TOP ANNOUNCEMENT LINE --- */
.announcement-bar {
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    line-height: 1;
    border-bottom: 1px solid var(--ink-primary);
}

/* --- THE SYMMETRICAL EDITORIAL HEADER --- */
.main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Ensures absolute dead centering regardless of element counts */
    align-items: center;
    padding: 20px 4%;
    background-color: var(--canvas-bg);
    border-bottom: 1px solid var(--border-fine);
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-col {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Left Alignments */
.nav-left {
    justify-content: flex-start;
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: var(--ink-secondary);
    position: relative;
    padding: 5px 0;
    transition: color var(--speed-premium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--ink-primary);
    transition: width var(--speed-premium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Center Identity Stack */
.nav-center {
    justify-content: center;
}

.brand-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.logo-circle-container {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid var(--border-fine);
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--speed-premium);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Logo ko center mein rakhne ke liye */
    margin: 0;
    padding: 0;
}

.logo-svg {
    height: 25px;

    width: auto;
    /* Isse width apne aap sahi ratio mein adjust ho jayegi */
    display: block;

    /* ⚠️ IMPORTANT TIP: Agar website ka header BLACK/DARK rang ka hai, 
       toh niche waali line ka comment hata dena (uncomment kar dena) */
    /* filter: invert(1); */
}

/* Right Actions Configuration */
.nav-right {
    justify-content: flex-end;
}

.icon-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: transform var(--speed-premium), color var(--speed-premium);
    color: var(--ink-primary);
}

.icon-action-btn:hover {
    transform: scale(1.04);
    color: var(--ink-secondary);
}

.cart-badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    font-size: 0.55rem;
    font-weight: 500;
    min-width: 14px;
    height: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.menu-toggle-btn {
    display: none;
}

/* --- LEFT-SIDE SLIDE DRAWER UI --- */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 26, 25, 0.4);
    backdrop-filter: blur(2px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--speed-premium);
}

.mobile-drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-navigation-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw;
    max-width: 360px;
    height: 100vh;
    background-color: var(--canvas-bg);
    z-index: 2100;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.03);
    transition: left var(--speed-premium);
}

.mobile-navigation-drawer.is-open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-fine);
    padding-bottom: 15px;
}

.drawer-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-secondary);
}

.close-drawer-btn {
    padding: 5px;
    color: var(--ink-primary);
}

.drawer-links-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.drawer-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--ink-secondary);
    transition: color var(--speed-premium), padding-left var(--speed-premium);
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--ink-primary);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-fine);
    padding-top: 20px;
    font-size: 0.75rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--ink-secondary);
}

/* --- HARDCORE MOBILE RESPONSIVENESS MATRIX --- */
@media (max-width: 868px) {
    .main-header {
        grid-template-columns: 1fr auto 1fr;
        padding: 16px 4%;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle-btn {
        display: flex;
        justify-content: flex-start;
        padding: 6px;
    }

    .brand-name {
        font-size: 1.15rem;
        letter-spacing: 0.2em;
        margin-right: -0.2em;
    }

    .logo-circle-container {
        width: 55px;
        height: 55px;
    }
}

/* Hero-section */
/* --- LUXURY CINEMATIC HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 116px);
    /* Perfect height balancing the navbar space */
    background-color: var(--ink-primary);
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Elegant soft dark layer so text remains highly readable */
.hero-overlay-darkness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(28, 26, 25, 0.2), rgba(28, 26, 25, 0.45));
}

/* Base Layer stays grounded */
.layer-base {
    z-index: 10;
}

/* Product Layer - Initially completely tucked away to the left edge */
.layer-product {
    z-index: 20;
    transform: translateX(-100%);
    /* 2.5 seconds silk transition utilizing high-end cubic bezier */
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    /* Preps GPU for elite performance */
}

/* Trigger class pushed via JS on load */
.hero-section.is-activated .layer-product {
    transform: translateX(0);
    /* Smoothly slides in and locks */
}

/* Typography Editorial Overlay Wrapper */
.hero-content-wrapper {
    position: absolute;
    bottom: 12%;
    left: 8%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;

    /* Initially invisible */
    opacity: 0;
    transform: translateY(30px);
    /* Waits 2.3 seconds for the slide animation to finish before fading in */
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 2.3s;
    will-change: opacity, transform;
}

/* When hero activates, content transitions flawlessly */
.hero-section.is-activated .hero-content-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--canvas-bg);
    margin-bottom: 12px;
    font-weight: 300;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--canvas-bg);
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

/* The Minimalist Premium CTA Button */
.hero-discover-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--canvas-bg);
    padding: 16px 36px;
    border: 1px solid rgba(250, 249, 245, 0.3);
    background-color: rgba(28, 26, 25, 0.2);
    backdrop-filter: blur(4px);
    transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.hero-discover-btn:hover {
    background-color: var(--canvas-bg);
    color: var(--ink-primary);
    border-color: var(--canvas-bg);
    transform: translateY(-2px);
}

/* --- MOBILE TIMINGS AND LAYOUT OPTIMIZATION --- */
@media (max-width: 868px) {
    .hero-section {
        height: calc(100vh - 101px);
        /* Recalibrated to fit responsive header heights */
    }

    .hero-content-wrapper {
        bottom: 8%;
        left: 6%;
        right: 6%;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .hero-discover-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}

/* --- EDITORIAL MINIMAL CATEGORIES LAYOUT --- */

/* Intro Header System */
.category-section-intro {
    text-align: center;
    padding: 100px 4% 60px 4%;
    background-color: var(--canvas-bg);
}

.intro-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-secondary);
    display: block;
    margin-bottom: 12px;
}

.intro-main-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--ink-primary);
    letter-spacing: 0.03em;
}

/* Master Category Grid Mechanics */
.editorial-categories-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4% 120px 4%;
    display: flex;
    flex-direction: column;
    gap: 140px;
    /* Expansive upscale row spacing */
    background-color: var(--canvas-bg);
}

.editorial-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    /* Huge airy column gap */
}

/* Row Alternator Trigger Rule */
.editorial-category-row.row-inverted {
    flex-direction: row-reverse;
    /* Flips placement smoothly on desktop viewports */
}

/* Image Presentation Layer */
.cat-image-wrapper {
    flex: 1;
    max-width: 50%;
    height: 620px;
    /* Editorial portrait container depth */
    overflow: hidden;
    border: 1px solid var(--border-fine);
    background-color: #f5f2eb;
}

.cat-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-interaction zoom effect */
.cat-image-wrapper:hover .cat-display-img {
    transform: scale(1.03);
}

/* Typography Data Layout */
.cat-info-wrapper {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cat-count {
    font-size: 0.65rem;
    color: var(--ink-secondary);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    font-weight: 500;
}

.cat-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--ink-primary);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.cat-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-secondary);
    margin-bottom: 36px;
    font-weight: 300;
}

/* Elite Minimalist Call to Action Handles */
.cat-action-link-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--ink-primary);
    padding: 4px 0 8px 0;
    border-bottom: 1px solid var(--ink-primary);
    transition: color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
}

.cat-action-link-btn:hover {
    color: var(--ink-secondary);
    border-color: var(--border-fine);
    padding-left: 6px;
    /* High-end horizontal micro shift indicator */
}

/* --- ADAPTIVE RESPONSIVENESS (MOBILE BREAKDOWN MATRIX) --- */
@media (max-width: 992px) {
    .cat-image-wrapper {
        height: 480px;
    }

    .cat-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 868px) {
    .category-section-intro {
        padding: 70px 6% 40px 6%;
    }

    .intro-main-heading {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .editorial-categories-container {
        gap: 80px;
        padding-bottom: 80px;
    }

    /* Completely bypasses desktop structures to force perfect layout symmetry on phone screens */
    .editorial-category-row,
    .editorial-category-row.row-inverted {
        flex-direction: column;
        /* Stacks image straight over info content cards */
        gap: 24px;
    }

    .cat-image-wrapper,
    .cat-info-wrapper {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    /* 🔥 FIXED: Height ko 420px se 'auto' kiya taaki container image ke hisab se adjust ho */
    .cat-image-wrapper {
        height: auto;
    }

    /* 🔥 FIXED: Image ko natural scale par laya aur object-fit contain kiya taaki CUT na ho */
    .cat-image-wrapper .cat-display-img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .cat-info-wrapper {
        padding: 0 10px;
    }

    .cat-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .cat-description {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
}

/* --- PREMIUM LOOKBOOK BEST SELLERS SLIDER --- */
.best-sellers-section {
    background-color: var(--canvas-bg);
    padding: 60px 0 120px 0;
    /* Left padding is 0 to let the track touch screen edge on overflow scroll */
    overflow: hidden;
}

.slider-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4% 40px 4%;
    /* Kept safe horizontal margins for headers align alignment */
}

.slider-main-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--ink-primary);
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.slider-arrow-controls {
    display: flex;
    gap: 16px;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-fine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.slider-arrow-btn:hover {
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    border-color: var(--ink-primary);
}

/* Master Scroll Horizontal Window Track */
.product-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 4% 20px 4%;
    /* Right/Left padding preserves luxury alignment on track starts */
    scroll-snap-type: x mandatory;
    /* Native smooth hardware level scroll physics lock */
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Modern Firefox hide scrollbar */
}

/* Hide standard Webkit scroll bars to maintain expensive aesthetic view */
.product-slider-track::-webkit-scrollbar {
    display: none;
}

/* Premium Card Architecture */
.product-card {
    flex: 0 0 22%;
    /* Displays roughly 4 cards clean on standard large screens */
    min-width: 280px;
    scroll-snap-align: start;
    /* Locks perfectly onto viewport start coordinates when scrolled */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prod-image-holder {
    position: relative;
    width: 100%;
    height: 400px;
    /* Sharp clean editorial frame ratio */
    overflow: hidden;
    background-color: #f5f2eb;
    border: 1px solid var(--border-fine);
}

.prod-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slow fashion micro lift on hover */
.product-card:hover .prod-main-img {
    transform: scale(1.04);
}

.prod-status-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--canvas-bg);
    color: var(--ink-primary);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border: 1px solid var(--border-fine);
    font-weight: 500;
}

/* Metadata Text Layers */
.prod-details-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prod-display-name {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-primary);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.prod-display-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* --- ADAPTIVE RESPONSIVE TRACK MODAL CHANGES --- */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 32%;
        /* Fits 3 clean cards on tablets */
    }
}

@media (max-width: 768px) {
    .best-sellers-section {
        padding: 40px 0 80px 0;
    }

    .slider-header-wrapper {
        padding-bottom: 24px;
    }

    .slider-main-heading {
        font-size: 1.7rem;
    }

    .slider-arrow-controls {
        display: none;
        /* Hidden on mobile devices since user naturally uses touch swipes (UX standard) */
    }

    .product-slider-track {
        gap: 16px;
        /* Tighter margins on phone display grids */
    }

    .product-card {
        flex: 0 0 68%;
        /* Keeps partial card preview visible to prompt continuous horizontal swiping */
        min-width: 240px;
    }

    .prod-image-holder {
        height: 320px;
        /* Reduced box height ratio on phone frames */
    }
}

/* --- BRAND CORE VALUES GRID --- */
.brand-values-section {
    background-color: #f5f2eb;
    /* Slightly deeper organic tint to break section monotony */
    padding: 90px 4%;
    border-top: 1px solid var(--border-fine);
    border-bottom: 1px solid var(--border-fine);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.2rem;
    color: var(--ink-primary);
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink-primary);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.value-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* --- THE INNER CIRCLE NEWSLETTER SECTION --- */
.newsletter-section {
    background-color: var(--canvas-bg);
    padding: 120px 4%;
    text-align: center;
}



.newsletter-content-box {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-secondary);
    margin-bottom: 16px;
}

.news-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--ink-primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.news-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Luxury Input Field Form Logic */
.newsletter-form {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--ink-primary);
    padding-bottom: 8px;
}

.news-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink-primary);
    padding: 8px 0;
    font-weight: 300;
}

.news-input::placeholder {
    color: #a09a93;
}

.news-submit-btn {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--ink-primary);
    padding: 12px 24px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
}


.news-submit-btn:hover {
    color: var(--ink-secondary);
    transform: translateX(4px);
}

/* --- THE MASTER EDITORIAL FOOTER --- */
.main-footer {
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    padding: 100px 4% 60px 4%;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Brand column gets double width for visual weight */
    gap: 50px;
}

.brand-brief {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 15%;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0aba4;
    /* Muted contrast on dark backdrop */
    font-weight: 300;
    margin-bottom: 40px;
}

.footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--canvas-bg);
    margin-bottom: 28px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a {
    font-size: 0.82rem;
    color: #b0aba4;
    font-weight: 300;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--canvas-bg);
    padding-left: 4px;
}

/* --- HOVER MATRICES FOR FOOTER RESPONSIVENESS --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 layout matrix on smaller desktop wrappers */
        gap: 60px;
    }

    .brand-brief {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .brand-values-section {
        padding: 60px 6%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        /* Stacks completely into standard single stream */
        gap: 40px;
    }

    .newsletter-section {
        padding: 80px 6%;
    }

    .news-title {
        font-size: 1.9rem;
    }

    .main-footer {
        padding: 60px 6% 40px 6%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Fully linear stacks on touch viewports */
        gap: 40px;
    }

    .footer-brand-name {
        margin-bottom: 12px;
    }

    .footer-tagline {
        margin-bottom: 24px;
    }

    .footer-col-title {
        margin-bottom: 16px;
    }
}

/* --- EXTENDED LUXURY FOOTER ADDITIONS --- */

/* Social Icon Matrix Setup */
.footer-social-icons {
    display: flex;
    gap: 22px;
    margin-top: 10px;
}

.footer-social-icons a {
    color: #b0aba4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sophisticated lift up interaction on social icons */
.footer-social-icons a:hover {
    color: var(--canvas-bg);
    transform: translateY(-3px);
}

/* Absolute Bottom Row Isolation Strip */
.footer-bottom-bar {
    max-width: 1300px;
    margin: 80px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2e2b29;
    /* Faint clean separator line inside dark canvas */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright,
.footer-agency-credits {
    font-size: 0.72rem;
    color: #8c867e;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Signature Brand Developer Link Profile Link Accentuation */
.developer-link {
    color: var(--canvas-bg) !important;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-bottom: 1px dashed rgba(250, 249, 245, 0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.developer-link:hover {
    color: #b0aba4 !important;
    border-color: transparent;
}

/* --- MOBILE MATRIX CALIBRATIONS FOR BOTTOM STRIP --- */
@media (max-width: 768px) {
    .brand-brief {
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-bottom-bar {
        margin-top: 50px;
        flex-direction: column;
        /* Stacks copyright cleanly vertically stacked on center phone screens */
        text-align: center;
        gap: 12px;
    }
}

/* ==========================================================================
   MASTER PRODUCT DETAIL PAGE WORKSPACE (Clean & Fixed)
   ========================================================================== */

/* 1. DESKTOP BASELINE LAYOUT */
.product-detail-container {
    max-width: 1300px;
    margin: 40px auto 0 auto;
    padding: 60px 4% 100px 4%;
    display: flex;
    gap: 6%;
    background-color: var(--canvas-bg);
}

/* LEFT COL: GALLERY SYSTEM */
.product-gallery-wing {
    flex: 1.2;
    display: flex;
    gap: 20px;
    height: 700px;
}

.thumbnail-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90px;
}

.thumb-img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    border: 1px solid var(--border-fine);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: var(--ink-primary);
}

.main-stage-frame {
    flex: 1;
    height: 100%;
    border: 1px solid var(--border-fine);
    overflow: hidden;
    background-color: #f5f2eb;
}

#stage-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* RIGHT COL: CONVERSION CONTENT PANEL */
.product-info-panel-wing {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel-brand-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-secondary);
    margin-bottom: 12px;
}

.panel-product-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--ink-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.panel-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink-primary);
}

.tax-disclaimer {
    font-size: 0.75rem;
    color: #a09a93;
    font-weight: 300;
}

.fine-separator {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-fine);
    margin-bottom: 24px;
}

.panel-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ink-secondary);
    font-weight: 300;
    margin-bottom: 40px;
}

/* SIZE CHIPS DESIGN (DESKTOP) */
.size-selector-zone {
    width: 100%;
    margin-bottom: 40px;
}

.size-zone-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
}

.selector-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.size-guide-trigger-btn {
    font-size: 0.75rem;
    color: var(--ink-secondary);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.size-options-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-chip-btn {
    min-width: 54px;
    height: 44px;
    background-color: transparent;
    border: 1px solid var(--border-fine);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--ink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.size-chip-btn:hover,
.size-chip-btn.active {
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    border-color: var(--ink-primary);
}

/* BUTTONS STANDARD ACTION DESIGN (DESKTOP) */
.purchase-action-system {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.purchase-action-system button {
    flex: 1;
    height: 56px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--ink-primary);
    color: var(--ink-primary);
}

.btn-outline-dark:hover {
    background-color: rgba(28, 26, 25, 0.04);
}

.btn-solid-dark {
    background-color: var(--ink-primary);
    border: 1px solid var(--ink-primary);
    color: var(--canvas-bg);
}

.btn-solid-dark:hover {
    background-color: #2e2b29;
}

/* ACCORDION SYSTEM WITH DOWN-ARROW LOGIC (UNIVERSAL) */
.specs-accordion-block {
    width: 100%;
    border-top: 1px solid var(--border-fine);
}

.specs-accordion-block details {
    border-bottom: 1px solid var(--border-fine);
    padding: 16px 0;
}

.specs-accordion-block summary {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--ink-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Down Arrow Set */
.specs-accordion-block summary::after {
    content: '↓';
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-secondary);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Open hone pr arrow gayab */
.specs-accordion-block details[open] summary::after {
    content: '';
    opacity: 0;
}

.specs-accordion-block p {
    font-size: 0.85rem;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin-top: 12px;
    font-weight: 300;
}

.recommendations-carousel-section {
    border-top: 1px solid var(--border-fine);
    padding-top: 80px;
}


/* ==========================================================================
   2. ISOLATED RESPONSIVE BREAKPOINTS (NO DESKTOP LEAKS)
   ========================================================================== */

@media (max-width: 992px) {
    .product-detail-container {
        flex-direction: column;
        gap: 40px;
        padding-top: 20px;
    }

    .product-gallery-wing {
        height: 540px;
    }
}

@media (max-width: 600px) {
    .product-gallery-wing {
        flex-direction: column-reverse;
        height: auto;
    }

    .main-stage-frame {
        height: 400px;
    }

    .thumbnail-stack {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .thumb-img {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .panel-product-title {
        font-size: 2rem;
    }

    /* PREMIUM MOBILE BUTTONS DEPTH MATRICES */
    .purchase-action-system {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 10px;
    }

    .purchase-action-system button {
        height: 58px;
        border-radius: 4px;
        font-size: 0.85rem;
        letter-spacing: 0.18em;
    }

    .btn-outline-dark {
        background-color: #faf9f5 !important;
        border: 1.5px solid var(--ink-primary) !important;
        color: var(--ink-primary) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .btn-solid-dark {
        background-color: var(--ink-primary) !important;
        border: none !important;
        color: var(--canvas-bg) !important;
        box-shadow: 0 4px 16px rgba(28, 26, 25, 0.25);
    }

    .purchase-action-system button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}


/* Fixes */

.panel-product-title,
.slider-main-heading,
.section-main-title {
    font-family: var(--font-brand-serif);
    font-weight: 400;
    color: var(--ink-primary);
    text-transform: uppercase;

    /* Logo spacing replication */
    letter-spacing: 0.22em;
    /* Gives that exact majestic, wide luxury look */
    line-height: 1.3;
    text-align: left;
}

.panel-product-title {
    font-size: 2.2rem;
    /* Balanced size for high-end editorial feel */
    margin-bottom: 18px;
}

/* --- PRICE & SUBDATA (Clean & Structured like the left side of the logo) --- */
.current-price {
    font-family: var(--font-brand-sans);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink-primary);
}

.panel-brand-tag {
    font-family: var(--font-brand-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* Stretched tracking */
    color: var(--ink-secondary);
    margin-bottom: 8px;
}

/* --- NAVIGATION & BUTTON LINKS --- */
.nav-link-item,
.selector-label,
.specs-accordion-block summary {
    font-family: var(--font-brand-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--ink-primary);
}

/* --- BODY COPY (Elegant, legible, and organic like the thread loop) --- */
.panel-description,
.specs-accordion-block p {
    font-family: var(--font-brand-serif);
    font-style: italic;
    /* Matches the literary/poetic quotes in their feed */
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-secondary);
    font-weight: 400;
}

/* --- BUTTONS: LINEAR DESIGN TWIST (Logo Grid Concept) --- */
.purchase-action-system button {
    font-family: var(--font-brand-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 0px !important;
    /* Sharp angles match the logo's loom lines */
    height: 56px;
    transition: all 0.3s ease;
}


/* ==========================================================================
   OUR STORY / ABOUT US EDITORIAL ARCHITECTURE
   ========================================================================== */

.about-page-workspace {
    max-width: 1200px;
    margin: 80px auto 0 auto;
    /* Keeps clear of the navbar layout */
    padding: 60px 4% 120px 4%;
    background-color: var(--canvas-bg);
    box-sizing: border-box;
}

/* 1. HERO PHILOSOPHY ZONE */
.about-hero-editorial-zone {
    padding: 60px 0;
    max-width: 900px;
}

.editorial-micro-tag {
    font-family: var(--font-brand-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--ink-secondary);
    display: block;
    margin-bottom: 24px;
}

.about-hero-bold-statement {
    font-family: var(--font-brand-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--ink-primary);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.editorial-divider {
    border: none;
    border-top: 1px solid var(--border-fine);
    margin: 20px 0 60px 0;
}

/* 2. ASYMMETRIC SPLIT GRID */
.about-split-grid-block {
    display: flex;
    gap: 8%;
    margin-bottom: 100px;
    align-items: flex-start;
}

.grid-left-meta-title {
    flex: 1;
}

.grid-left-meta-title h2 {
    font-family: var(--font-brand-serif);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
    font-weight: 400;
    color: var(--ink-primary);
}

.grid-right-narrative-content {
    flex: 2;
}

.story-body-main-p {
    font-family: var(--font-brand-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-secondary);
    font-weight: 300;
    margin-bottom: 24px;
}

/* 3. CORE MANIFESTO BOX BLOCK */
.about-manifesto-banner-zone {
    width: 100%;
    border: 1px solid var(--border-fine);
    background-color: rgba(25, 25, 25, 0.02);
    /* Very faint background tint for grounding */
    padding: 60px 8%;
    margin-bottom: 100px;
    box-sizing: border-box;
}

.manifesto-anchor-label {
    font-family: var(--font-brand-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-secondary);
    display: block;
    margin-bottom: 30px;
}

.manifesto-core-phrase {
    font-family: var(--font-brand-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink-secondary);
    margin-bottom: 16px;
}

.manifesto-highlight-punchline {
    font-family: var(--font-brand-serif);
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-primary);
    line-height: 1.2;
    margin-bottom: 30px;
}

.manifesto-sub-footer-text {
    font-family: var(--font-brand-sans);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: var(--ink-primary);
    font-weight: 400;
}

/* 4. THE BRAND QUESTION SPLIT SYSTEM */
.about-question-split-container {
    display: flex;
    gap: 8%;
    align-items: flex-start;
}

.question-identity-card {
    flex: 1.2;
    border-left: 2px solid var(--ink-primary);
    /* Bold architectural line matching the logo grid */
    padding-left: 30px;
}

.brand-signature-callout {
    font-family: var(--font-brand-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-secondary);
    display: block;
    margin-bottom: 14px;
}

.the-daily-question {
    font-family: var(--font-brand-serif);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink-primary);
    margin-bottom: 16px;
}

.question-action-clause {
    font-family: var(--font-brand-sans);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--ink-secondary);
    text-transform: uppercase;
    font-weight: 500;
}

.question-context-narrative {
    flex: 1.8;
}

.story-body-italic-p {
    font-family: var(--font-brand-serif);
    font-style: italic;
    /* Matches their storytelling loop signature */
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--ink-primary);
    margin-bottom: 30px;
}

/* RESPONSIVE RESPONSIVENESS MATRIX */
@media (max-width: 900px) {
    .about-page-workspace {
        padding-top: 30px;
    }

    .about-hero-bold-statement {
        font-size: 2.2rem;
    }

    .about-split-grid-block,
    .about-question-split-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-manifesto-banner-zone {
        padding: 40px 6%;
    }

    .manifesto-highlight-punchline {
        font-size: 1.8rem;
    }

    .the-daily-question {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   SHIPPING & RETURNS EDITORIAL LAYOUT (STUDIO CONCRETE COMPATIBLE)
   ========================================================================== */

.policy-page-workspace {
    max-width: 1100px;
    margin: 90px auto 0 auto;
    padding: 40px 4% 120px 4%;
    box-sizing: border-box;
}

.policy-hero-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.policy-main-title {
    font-family: var(--font-brand-serif);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-primary);
    margin: 16px 0;
}

.policy-intro-text {
    font-family: var(--font-brand-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-secondary);
    font-weight: 300;
}

.policy-grid-layout {
    width: 100%;
    margin-top: 40px;
}

.policy-row {
    display: flex;
    gap: 6%;
    padding: 40px 0;
    align-items: flex-start;
}

.policy-left-col {
    flex: 1;
}

.policy-left-col h2 {
    font-family: var(--font-brand-serif);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-primary);
}

.policy-right-col {
    flex: 2;
}

/* Timeline Sub Grid Cards */
.timeline-card-sub-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.t-card {
    border: 1px solid var(--border-fine);
    padding: 20px;
    background: rgba(0, 0, 0, 0.01);
}

.t-card h4 {
    font-family: var(--font-brand-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: var(--ink-primary);
}

.t-card p {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* Bullet list and textures */
.strong-manifesto-text {
    font-family: var(--font-brand-serif);
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--ink-primary);
    margin-bottom: 20px;
}

.policy-bullets-list {
    padding-left: 20px;
}

.policy-bullets-list li {
    font-family: var(--font-brand-sans);
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--ink-secondary);
    font-weight: 300;
    margin-bottom: 12px;
}

.critical-notes strong {
    color: var(--ink-primary);
}

.inner-fine-line {
    border: none;
    border-top: 1px solid var(--border-fine);
}

.alert-badge {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-brand-sans);
    font-size: 0.65rem;
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact bottom block banner */
.policy-footer-contact-banner {
    margin-top: 80px;
    border: 1px solid var(--ink-primary);
    padding: 50px 6%;
    text-align: center;
}

.policy-footer-contact-banner h3 {
    font-family: var(--font-brand-serif);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.policy-footer-contact-banner p {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    color: var(--ink-secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-action-triggers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.policy-btn-dark,
.policy-btn-outline {
    padding: 16px 30px;
    font-family: var(--font-brand-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-btn-dark {
    background-color: var(--ink-primary);
    color: var(--canvas-bg);
}

.policy-btn-outline {
    border: 1px solid var(--ink-primary);
    color: var(--ink-primary);
}

@media (max-width: 768px) {
    .policy-row {
        flex-direction: column;
        gap: 16px;
    }

    .policy-main-title {
        font-size: 2.2rem;
    }

    .contact-action-triggers {
        flex-direction: column;
        width: 100%;
    }

    .policy-btn-dark,
    .policy-btn-outline {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}


/* ==========================================================================
   SIZE GUIDE EDITORIAL ARCHITECTURE (STUDIO CONCRETE COMPATIBLE)
   ========================================================================== */

.size-guide-workspace {
    max-width: 1000px;
    margin: 90px auto 0 auto;
    padding: 40px 4% 120px 4%;
    box-sizing: border-box;
}

.size-hero-header {
    max-width: 750px;
    margin-bottom: 30px;
}

.size-main-title {
    font-family: var(--font-brand-serif);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-primary);
    margin: 16px 0;
}

.size-intro-text {
    font-family: var(--font-brand-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* RESPONSIVE TABLE CONFIGURATION */
.size-chart-table-container {
    width: 100%;
    overflow-x: auto;
    /* Mobile pr scrollable matrix provide krega bina design tode */
    margin: 40px 0 80px 0;
    border: 1px solid var(--border-fine);
}

.urban-editorial-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background: rgba(0, 0, 0, 0.01);
}

.urban-editorial-table th {
    font-family: var(--font-brand-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    background-color: rgba(28, 26, 25, 0.04);
    color: var(--ink-primary);
    padding: 20px;
    border-bottom: 1px solid var(--border-fine);
}

.urban-editorial-table td {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    color: var(--ink-secondary);
    padding: 18px;
    font-weight: 300;
    border-bottom: 1px solid var(--border-fine);
}

.urban-editorial-table tr:last-child td {
    border-bottom: none;
    /* Last row separation remove */
}

.bold-size-cell {
    font-family: var(--font-brand-sans) !important;
    font-weight: 600 !important;
    color: var(--ink-primary) !important;
    background-color: rgba(28, 26, 25, 0.02);
}

/* HOW TO MEASURE ZONE */
.how-to-measure-zone {
    display: flex;
    gap: 8%;
    padding-top: 40px;
    border-top: 1px solid var(--border-fine);
}

.measure-left-title {
    flex: 1;
}

.measure-left-title h2 {
    font-family: var(--font-brand-serif);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-primary);
}

.measure-right-instructions {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.instruction-row strong {
    font-family: var(--font-brand-sans);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-primary);
    display: block;
    margin-bottom: 6px;
}

.instruction-row p {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* BOTTOM NOTES */
.size-footer-note {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid var(--border-fine);
    padding-top: 30px;
}

.size-footer-note p {
    font-family: var(--font-brand-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink-primary);
}

.size-footer-note a {
    color: var(--ink-primary);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .size-main-title {
        font-size: 2.2rem;
    }

    .how-to-measure-zone {
        flex-direction: column;
        gap: 32px;
    }
}

/* ==========================================================================
   OUR WORLD SECTION EDITORIAL LAYOUT
   ========================================================================== */

.world-page-workspace {
    max-width: 1100px;
    margin: 90px auto 0 auto;
    padding: 40px 4% 120px 4%;
    box-sizing: border-box;
}

.world-hero-header {
    max-width: 850px;
    margin-bottom: 50px;
}

.world-main-title {
    font-family: var(--font-brand-serif);
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-primary);
    margin: 16px 0;
}

.world-intro-paragraph {
    font-family: var(--font-brand-serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--ink-secondary);
}

/* EDITORIAL GRID SECTIONS */
.world-editorial-section {
    display: flex;
    gap: 8%;
    padding: 80px 0;
    align-items: flex-start;
    scroll-margin-top: 100px;
    /* Prevents navbar overlap when jumping from footer links */
}

.world-meta-col {
    flex: 1;
}

.section-numeric {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-primary);
    display: block;
    margin-bottom: 10px;
}

.world-meta-col h2 {
    font-family: var(--font-brand-serif);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: var(--ink-primary);
    line-height: 1.3;
}

.world-content-col {
    flex: 1.8;
}

.world-highlight-text {
    font-family: var(--font-brand-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-primary);
    font-weight: 400;
    margin-bottom: 20px;
}

.world-body-text {
    font-family: var(--font-brand-sans);
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* MINI JOURNAL GRID */
.journal-preview-grid {
    display: flex;
    gap: 20px;
}

.journal-card-stub {
    flex: 1;
    border: 1px solid var(--border-fine);
    padding: 30px 24px;
    background: rgba(0, 0, 0, 0.01);
}

.journal-date {
    font-family: var(--font-brand-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-secondary);
    display: block;
    margin-bottom: 12px;
}

.journal-card-stub h4 {
    font-family: var(--font-brand-serif);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink-primary);
    margin-bottom: 20px;
}

.read-link-btn {
    font-family: var(--font-brand-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-primary);
    font-weight: 500;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .world-editorial-section {
        flex-direction: column;
        gap: 24px;
        padding: 50px 0;
    }

    .world-main-title {
        font-size: 2.4rem;
    }

    .journal-preview-grid {
        flex-direction: column;
    }
}



/* ==========================================================================
   COLLECTIONS ARCHITECTURE ENGINE (STUDIO CONCRETE COMPATIBLE)
   ========================================================================== */

.collections-workspace {
    max-width: 1300px;
    margin: 90px auto 0 auto;
    padding: 40px 4% 120px 4%;
    box-sizing: border-box;
}

.collections-hero {
    max-width: 700px;
    margin-bottom: 50px;
}

.collections-main-title {
    font-family: var(--font-brand-serif);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-primary);
    margin: 12px 0;
}

.collections-tagline {
    font-family: var(--font-brand-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-secondary);
    font-weight: 300;
}

/* HORIZONTAL FILTER CHIPS BAR */
.filter-navigation-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-fine);
    margin-bottom: 50px;
}

/* Hide scrollbars but keep swipe utility active */
.filter-navigation-bar::-webkit-scrollbar {
    display: none;
}

.filter-navigation-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-chip {
    background: transparent;
    border: 1px solid var(--border-fine);
    padding: 10px 24px;
    font-family: var(--font-brand-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--ink-secondary);
}

.filter-chip:hover {
    border-color: var(--ink-primary);
    color: var(--ink-primary);
}

.filter-chip.active {
    background-color: var(--ink-primary);
    border-color: var(--ink-primary);
    color: var(--canvas-bg);
}

/* GRID CONTROLLER */
.products-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop pe clear 4-column alignment */
    gap: 40px 24px;
}

/* HIGH-END PRODUCT CARD MECHANICS */
.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card-media-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Standard editorial aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    margin-bottom: 16px;
}

.product-card-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

/* Secondary image switch mechanism on hover */
.product-card-media-box .img-secondary {
    opacity: 0;
}

.product-card:hover .img-primary {
    opacity: 0;
    transform: scale(1.03);
}

.product-card:hover .img-secondary {
    opacity: 1;
    transform: scale(1.03);
}

/* Micro badges like "Best Seller" or "New In" */
.prod-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background-color: var(--canvas-bg);
    color: var(--ink-primary);
    font-family: var(--font-brand-sans);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border: 1px solid var(--border-fine);
}

/* META INFORMATION DETAILS */
.product-card-meta-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-item-title {
    font-family: var(--font-brand-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-primary);
    margin: 0;
    letter-spacing: 0.02em;
}

.product-item-price-row {
    font-family: var(--font-brand-sans);
    font-size: 0.9rem;
    color: var(--ink-secondary);
    font-weight: 300;
}

.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    font-family: var(--font-brand-serif);
    font-style: italic;
    color: var(--ink-secondary);
}

/* MOBILE RESPONSIVE MATRICES */
@media (max-width: 1024px) {
    .products-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE FIX (SINGLE COLUMN EDITORIAL LAYOUT)
   ========================================================================== */

@media (max-width: 768px) {
    .collections-workspace {
        padding: 24px 5% 80px 5%;
        /* Mobile ke liye padding adjustments */
    }

    .collections-main-title {
        font-size: 2.4rem;
        letter-spacing: 0.05em;
    }

    .collections-tagline {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    /* FORCE SINGLE COLUMN: No layout breaking allowed */
    .products-grid-container {
        grid-template-columns: 1fr !important;
        /* Ek row me ek hi card aayega */
        gap: 40px;
        /* Do vertically stacked cards ke beech ka smooth gap */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* Safe container lock */
    }

    /* CARD CONTAINER LOCK */
    .product-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* MEDIA BOX ASPECT CONTROL */
    .product-card-media-box {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 3 / 4;
        /* Card ki premium editorial shaping bani rahegi */
        position: relative;
        overflow: hidden;
    }

    /* IMAGE CONTAINMENT PROTECTION */
    .product-card-media-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* TEXT ADJUSTMENTS FOR SINGLE COLUMN VIEW */
    .product-item-title {
        font-size: 1.05rem;
        /* Screen space zyada hai toh text thoda bada aur clear dikhega */
        letter-spacing: 0.03em;
        margin-top: 4px;
    }

    .product-item-price-row {
        font-size: 0.95rem;
    }
}

/* Founder Section Layout */
.about-founder-editorial-zone {
    padding: 20px 5% 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Image Block Styling */
.founder-image-wrapper {
    width: 100%;
    position: sticky;
    top: 40px;
}

.founder-editorial-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    /* Minimal smooth edges */
}

/* Typography & Flow */
.founder-narrative-content {
    display: flex;
    flex-direction: column;
}

.founder-greeting-heading {
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
    /* Matching image_82535b style */
    font-size: 2.2rem;
    line-height: 1.4;
    color: #111;
    margin: 15px 0 30px 0;
    font-weight: 400;
}

.founder-story-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-body-italic-p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
    border-left: 2px solid #111;
    padding-left: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .founder-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-image-wrapper {
        position: static;
    }

    .founder-greeting-heading {
        font-size: 1.8rem;
    }
}

/* Brand Values Section - Earthy Light Olive Theme */
.brand-values-section {
    background-color: #e9ebe0;
    /* 🔥 Premium Muted Light Olive / Sage Color */
    padding: 80px 5%;
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Icon / Diamond Styling */
.value-icon {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 25px;
}

/* Heading Styling (Matching image_82d9e4 Serif Font) */
.value-title {
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

/* Body Text Styling */
.value-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #333;
    font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .brand-values-section {
        padding: 60px 6%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        /* Mobile par ek ke neeche ek aayega */
        gap: 40px;
    }

    .value-icon {
        margin-bottom: 15px;
    }
}

/* --- Brand Accent Color Palette From Image --- */
:root {
    --brand-olive: #a4b49c;
    /* 🔥 Exact light olive tint from image_8cda6e */
    --brand-olive-dark: #8e9e86;
    /* Slightly darker for hover interactions */
    --text-dark: #222222;
    --border-light: #e5e5e5;
}

/* Base Adjustments to kill the "Journal" vibe */
.panel-collection-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #777;
    display: block;
    margin-bottom: 8px;
}

.panel-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Size Options Accent Overrides */
/* Note: Make sure your JS adds an '.active' or '.selected' class to the active size button */
.size-options-wrapper button.selected,
.size-options-wrapper button.active {
    background-color: var(--brand-olive) !important;
    border-color: var(--brand-olive) !important;
    color: #ffffff !important;
}

/* --- Premium Buttons Styling --- */
.purchase-action-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.purchase-action-system button {
    padding: 16px 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add to Bag: Elegant Outline style using brand color */
.action-btn-bag {
    background-color: transparent;
    border: 1.5px solid var(--brand-olive);
    color: var(--brand-olive);
}

.action-btn-bag:hover {
    background-color: rgba(164, 180, 156, 0.1);
}

/* Buy It Now: Full solid brand color */
.action-btn-checkout {
    background-color: var(--brand-olive);
    border: none;
    color: #ffffff;
}

.action-btn-checkout:hover {
    background-color: var(--brand-olive-dark);
}

/* --- Clean Modern Accordions (No More Default Ugly Elements) --- */
.specs-accordion-block {
    margin-top: 35px;
    border-top: 1px solid var(--border-light);
}

.premium-accordion-item {
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.accordion-trigger {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    /* Removes standard browser arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom indicator instead of standard black triangle */
.accordion-trigger::-webkit-details-marker {
    display: none;
    /* Safari fix */
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.premium-accordion-item[open] .accordion-trigger::after {
    content: '—';
}

/* Content area styling */
.accordion-inner-content {
    padding-top: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.accordion-inner-content p {
    margin: 0 0 8px 0;
}

.wash-care-intro {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 12px !important;
}

.wash-care-list {
    margin: 0;
    padding-left: 18px;
    line-height: 1.8;
}

/* 🔥 FIX: Size buttons par hover karne par black color hatane ke liye */
.size-options-wrapper button {
    transition: all 0.2s ease;
    /* Hover ko smooth banane ke liye */
}

/* Jab user normal button par mouse le jaye (Not Selected) */
.size-options-wrapper button:hover {
    border-color: var(--brand-olive) !important;
    color: var(--brand-olive) !important;
    background-color: rgba(164, 180, 156, 0.1) !important;
    /* Light olive tint background */
}

/* Jab button already SELECTED ho, tab hover karne par black na ho, thoda dark green hi rahe */
.size-options-wrapper button.selected:hover,
.size-options-wrapper button.active:hover {
    background-color: var(--brand-olive-dark) !important;
    border-color: var(--brand-olive-dark) !important;
    color: #ffffff !important;
}

/* 🔥 FIX: Accordion ke andar ka saara text italic se normal karne ke liye */
.accordion-inner-content,
.accordion-inner-content p,
.accordion-inner-content span,
.accordion-inner-content strong,
.panel-description {
    font-style: normal !important;
    /* Ye har tarah ke italic text ko zabardasti normal kar dega */
}

/* --- Global Accent Palette --- */
:root {
    --brand-olive: #a4b49c;
    --brand-olive-dark: #8e9e86;
    --text-charcoal: #232623;
    /* Pure black se badal kar premium charcoal */
    --border-light: #eeeeee;
}

/* 1. Text Colors Code - Chained with Parent to beat old styles */
.product-info-panel-wing .panel-product-title,
.product-info-panel-wing .current-price,
.product-info-panel-wing .accordion-trigger {
    color: var(--text-charcoal);
}

/* 2. Top Collection Tag - Muted Olive Theme */
.product-info-panel-wing .panel-collection-tag {
    color: var(--brand-olive);
    font-weight: 600;
    font-size: 0.78rem;
}

/* 3. Size Buttons Hover Override (No !important) */
.product-info-panel-wing .size-options-wrapper button {
    transition: all 0.2s ease;
}

.product-info-panel-wing .size-options-wrapper button:hover {
    border-color: var(--brand-olive);
    color: var(--brand-olive);
    background-color: rgba(164, 180, 156, 0.1);
}

/* Selected Size State Override */
.product-info-panel-wing .size-options-wrapper button.selected,
.product-info-panel-wing .size-options-wrapper button.active {
    background-color: var(--brand-olive);
    border-color: var(--brand-olive);
    color: #ffffff;
}

.product-info-panel-wing .size-options-wrapper button.selected:hover,
.product-info-panel-wing .size-options-wrapper button.active:hover {
    background-color: var(--brand-olive-dark);
    border-color: var(--brand-olive-dark);
    color: #ffffff;
}

/* 4. Accordion Hover Interactions */
.product-info-panel-wing .premium-accordion-item:hover .accordion-trigger,
.product-info-panel-wing .premium-accordion-item:hover .accordion-trigger::after {
    color: var(--brand-olive);
}

/* 5. Clean Strict Policy Badge */
.product-info-panel-wing .premium-accordion-item .strict-policy-badge {
    background-color: #5d6659;
    color: #ffffff;
    border-radius: 1px;
    padding: 3px 8px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* 🟢 NEW ARRIVALS SPACING FIX */
.new-arrivals-section {
    margin-top: 180px;
    /* Top banner se perfect luxury gap */
    margin-bottom: 80px;
    /* Niche waale section ke saath proper balance */
    padding: 0 40px;
    /* Side ki lining ko maintain rakhne ke liye */
    box-sizing: border-box;
}

/* Agar screen chhoti ho (Mobile ke liye responsive check) */
@media (max-width: 768px) {
    .new-arrivals-section {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

/* 🟢 NEW ARRIVALS & BEST SELLERS STRUCTURAL SYNC */

/* 1. New Arrivals ka custom side padding reset karo aur sirf vertical margins rakho */
.new-arrivals-section {
    margin-top: 90px;
    /* Banner se clean luxury gap */
    margin-bottom: 50px;
    /* Best sellers section se gap */
    padding: 0;
    /* ❌ Side padding hata di taaki ye best-sellers ke layout ko follow kare */
}

/* 2. Dono sections ko group karo taaki layout and width properties hamesha identical rahein */
.new-arrivals-section,
.best-sellers-section {
    /* Agar aapke best-sellers par koi alag se max-width ya padding hai, 
       toh dono sections ab use perfectly share karenge */
    width: 100%;
    box-sizing: border-box;
}

/* 3. Slider Header Wrapper Sync */
.new-arrivals-section .slider-header-wrapper,
.best-sellers-section .slider-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Headings aur arrows ko base-aligned rakhne ke liye */
    width: 100%;
}

.intro-sub {
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ==========================================================================
   🎨 BOUTIQUE COLOR OVERRIDES (Clean Cascade - Paste at the very bottom)
   ========================================================================== */

/* Announcement Bar Colors */
.announcement-bar {
    background-color: var(--accent-tint);
    color: var(--accent-dark);
    border-bottom: 1px solid var(--border-fine);
}

/* Navbar Base Colors */
.main-header {
    background-color: var(--canvas-bg);
    border-bottom: 1px solid var(--border-fine);
    color: var(--ink-primary);
}

/* Desktop Links Colors */
.nav-link {
    color: var(--ink-secondary);
}

.nav-link:hover {
    color: var(--accent-dark);
}

.nav-link.active {
    color: var(--ink-primary);
}

.nav-link.active::after {
    background-color: var(--accent-primary);
}

/* Icons & Hamburger Colors */
.menu-toggle-btn {
    color: var(--ink-primary);
}

.menu-toggle-btn:hover,
.cart-toggle-handle:hover {
    color: var(--accent-dark);
}

.cart-badge-dot {
    background-color: var(--accent-dark);
    color: #ffffff;
}

/* Mobile Navigation Drawer Colors */
.mobile-navigation-drawer {
    background-color: var(--canvas-bg);
}

.drawer-header {
    border-bottom: 1px solid var(--border-fine);
}

.drawer-title {
    color: var(--accent-gold);
}

.close-drawer-btn:hover {
    color: var(--accent-dark);
}

/* Mobile Drawer Links Colors */
.drawer-link {
    color: var(--ink-primary);
}

.drawer-link:hover {
    color: var(--accent-dark);
    background-color: var(--accent-tint);
}

.drawer-link.active {
    color: var(--accent-dark);
    background-color: var(--accent-tint);
    border-left: 3px solid var(--accent-primary);
}

/* Drawer Footer Colors */
.drawer-footer {
    border-top: 1px solid var(--border-fine);
    background-color: var(--accent-tint);
}

.drawer-footer p {
    color: var(--ink-secondary);
}

/* ==========================================================================
   🛍️ PRODUCT SLIDER SECTIONS COLOR UPGRADE
   ========================================================================== */

/* Main Headings Upgrade (Soft Luxury Espresso Ink) */
.slider-main-heading {
    color: var(--ink-primary);
}

/* Slider Arrow Controls - Rest State */
.slider-arrow-btn {
    color: var(--ink-secondary);
    border-color: var(--border-fine);
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slider Arrow Controls - Hover State (Boutique Sage Green Fade) */
.slider-arrow-btn:hover {
    color: var(--accent-dark);
    background-color: var(--accent-tint);
    border-color: var(--accent-primary);
}

/* Inline Loading Text Override */
/* (Yahan !important zaroori hai kyunki HTML me inline 'color: #888' likha hua hai) */
.product-slider-track>div {
    color: var(--ink-secondary) !important;
}

/* ==========================================================================
   🏷️ EDITORIAL CATEGORIES SECTION COLOR UPGRADE (Bottom Overrides)
   ========================================================================== */

/* Main Intro Heading (Deep Espresso Ink) */
.intro-main-heading {
    color: var(--ink-primary);
}

/* Category Serial Numbers (Matching with your Golden Intro) */
.cat-count {
    color: var(--accent-gold);
}

/* Category Title & Descriptions */
.cat-title {
    color: var(--ink-primary);
}

.cat-description {
    color: var(--ink-secondary);
}

/* Explore/Action Buttons - Rest State */
.cat-action-link-btn {
    color: var(--ink-primary);
    border-color: var(--border-fine);
    background-color: transparent;
    /* Clean transparent canvas */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Explore/Action Buttons - Hover State (Luxury Sage Green Fill Shift) */
.cat-action-link-btn:hover {
    color: #ffffff;
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ==========================================================================
   📱 MOBILE TAP HIGHLIGHT REMOVAL (Premium Feel Fix)
   ========================================================================== */

/* 1. Mobile par click karne par aane wala ganda blue overlay block karne ke liye */
* {
    -webkit-tap-highlight-color: transparent;
}

/* 2. Click karne ke baad jo default sharp blue outline/border reh jati hai, use hatane ke liye */
input:focus,
button:focus,
a:focus,
textarea:focus {
    outline: none;
}

/* ==========================================================================
   📨 NEWSLETTER / WHATSAPP HUB COLOR UPGRADE (Bottom Overrides)
   ========================================================================== */

/* Full Section Background (Soft Organic Linen Layer) */
.newsletter-section {
    background-color: var(--accent-tint);
    border-top: 1px solid var(--border-fine);
    border-bottom: 1px solid var(--border-fine);
}

/* Subtitle (The Inner Circle) - Keeping it Ancient Gold */
.news-sub {
    color: var(--accent-gold);
}

/* Main Heading (Soft Luxury Espresso Ink) */
.news-title {
    color: var(--ink-primary);
}

/* Description Text (Warm Earthy Taupe) */
.news-desc {
    color: var(--ink-secondary);
}

/* WhatsApp CTA Button - Rest State (Premium Sage Green) */
/* (Standard cheap neon green use nahi karenge, premium deep sage look denge) */
.news-submit-btn {
    background-color: var(--accent-dark);
    color: #ffffff;
    border: 1px solid var(--accent-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WhatsApp CTA Button - Hover State (Shifting to Deep Espresso) */
.news-submit-btn:hover {
    background-color: var(--ink-primary);
    border-color: var(--ink-primary);
    color: var(--canvas-bg);
}

/* ==========================================================================
   🛍️ COLLECTIONS WORKSPACE & FILTER CHIPS COLOR UPGRADE
   ========================================================================== */

/* Page Title (Deep Espresso Ink - Soft Luxury Vibe) */
.collections-main-title {
    color: var(--ink-primary);
}

/* Tagline Description (Warm Earthy Taupe) */
.collections-tagline {
    color: var(--ink-secondary);
}

/* Filter Navigation Bar Border (Fine separation line) */
.filter-navigation-bar {
    border-bottom: 1px solid var(--border-fine);
}

/* Filter Chips - Rest State (Clean, Lightweight & Unfinished Linen Look) */
.filter-chip {
    background-color: transparent;
    color: var(--ink-secondary);
    border: 1px solid var(--border-fine);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Filter Chips - Hover State (Subtle Organic Blend) */
.filter-chip:hover {
    color: var(--accent-dark);
    background-color: var(--accent-tint);
    border-color: var(--accent-primary);
}

/* Filter Chips - Active State (The Real Hero Boutique Shot) */
/* Jab koi category active hogi, toh wo exact tumhare Sage Green look me blend ho jayegi */
.filter-chip.active {
    background-color: var(--accent-dark);
    color: #ffffff;
    border-color: var(--accent-dark);
}

