/* ==========================================================================
   SUGNAMAL - REFINED INDIAN LUXURY COUTURE ECOMMERCE STYLESHEET
   Design System & Editorial Foundation
   ========================================================================== */

/* --- 1. CSS Variables & Brand Palette --- */
:root {
    /* Brand Colors */
    --color-primary-bg: #F8F5EF;         /* Primary Background: Rich Warm Ivory */
    --color-secondary-bg: #FCFAF6;       /* Secondary Background: Soft Pale Silk */
    --color-primary-text: #191919;       /* Primary Text: Deep Charcoal Ebony */
    --color-secondary-text: #6D6862;     /* Secondary Text: Refined Editorial Slate */
    --color-burgundy: #641F33;           /* Deep Regal Burgundy (Selective accent) */
    --color-gold: #B39A6C;               /* Muted Antique Gold (Used very sparingly) */
    --color-border-soft: rgba(25, 25, 25, 0.12); /* Soft Subtle Border */
    --color-border-delicate: rgba(25, 25, 25, 0.08);

    /* Legacy Token Aliases (Maintains 100% component backwards compatibility) */
    --color-emerald-deep: var(--color-primary-text);
    --color-emerald-dark: #121212;
    --color-emerald-light: #2A2A2A;
    --color-gold-hover: #9E8558;
    --color-gold-light: #F4EDE0;
    --color-gold-border: rgba(179, 154, 108, 0.35);
    --color-silk-ivory: var(--color-primary-bg);
    --color-cream-pure: var(--color-secondary-bg);
    --color-card-bg: var(--color-secondary-bg);
    --color-charcoal-deep: var(--color-primary-text);
    --color-charcoal-body: #2A2A2A;
    --color-muted-stone: var(--color-secondary-text);
    --color-border-subtle: rgba(25, 25, 25, 0.06);
    --color-sale-burgundy: var(--color-burgundy);

    /* Typography (Max 2 Main Font Families) */
    --font-serif: 'Cormorant Garamond', Garamond, 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Restrained Premium Shadows & Transitions (180-300ms) */
    --shadow-couture: 0 4px 20px rgba(25, 25, 25, 0.04);
    --shadow-hover: 0 8px 25px rgba(25, 25, 25, 0.08);
    --shadow-modal: 0 20px 50px rgba(25, 25, 25, 0.25);
    --transition-couture: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 180ms ease;

    /* Major Section Spacing System Tokens */
    --section-space-desktop: 72px;
    --section-space-tablet: 60px;
    --section-space-mobile: 48px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-silk-ivory);
    color: var(--color-charcoal-body);
    line-height: 1.65;
    letter-spacing: 0.025em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   0. HAUTE COUTURE PRELOADER SCREEN
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F2218;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none !important;
}

.preloader-content {
    text-align: center;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.preloader-monogram {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    font-weight: 300;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    animation: monogramGlow 2s ease-in-out infinite alternate;
}

.preloader-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: #FFF;
    margin: 0;
}

.preloader-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: #C8BFB2;
    text-transform: uppercase;
}

.preloader-bar-wrap {
    width: 160px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), #FFF);
    animation: preloaderFill 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes monogramGlow {
    0% { transform: scale(0.98); opacity: 0.85; filter: drop-shadow(0 0 4px rgba(184, 151, 88, 0.2)); }
    100% { transform: scale(1.02); opacity: 1; filter: drop-shadow(0 0 16px rgba(184, 151, 88, 0.6)); }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

/* ==========================================================================
   0.1. GLOBAL LUXURY TOAST NOTIFICATIONS
   ========================================================================== */
.luxury-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 48px);
    pointer-events: none;
}

.luxury-toast {
    background-color: #0F2218;
    color: #FFF;
    border: 1px solid var(--color-gold);
    border-left: 4px solid var(--color-gold);
    padding: 16px 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.luxury-toast.hide {
    animation: toastSlideOut 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-icon {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-top: 2px;
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.toast-message {
    font-size: 0.76rem;
    color: #E7E2D8;
    line-height: 1.4;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), #FFF);
    width: 100%;
    animation: toastProgressTimer 3.5s linear forwards;
}

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

@keyframes toastProgressTimer {
    from { width: 100%; }
    to { width: 0%; }
}

::selection {
    background-color: var(--color-emerald-deep);
    color: #FAF8F5;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #F4EFEA;
}
::-webkit-scrollbar-thumb {
    background: #C4B59D;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-emerald-deep);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-couture);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-couture);
}

ul {
    list-style: none;
}

/* --- 3. Global Typography & Section Headers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-charcoal-deep);
}

.section-header-box {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 52px auto;
    padding: 0 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 300;
    color: var(--color-charcoal-deep);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 42px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 12px auto 0 auto;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.12rem;
    color: var(--color-muted-stone);
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 10px;
}

.center-cta-wrap {
    text-align: center;
    margin-top: 48px;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* --- 4. Luxury Couture Buttons --- */
.btn-solid-dark {
    display: inline-block;
    background-color: var(--color-charcoal-deep);
    color: #FFF;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 15px 38px;
    border: 1px solid var(--color-charcoal-deep);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-solid-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-emerald-deep);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-solid-dark:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-solid-dark:hover {
    border-color: var(--color-emerald-deep);
    color: #FFF;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--color-charcoal-deep);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid var(--color-charcoal-deep);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-charcoal-deep);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}
.btn-outline-dark:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}
.btn-outline-dark:hover {
    color: #FFF;
}

.btn-border-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-charcoal-deep);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-border-light:hover {
    background: var(--color-emerald-deep);
    color: #FFF;
    border-color: var(--color-emerald-deep);
}

.btn-border-white {
    display: inline-block;
    background: transparent;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.85);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 36px;
}
.btn-border-white:hover {
    background: #FFF;
    color: var(--color-charcoal-deep);
    border-color: #FFF;
}

.btn-solid-white {
    display: inline-block;
    background: #FFF;
    color: var(--color-emerald-deep);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 15px 38px;
    border: 1px solid #FFF;
}
.btn-solid-white:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #FFF;
}

.btn-gold-light {
    display: inline-block;
    background: rgba(22, 50, 36, 0.82);
    color: #FFF;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 15px 38px;
    border: 1px solid var(--color-gold-border);
    backdrop-filter: blur(8px);
}
.btn-gold-light:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #FFF;
}

/* ==========================================================================
   5. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
    background-color: var(--color-burgundy);
    color: var(--color-primary-bg);
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 996;
    border: none;
}

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

.announcement-text {
    line-height: 1;
}

/* ==========================================================================
   6. MAIN HEADER & LUXURY NAVIGATION
   ========================================================================== */
.site-header {
    background-color: var(--color-primary-bg);
    position: sticky;
    top: 0;
    z-index: 990;
    transition: background-color 220ms ease, box-shadow 220ms ease;
    width: 100%;
}

.site-header.scrolled {
    background-color: rgba(248, 245, 239, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(25, 25, 25, 0.04);
}

/* --- Brand Row --- */
.header-upper {
    height: 86px;
    background-color: var(--color-primary-bg);
    border-bottom: 1px solid rgba(25, 25, 25, 0.07);
    display: flex;
    align-items: center;
    position: relative;
    transition: height 220ms ease, background-color 220ms ease;
}

.site-header.scrolled .header-upper {
    height: 66px;
    background-color: transparent;
}

.header-upper-inner {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: start;
}

.header-nav-item {
    position: static;
}

.header-tab-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.035em;
    color: #191919;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: color 180ms ease;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.header-tab-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #641F33;
    transition: width 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-tab-link:hover {
    color: #641F33;
}

.header-nav-item:hover .header-tab-link::after,
.header-nav-item:hover .header-tab-link {
    color: #641F33;
}

.header-nav-item:hover .header-tab-link::after {
    width: 100%;
}

.find-store-link {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #666666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 22px;
    line-height: 1.2;
    padding: 0 0 0 17px;
    margin-left: -4px;
    border-left: 1px solid rgba(25, 25, 25, 0.14);
    transition: color 180ms ease;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
}

.find-store-link:hover {
    color: #191919;
}

.find-store-link .store-icon {
    font-size: 11px;
    color: #777777;
    transition: color 180ms ease;
}

.find-store-link:hover .store-icon {
    color: #191919;
}

.header-center {
    justify-self: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    min-width: 0;
    margin: 0 auto;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    max-width: 100%;
}

.brand-logo-picture {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    max-width: 100%;
}

.brand-logo .logo-title {
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--color-primary-text);
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    transition: font-size 220ms ease, color 180ms ease;
}

.site-header.scrolled .brand-logo .logo-title {
    font-size: 1.85rem;
}

.brand-logo:hover .logo-title {
    color: var(--color-burgundy);
}

/* Dynamic Storefront Brand Logo Assets */
.brand-logo-img {
    max-height: 48px;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    transition: max-height 220ms ease;
}

.site-header.scrolled .brand-logo-img {
    max-height: 40px;
}

@media (max-width: 1024px) {
    .header-center {
        max-width: 200px;
    }
    .brand-logo .logo-title {
        font-size: 1.6rem;
        letter-spacing: 0.16em;
    }
    .site-header.scrolled .brand-logo .logo-title {
        font-size: 1.4rem;
    }
    .brand-logo-img {
        max-height: 38px;
        max-width: 170px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .site-header.scrolled .brand-logo-img {
        max-height: 34px;
    }
}

.header-right {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
}

/* Prominent Desktop Search Input */
.header-desktop-search {
    display: flex;
    align-items: center;
    position: relative;
    width: clamp(240px, 18vw, 300px);
    height: 40px;
    background-color: #F5F3F0;
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 3px;
    padding: 0 4px 0 12px;
    gap: 8px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.header-desktop-search:focus-within {
    border-color: rgba(100, 31, 51, 0.35);
    background-color: #FFFFFF;
}

.header-desktop-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #191919;
    width: 100%;
    position: relative;
    z-index: 3;
}

.header-desktop-search input::placeholder {
    color: #888888;
    font-size: 11.5px;
}

.desktop-search-icon {
    font-size: 12px;
    color: #777777;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

/* Header Search Submit Button */
.header-search-btn {
    border: none;
    background: #641F33;
    color: #FAF8F4;
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0 13px;
    height: 32px;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 180ms ease, transform 180ms ease;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    outline: none;
}

.header-search-btn:hover {
    background: #4a1525;
}

.header-search-btn:active {
    transform: scale(0.98);
}

/* ==========================================================================
   ANIMATED SEARCH PLACEHOLDER SUGGESTION SYSTEM
   ========================================================================== */
.search-placeholder-track {
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 180ms ease, visibility 180ms ease;
    z-index: 2;
}

.header-desktop-search .search-placeholder-track {
    left: 34px;
    right: 80px;
}

.mobile-search-input-box .search-placeholder-track {
    left: 36px;
    right: 44px;
}

/* Immediately hide when input has focus, is focused-within, or has content */
.header-desktop-search:focus-within .search-placeholder-track,
.mobile-search-input-box:focus-within .search-placeholder-track,
.header-desktop-search input:focus ~ .search-placeholder-track,
.mobile-search-input-box input:focus ~ .search-placeholder-track,
.search-placeholder-track.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.search-placeholder-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
}

.header-desktop-search .search-placeholder-item {
    font-size: 11.5px;
    color: #888888;
}

.mobile-search-input-box .search-placeholder-item {
    font-size: 12px;
    color: #8B857F;
    font-weight: 400;
}

/* Soft, elegant 260ms transition with 5px vertical movement */
.search-placeholder-item.is-current {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 260ms ease, transform 260ms ease;
}

.search-placeholder-item.is-leaving {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.search-placeholder-item.is-entering-start {
    opacity: 0;
    transform: translateY(5px);
    transition: none !important;
}

.search-placeholder-item.is-entering-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 260ms ease, transform 260ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .search-placeholder-item {
        transition: none !important;
        transform: none !important;
    }
}

.search-toggle-btn {
    display: none;
}

.header-icon-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16.5px;
    color: var(--color-primary-text);
    position: relative;
    border-radius: 50%;
    transition: color 180ms ease, background-color 180ms ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: transparent;
}

.header-icon-btn:hover {
    color: var(--color-burgundy);
    background-color: rgba(100, 31, 51, 0.04);
}

.badge-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--color-burgundy);
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 600;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 3px;
    box-shadow: none;
}

.mobile-menu-btn {
    display: none;
}

/* --- Secondary Product Navigation Bar (Desktop) --- */
.main-navigation {
    height: 52px;
    background-color: var(--color-secondary-bg);
    border-bottom: 1px solid rgba(25, 25, 25, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 44px;
    transition: height 220ms ease, background-color 220ms ease;
}

.site-header.scrolled .main-navigation {
    height: 45px;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1560px;
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    padding: 10px 2px;
    display: block;
    color: var(--color-primary-text);
    position: relative;
    white-space: nowrap;
    transition: color 180ms ease;
    line-height: 1.2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-burgundy);
    transition: width 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-item.has-dropdown:hover .nav-link::after {
    width: 100%;
}

.nav-link:hover,
.nav-item.has-dropdown:hover .nav-link {
    color: var(--color-burgundy);
}

.nav-link.highlight-ready {
    color: var(--color-burgundy);
    font-weight: 550;
}

.nav-link.highlight-sale {
    color: #8A243B;
    font-weight: 600;
}

/* --- Mega Dropdown --- */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    max-width: 92vw;
    max-height: 430px;
    background-color: var(--color-secondary-bg);
    border-top: 1px solid var(--color-border-delicate);
    border-bottom: 1px solid var(--color-border-delicate);
    box-shadow: 0 16px 36px rgba(25, 25, 25, 0.06);
    padding: 32px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    transition-delay: 150ms;
    pointer-events: none;
    z-index: 999;
}

/* Invisible hover bridge spanning the gap between trigger link and dropdown */
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent;
    pointer-events: auto;
}

.has-dropdown:hover .mega-dropdown,
.has-dropdown:focus-within .mega-dropdown,
.mega-dropdown:hover,
.has-dropdown.is-open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0ms;
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.35fr;
    gap: 32px;
}

.mega-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-secondary-text);
    border-bottom: 1px solid var(--color-border-delicate);
    padding-bottom: 8px;
}

.mega-col a {
    display: block;
    font-size: 13px;
    color: var(--color-primary-text);
    margin-bottom: 11px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 180ms ease, transform 180ms ease;
}

.mega-col a:hover {
    color: var(--color-burgundy);
    transform: translateX(3px);
}

.mega-img-col {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mega-img-col img {
    height: 185px;
    width: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.mega-img-col:hover img {
    transform: scale(1.03);
}

.mega-img-caption {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mega-img-tag {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--color-secondary-text);
    text-transform: uppercase;
}

.mega-img-title {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--color-primary-text);
    font-weight: 500;
}

.mega-img-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-burgundy);
    margin-top: 4px;
    display: inline-block;
    text-transform: uppercase;
}

/* ==========================================================================
   7. SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 249, 245, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-couture);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box-container {
    width: 90%;
    max-width: 720px;
    text-align: center;
    position: relative;
}

.search-close-btn {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 2.5rem;
    color: var(--color-charcoal-deep);
    line-height: 1;
}
.search-close-btn:hover {
    color: var(--color-gold);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-charcoal-deep);
    padding-bottom: 16px;
}
.search-input-wrapper i {
    font-size: 1.5rem;
    margin-right: 18px;
    color: var(--color-emerald-deep);
}
.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-charcoal-deep);
    outline: none;
}
.search-input-wrapper input::placeholder {
    color: #A8A196;
    font-style: italic;
}

.search-overlay-submit-btn {
    border: none;
    background: #641F33;
    color: #FAF8F4;
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0 18px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
    transition: background-color 180ms ease, transform 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-overlay-submit-btn:hover {
    background: #4a1525;
}

.search-overlay-submit-btn:active {
    transform: scale(0.98);
}

.quick-keywords {
    margin-top: 28px;
    font-size: 0.82rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.quick-keywords span {
    color: var(--color-muted-stone);
}
.quick-keywords a {
    color: var(--color-charcoal-deep);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 1px;
}
.quick-keywords a:hover {
    color: var(--color-emerald-deep);
}

/* ==========================================================================
   8. SHIPPING / COUNTRY MODAL (SCREENSHOT OVERLAY)
   ========================================================================== */
.country-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 33, 22, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-couture);
}
.country-modal-backdrop.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.country-modal-card {
    background-color: var(--color-cream-pure);
    max-width: 500px;
    width: 100%;
    padding: 48px 42px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-modal);
    border: 1px solid var(--color-border-delicate);
    animation: modalPop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(25px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--color-muted-stone);
    line-height: 1;
}
.modal-close-btn:hover {
    color: var(--color-charcoal-deep);
}

.modal-title {
    font-size: 1.85rem;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-weight: 400;
}

.modal-text {
    font-size: 0.84rem;
    color: var(--color-muted-stone);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

.country-dropdown-field {
    text-align: left;
    margin-bottom: 26px;
}
.country-dropdown-field label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--color-charcoal-deep);
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-select-wrap select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border-delicate);
    background-color: var(--color-silk-ivory);
    font-family: var(--font-sans);
    font-size: 0.84rem;
    color: var(--color-charcoal-deep);
    outline: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}
.custom-select-wrap select:focus {
    border-color: var(--color-emerald-deep);
}

.modal-cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 0.82rem;
}

.modal-trust-badge {
    margin-top: 22px;
    font-size: 0.72rem;
    color: var(--color-emerald-deep);
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ==========================================================================
   MOBILE-ONLY DISCOVERY COMPONENTS (STRICTLY HIDDEN ON DESKTOP & TABLET > 860px)
   ========================================================================== */

@media (min-width: 861px) {
    .mobile-app-top-section,
    .mobile-search-strip,
    .mobile-search-input-box,
    .mobile-category-tabs,
    .mobile-stories-rail,
    .story-avatar-item,
    .mobile-nav-backdrop,
    .mobile-nav-drawer,
    .mobile-bottom-bar,
    .mobile-menu-btn,
    .floating-concierge-badge {
        display: none !important;
    }

    .site-header {
        display: block !important;
        margin-bottom: 16px !important;
    }

    .header-upper {
        display: flex !important;
    }

    .header-left {
        display: flex !important;
    }

    .main-navigation {
        display: flex !important;
    }

    .header-desktop-search {
        display: flex !important;
    }

    .search-toggle-btn {
        display: none !important;
    }

    #heroCampaign {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Responsive Desktop Container Side Padding & Navigation Gap */
@media (min-width: 1440px) {
    .header-upper-inner,
    .main-navigation {
        padding-left: 44px !important;
        padding-right: 44px !important;
    }
    .nav-list {
        gap: 32px !important;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .header-upper-inner,
    .main-navigation {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    .nav-list {
        gap: 26px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .header-upper-inner,
    .main-navigation {
        padding-left: 26px !important;
        padding-right: 26px !important;
    }
    .nav-list {
        gap: 20px !important;
    }
}

/* ==========================================================================
   9. HERO CAMPAIGN SECTION (SUGNAMAL LUXURY EDITORIAL - FULL WIDTH)
   ========================================================================== */
.hero-editorial-section,
.hero-campaign-section {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background-color: #141414;
    height: 660px;
    min-height: 620px;
    max-height: 690px;
}

@media (min-width: 1440px) {
    .hero-editorial-section,
    .hero-campaign-section {
        height: 660px;
        min-height: 620px;
        max-height: 690px;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-editorial-section,
    .hero-campaign-section {
        height: 620px;
        min-height: 590px;
        max-height: 650px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-editorial-section,
    .hero-campaign-section {
        height: 580px;
        min-height: 560px;
        max-height: 620px;
    }
}

/* Slider Track & Slides */
.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1), visibility 600ms cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide-img,
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.1, 0.05, 0.1, 1);
}

.hero-slide.active .hero-slide-img,
.hero-slide.active .hero-bg-img {
    transform: scale(1.02);
}

/* Photographic composition: Subjects on Right 55-60%, Left 40-45% negative space */
.hero-img-wedding {
    object-position: 72% center;
}

.hero-img-bridal {
    object-position: 75% 25%;
}

/* Localized Left-Side Gradient Only (Right side remains 100% natural, bright & vivid) */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13, 13, 13, 0.52) 0%,
        rgba(13, 13, 13, 0.28) 30%,
        rgba(13, 13, 13, 0.04) 56%,
        rgba(13, 13, 13, 0) 75%
    );
    pointer-events: none;
    z-index: 2;
}

/* Editorial Text Positioning & Typography */
.hero-content-container {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-left: clamp(48px, 8.5%, 110px);
    padding-right: 40px;
    padding-top: 24px;
    pointer-events: none;
}

.hero-text-box {
    max-width: 540px;
    pointer-events: auto;
}

.hero-text-box.align-left {
    text-align: left;
}

.hero-text-box.align-center {
    text-align: center;
    margin-inline: auto;
}

.hero-text-box.align-right {
    text-align: right;
    margin-left: auto;
}

.hero-eyebrow,
.hero-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #F8F5EF;
    margin-bottom: 14px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-heading,
.hero-main-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 4.4vw, 66px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-supporting,
.hero-tagline {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4F0E8;
    max-width: 410px;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-cta-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn,
.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 200ms ease;
    cursor: pointer;
    white-space: nowrap;
}

.hero-btn-primary {
    background-color: #F8F5EF;
    color: #191919;
    border: 1px solid #F8F5EF;
}

.hero-btn-primary:hover {
    background-color: #641F33;
    border-color: #641F33;
    color: #FFFFFF;
}

.hero-btn-secondary {
    background-color: transparent;
    color: #F8F5EF;
    border: 1px solid rgba(248, 245, 239, 0.80);
}

.hero-btn-secondary:hover {
    background-color: #F8F5EF;
    border-color: #F8F5EF;
    color: #191919;
}

.hero-text-box.align-center .hero-cta-group {
    justify-content: center;
    width: 100%;
}

.hero-text-box.align-right .hero-cta-group {
    justify-content: flex-end;
    width: 100%;
}

.hero-text-box.hero-text-dark .hero-eyebrow,
.hero-text-box.hero-text-dark .hero-sub {
    color: #222222;
    text-shadow: none;
}

.hero-text-box.hero-text-dark .hero-heading,
.hero-text-box.hero-text-dark .hero-main-title {
    color: #111111;
    text-shadow: none;
}

.hero-text-box.hero-text-dark .hero-supporting,
.hero-text-box.hero-text-dark .hero-tagline {
    color: #333333;
    text-shadow: none;
}

.hero-text-box.hero-text-dark .hero-btn-secondary {
    border-color: rgba(25, 25, 25, 0.85);
    color: #191919;
}

.hero-text-box.hero-text-dark .hero-btn-secondary:hover {
    background-color: #191919;
    border-color: #191919;
    color: #FFFFFF;
}

/* Minimal Rectangular Navigation Controls (Near Hero Edges) */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(248, 245, 239, 0.94);
    border: 1px solid rgba(25, 25, 25, 0.06);
    border-radius: 2px;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    z-index: 5;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.hero-nav-arrow:hover {
    background: #641F33;
    border-color: #641F33;
    color: #FFFFFF;
}

.hero-nav-arrow.hero-prev {
    left: clamp(16px, 2.2vw, 36px);
}

.hero-nav-arrow.hero-next {
    right: clamp(16px, 2.2vw, 36px);
}

/* Minimal Understated Slide Indicators (Two short thin lines at lower center) */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.hero-indicator-line {
    width: 26px;
    height: 2px;
    background: rgba(248, 245, 239, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 200ms ease, width 200ms ease;
    border-radius: 1px;
}

.hero-indicator-line.active {
    background: #F8F5EF;
    width: 36px;
}

.hero-indicator-line:hover:not(.active) {
    background: rgba(248, 245, 239, 0.75);
}

/* ==========================================================================
   HOMEPAGE CURATED CONTAINER & TYPOGRAPHY STANDARDS
   ========================================================================== */
.homepage-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 56px);
    box-sizing: border-box;
}

.section-header-compact {
    text-align: center;
    margin-bottom: clamp(32px, 3.5vw, 48px);
}

.section-header-compact .section-heading {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-primary-text);
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.15;
}

.section-header-compact .section-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(12.5px, 1.1vw, 14px);
    color: var(--color-muted-stone);
    letter-spacing: 0.03em;
    margin: 0 auto;
    max-width: 580px;
    font-weight: 400;
    line-height: 1.5;
}

.section-header-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(32px, 3.5vw, 48px);
    border-bottom: 1px solid var(--color-border-delicate);
    padding-bottom: 18px;
}

.section-header-split .header-text-group .section-heading {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-primary-text);
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.15;
}

.section-header-split .header-text-group .section-subtitle {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--color-muted-stone);
    letter-spacing: 0.02em;
    margin: 0;
}

.section-header-cta {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-primary-text);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 180ms ease, transform 180ms ease;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.section-header-cta:hover {
    color: var(--color-burgundy);
    border-bottom-color: var(--color-burgundy);
}

/* ==========================================================================
   EDITORIAL SECTION HEADERS & UTILITIES
   ========================================================================== */
.editorial-section-header {
    margin-bottom: clamp(28px, 3.5vw, 44px);
    text-align: left;
}

.editorial-heading {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-primary-text);
    text-transform: uppercase;
    margin: 0 0 6px 0;
    line-height: 1.15;
}

.editorial-subheading {
    font-family: var(--font-sans);
    font-size: clamp(12px, 1vw, 13.5px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-muted-stone);
    margin: 0;
}

.editorial-split-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(28px, 3.5vw, 44px);
    border-bottom: 1px solid var(--color-border-delicate);
    padding-bottom: 16px;
}

.editorial-header-cta {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--color-primary-text);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 200ms ease;
}

.editorial-header-cta:hover {
    color: var(--color-burgundy);
}

/* ==========================================================================
   NEW ARRIVALS — PART 1 (PREMIUM EDITORIAL SHOWCASE)
   ========================================================================== */
.new-arrivals-section {
    background-color: #F8F5EF;
    padding-top: var(--section-space-desktop);
    padding-bottom: calc(var(--section-space-desktop) / 2);
    width: 100%;
}

.new-arrivals-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
    margin-bottom: 23px;
}

.new-arrivals-heading-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.new-arrivals-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
}

.new-arrivals-eyebrow-rule {
    display: block;
    width: 32px;
    height: 1px;
    background-color: #641F33;
    opacity: 0.85;
    flex-shrink: 0;
}

.new-arrivals-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #6D6862;
    line-height: 1.2;
}

.new-arrivals-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: #191919;
    text-transform: none;
    margin: 0;
}

.new-arrivals-view-all {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #191919;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 5px;
    transition: color 200ms ease;
    white-space: nowrap;
}

.new-arrivals-view-all .view-all-arrow {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    color: inherit;
    transition: transform 200ms ease;
}

.new-arrivals-view-all:hover {
    color: #641F33;
}

.new-arrivals-view-all:hover .view-all-arrow {
    transform: translateX(3px);
}

.new-arrivals-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(25, 25, 25, 0.12);
    margin-bottom: 30px;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
}

.new-arrival-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.new-arrival-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #ECE7DE;
    margin-bottom: 14px;
    position: relative;
}

/* Product Status Badge (Top-Left: 12px) */
.new-arrival-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    background: rgba(248, 245, 239, 0.94);
    color: #191919;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: 0;
    line-height: 1;
    pointer-events: none;
    box-shadow: none;
    border: none;
}

/* Wishlist Heart Button (Top-Right: 12px) */
.new-arrival-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    width: 34px;
    height: 34px;
    background: rgba(248, 245, 239, 0.88);
    border: none;
    border-radius: 50%;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    box-shadow: none;
    padding: 0;
    outline: none;
}

.new-arrival-wishlist-btn:hover {
    color: #641F33;
    background: rgba(248, 245, 239, 0.98);
    transform: scale(1.04);
}

.new-arrival-wishlist-btn.active {
    color: #641F33;
    background: rgba(248, 245, 239, 0.98);
}

.new-arrival-wishlist-btn.active i {
    font-weight: 900;
    color: #641F33;
}

.new-arrival-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.new-arrival-img-primary {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.new-arrival-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

/* Individual object-position for refined editorial cropping */
.new-arrival-card:nth-child(1) .new-arrival-img {
    object-position: center top;
}

.new-arrival-card:nth-child(2) .new-arrival-img {
    object-position: center 12%;
}

.new-arrival-card:nth-child(3) .new-arrival-img {
    object-position: center 8%;
}

.new-arrival-card:nth-child(4) .new-arrival-img {
    object-position: center 18%;
}

/* --- New Arrivals: Product Info --- */
.new-arrival-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.new-arrival-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 1.35;
    margin: 0 0 5px 0;
    letter-spacing: 0.005em;
    min-height: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 200ms ease;
}

.new-arrival-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    line-height: 1.2;
    min-height: 17px;
}

/* --- New Arrivals: Outlined ADD TO BAG CTA below pricing --- */
.new-arrival-cta-wrap {
    margin-top: auto;
    padding-top: 14px;
    position: relative;
    width: 100%;
}

.new-arrival-add-btn {
    width: 100%;
    height: 43px;
    background: transparent;
    border: 1px solid rgba(25, 25, 25, 0.22);
    border-radius: 0px;
    color: #191919;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
}

.new-arrival-add-btn .action-arrow {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    transition: transform 200ms ease;
}

/* Desktop Hover Transition */
@media (hover: hover) and (pointer: fine) {
    .new-arrival-card.has-secondary-image:hover .new-arrival-img-primary {
        opacity: 0;
        transform: scale(1.018);
    }
    .new-arrival-card.has-secondary-image:hover .new-arrival-img-secondary {
        opacity: 1;
        transform: scale(1.018);
    }
    .new-arrival-card:hover .new-arrival-name {
        color: #641F33;
    }
    .new-arrival-add-btn:hover {
        background-color: #641F33;
        border-color: #641F33;
        color: #F8F5EF;
    }
    .new-arrival-add-btn:hover .action-arrow {
        transform: translateX(3px);
    }
}

.new-arrival-add-btn:active {
    transform: scale(0.995);
}

/* Size Selector Popover: Directly above standalone ADD TO BAG button */
.new-arrival-size-popover {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.16);
    border-radius: 0px;
    padding: 10px 12px;
    z-index: 20;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    box-sizing: border-box;
}

.new-arrival-size-popover.active {
    display: block;
    animation: naSizeFadeIn 180ms ease forwards;
}

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

.new-arrival-price-current {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 1.2;
    letter-spacing: 0.005em;
}

.new-arrival-price-original {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: #8B847D;
    text-decoration: line-through;
    letter-spacing: 0.01em;
}

.new-arrival-price-discount {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: #641F33;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.new-arrival-status {
    display: none;
}

.size-popover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.size-popover-title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6D6862;
    text-transform: uppercase;
}

.size-popover-close {
    background: transparent;
    border: none;
    font-size: 14px;
    line-height: 1;
    color: #8B847D;
    cursor: pointer;
    padding: 0 2px;
}

.size-popover-close:hover {
    color: #191919;
}

.size-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.size-options-row .size-btn {
    flex: 1;
    height: 35px;
    min-width: 32px;
    max-width: 48px;
    background: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.22);
    border-radius: 0px;
    color: #191919;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 160ms ease;
    outline: none;
}

.size-options-row .size-btn:hover {
    border-color: #641F33;
    color: #641F33;
}

.size-options-row .size-btn.selected {
    background: #641F33;
    border-color: #641F33;
    color: #FFFFFF;
}

.size-options-row .size-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: rgba(25, 25, 25, 0.12);
}

/* ==========================================================================
   17. QUICK VIEW MODAL
   ========================================================================== */
.quick-view-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.quick-view-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-card {
    background-color: #FFF;
    max-width: 860px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-modal);
    border: 1px solid var(--color-border);
}

.quick-view-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.quick-view-image {
    aspect-ratio: 3 / 4;
    background-color: #F0EDE8;
}
.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-details {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qv-collection {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.qv-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.qv-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.qv-tax-note {
    font-size: 0.7rem;
    color: var(--color-muted-gray);
    margin-bottom: 18px;
}

.qv-desc {
    font-size: 0.8rem;
    color: var(--color-charcoal-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.qv-size-picker label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 8px;
}

.size-options {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.size-btn {
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 500;
}
.size-btn.active, .size-btn:hover {
    border-color: var(--color-charcoal);
    background-color: var(--color-charcoal);
    color: #FFF;
}

.qv-actions {
    display: flex;
    gap: 12px;
}

.add-to-bag-btn {
    flex: 1;
    padding: 14px;
}

.wishlist-add-btn {
    padding: 14px 18px;
    font-size: 1rem;
}

/* ==========================================================================
   17B. ACCOUNT / SIGN IN MODAL
   ========================================================================== */
.account-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1150;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth, all 0.3s ease);
}
.account-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.account-modal-card {
    background-color: var(--color-primary-bg, #FCFAF6);
    max-width: 440px;
    width: 100%;
    padding: 40px 32px 36px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(25, 25, 25, 0.08);
    animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.account-modal-header {
    text-align: center;
    margin-bottom: 24px;
}
.account-modal-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--color-burgundy, #641F33);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.account-modal-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-primary-text, #191919);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.account-modal-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.account-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.account-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.account-input-group label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #444;
}
.account-input-group input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    background: #FFF;
    border: 1px solid rgba(25, 25, 25, 0.15);
    font-family: var(--font-sans);
    font-size: 13px;
    color: #191919;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.account-input-group input:focus {
    border-color: var(--color-burgundy, #641F33);
}
.account-form-actions {
    display: flex;
    justify-content: flex-end;
}
.account-forgot-link {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.account-forgot-link:hover {
    color: var(--color-burgundy, #641F33);
}
.account-submit-btn {
    height: 46px;
    background-color: #191919;
    color: #FCFAF6;
    border: 1px solid #191919;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    margin-top: 4px;
}
.account-submit-btn:hover {
    background-color: var(--color-burgundy, #641F33);
    border-color: var(--color-burgundy, #641F33);
}
.account-register-prompt {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.account-register-link {
    color: var(--color-burgundy, #641F33);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ==========================================================================
   18. SLIDE-OUT CART DRAWER
   ========================================================================== */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100%;
    background-color: #FCFAF6;
    box-shadow: -6px 0 32px rgba(25, 25, 25, 0.08);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 1201;
    box-sizing: border-box;
}

.cart-drawer-backdrop.active .cart-drawer {
    transform: translateX(0);
}

@media (max-width: 640px) {
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
}

/* Header: 24px gutters, 28px top, 22px bottom */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px 22px 24px;
    background-color: #FCFAF6;
    border-bottom: 1px solid rgba(25, 25, 25, 0.08);
    box-sizing: border-box;
}

.cart-drawer-header h3 {
    font-family: var(--font-serif);
    font-size: 15.5px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #191919;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.drawer-close-btn {
    font-size: 18px;
    font-weight: 300;
    color: #6D6862;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.drawer-close-btn:hover {
    color: #191919;
}

/* Shipping message: 24px gutters, font-size 12.5px, subtle hairline */
.cart-free-shipping-indicator {
    padding: 13px 24px;
    background-color: #FCFAF6;
    border-bottom: 1px solid rgba(25, 25, 25, 0.08);
    box-sizing: border-box;
    text-align: left;
}

.cart-free-shipping-indicator p,
.cart-shipping-msg {
    margin: 0;
    font-size: 12.5px;
    color: #6D6862;
    line-height: 1.4;
}

.cart-shipping-msg strong,
.cart-free-shipping-indicator strong {
    font-weight: 600;
    color: #191919;
}

/* Hide duplicate gift progress/meter completely */
.cart-gift-meter {
    display: none !important;
}

/* Product list: 24px gutters, flex-1 scrollable */
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
    background-color: #FCFAF6;
    box-sizing: border-box;
}

/* Product row: [ IMAGE: 84x108 ] gap: 18px [ INFO ], divider 1px solid rgba(25,25,25,0.08), 20px padding top/bottom */
.cart-item-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(25, 25, 25, 0.08);
    box-sizing: border-box;
}

.cart-item-row .cart-item-img-link {
    display: block;
    width: 84px;
    min-width: 84px;
    height: 108px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}

.cart-item-row .cart-item-img-link img,
.cart-item-row img {
    width: 84px;
    min-width: 84px;
    height: 108px;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 13.5px;
    font-weight: 400;
    color: #191919;
    line-height: 1.35;
    margin: 0;
}

.item-meta {
    font-size: 12px;
    color: #6D6862;
    margin: 0;
    margin-top: 6px;
    line-height: 1.3;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #191919;
    margin: 0;
    margin-top: 8px;
    line-height: 1;
}

/* Quantity + Remove row: margin-top: 14px, [ - 1 + ] on left, Remove on right */
.qty-control {
    display: flex;
    align-items: center;
    margin-top: 14px;
    gap: 0;
    width: 100%;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(25, 25, 25, 0.14);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #191919;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.qty-btn:hover {
    border-color: #191919;
}

.qty-control span {
    min-width: 26px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #191919;
}

.remove-item-btn {
    margin-left: auto;
    font-size: 11.5px;
    color: #6D6862;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}
.remove-item-btn:hover {
    color: #191919;
}

/* Cart Drawer Footer: 24px gutters, background #FCFAF6, subtle hairline */
.cart-drawer-footer {
    padding: 24px;
    background-color: #FCFAF6;
    border-top: 1px solid rgba(25, 25, 25, 0.08);
    box-sizing: border-box;
}

/* Promo code: height 44px, input #FFFFFF border 1px solid rgba(25,25,25,0.10), APPLY #641F33 10px 500 uppercase */
.cart-promo-box {
    margin-bottom: 0;
}

.promo-input-row {
    display: flex;
    height: 44px;
    gap: 8px;
    width: 100%;
}

.promo-input-row input {
    flex: 1;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.10);
    padding: 0 14px;
    font-size: 11.5px;
    color: #191919;
    letter-spacing: 0.04em;
    outline: none;
    box-sizing: border-box;
    border-radius: 0;
    transition: border-color 0.2s ease;
}
.promo-input-row input::placeholder {
    color: #9C968E;
    font-size: 11px;
    letter-spacing: 0.04em;
}
.promo-input-row input:focus {
    border-color: rgba(25, 25, 25, 0.35);
}

.apply-promo-btn {
    height: 44px;
    padding: 0 18px;
    background: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.10);
    color: #641F33;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.apply-promo-btn:hover {
    background: #641F33;
    color: #F8F5EF;
    border-color: #641F33;
}

.promo-feedback {
    display: block;
    font-size: 11px;
    margin-top: 6px;
    line-height: 1.3;
}
.promo-feedback.success {
    color: #2E7D32;
}
.promo-feedback.error {
    color: #D32F2F;
}

/* Gift note option: 12.5px #6D6862 line-height 1.45 */
.cart-gift-wrap-option {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    margin-bottom: 0;
    cursor: pointer;
}

.cart-gift-wrap-option input[type="checkbox"] {
    accent-color: #641F33;
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.gift-wrap-label {
    font-size: 12.5px;
    color: #6D6862;
    line-height: 1.45;
}

/* Subtotal: spacing above: 24px, Label 15px 600, Value 17px 600 #191919 */
.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 24px;
    margin-bottom: 0;
}

.cart-subtotal-row .cart-subtotal-label,
.cart-subtotal-row > span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #191919;
}

.cart-subtotal-row .subtotal-amount {
    font-size: 17px;
    font-weight: 600;
    color: #191919;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #2E7D32;
    font-weight: 500;
    margin-top: 8px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: #191919;
    border-top: 1px solid rgba(25, 25, 25, 0.08);
    padding-top: 10px;
    margin-top: 10px;
}

/* Shipping disclaimer: 12px #6D6862 line-height 1.5 */
.shipping-disclaimer {
    font-size: 12px;
    color: #6D6862;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 20px;
}

/* Checkout CTA: Sugnamal burgundy #641F33, #F8F5EF text, height 52px, 100% width, 10.5px, 500, 0.14em, no shadow, no gradient */
.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background-color: #641F33;
    color: #F8F5EF;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
    background-image: none;
    margin: 0;
    padding: 0;
    transition: background-color 0.2s ease;
}
.checkout-btn:hover {
    background-color: #521728;
}

/* Continue Shopping: centered below checkout, spacing-top: 14px, 12px, #6D6862, subtle underline */
.continue-shopping-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 12px;
    color: #6D6862;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(109, 104, 98, 0.4);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.continue-shopping-btn:hover {
    color: #191919;
    text-decoration-color: #191919;
}

/* ==========================================================================
   25. RESPONSIVE MEDIA QUERIES (COMPREHENSIVE)
   ========================================================================== */

/* Medium Laptops & Desktops (max-width: 1366px) */
@media (max-width: 1366px) {
    .header-upper-inner {
        padding: 0 36px;
    }
    .nav-list {
        gap: 22px;
    }
    .nav-link {
        font-size: 10.5px;
        letter-spacing: 0.035em;
    }
}

/* Large Tablets & Medium Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
    .header-upper-inner {
        padding: 0 20px;
    }
    .header-left {
        gap: 14px;
    }
    .header-tab-link {
        font-size: 11.5px;
    }
    .find-store-link span {
        display: none;
    }
    .header-desktop-search {
        display: none;
    }
    .search-toggle-btn {
        display: flex;
    }
    .nav-list {
        gap: 14px;
    }
    .nav-link {
        font-size: 9.5px;
        letter-spacing: 0.025em;
    }
    .products-grid-4, .spotlight-grid-4, .celebs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .carousel-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }
    .footer-top-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets & Mobile Screens (max-width: 860px) - REFINED SUGNAMAL MOBILE EXPERIENCE */
@media (max-width: 860px) {
    body {
        padding-bottom: 64px; /* Room for bottom sticky bar */
    }

    /* Top Announcement Bar */
    .top-announcement-bar {
        height: 30px;
        line-height: 30px;
        padding: 0 12px;
        font-size: 9.5px;
        letter-spacing: 0.05em;
        background-color: var(--color-burgundy);
        color: var(--color-primary-bg);
    }

    /* Mobile Main Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 995;
        background-color: var(--color-primary-bg);
        border-bottom: 1px solid var(--color-border-delicate);
        margin-bottom: 0 !important;
    }

    .header-upper {
        height: 56px;
        padding: 0 12px;
        border-bottom: none;
        background-color: transparent;
    }

    .header-upper-inner {
        padding: 0;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 20px;
        color: var(--color-primary-text);
        margin: 0;
        cursor: pointer;
    }

    .header-left {
        display: none;
    }

    .header-center {
        justify-self: center;
        text-align: center;
    }

    .brand-logo .logo-title {
        font-size: 1.35rem;
        letter-spacing: 0.18em;
        font-weight: 500;
        line-height: 1;
    }

    .header-right {
        gap: 2px;
        justify-self: end;
    }

    .header-desktop-search,
    .header-right .account-icon-btn,
    .camera-search-btn {
        display: none; /* Moved into drawer / removed per prompt */
    }

    .header-right .search-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: var(--color-primary-text);
    }

    .header-right #wishlistIconBtn,
    .header-right #cartToggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: var(--color-primary-text);
    }

    .main-navigation {
        display: none;
    }

    /* Mobile Exclusive Search + Tabs + Circular Categories */
    .mobile-app-top-section {
        display: block !important;
        background-color: var(--color-secondary-bg);
        border-bottom: 1px solid var(--color-border-delicate);
        width: 100%;
    }

    /* Mobile Search Bar Style */
    .mobile-search-strip {
        display: block !important;
        padding: 8px 0 !important;
        background-color: var(--color-secondary-bg);
        width: 100%;
    }

    .mobile-search-input-box {
        width: calc(100% - 32px) !important;
        margin: 0 16px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        background: #FCFAF6 !important;
        border: 1px solid rgba(25, 25, 25, 0.10) !important;
        border-radius: 4px !important;
        padding: 0 12px !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }

    .mobile-search-input-box .search-icon {
        font-size: 14px;
        color: var(--color-secondary-text);
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }

    .mobile-search-input-box input {
        flex: 1;
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-family: var(--font-sans);
        font-size: 13px;
        color: var(--color-primary-text);
        position: relative;
        z-index: 3;
    }

    .mobile-search-input-box input::placeholder {
        color: #8B857F;
        font-size: 12px;
        font-weight: 400;
    }

    .voice-search-btn {
        color: var(--color-secondary-text);
        font-size: 13px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }

    /* Horizontal Category Tabs */
    .mobile-category-tabs {
        display: flex !important;
        align-items: center !important;
        justify-content: space-around !important;
        padding: 0 12px !important;
        height: 38px !important;
        border-top: 1px solid rgba(25, 25, 25, 0.06) !important;
        border-bottom: 1px solid rgba(25, 25, 25, 0.06) !important;
        background-color: var(--color-secondary-bg) !important;
    }

    .cat-tab {
        font-family: var(--font-sans);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: var(--color-secondary-text);
        text-transform: uppercase;
        text-decoration: none;
        padding: 9px 6px;
        position: relative;
        line-height: 1;
    }

    .cat-tab.active {
        color: var(--color-burgundy);
        font-weight: 600;
    }

    .cat-tab.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-burgundy);
    }

    /* Circular Quick Categories (Horizontal Scroll Rail) */
    .mobile-stories-rail {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        padding: 12px 16px 14px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        background-color: var(--color-primary-bg) !important;
        border-bottom: 1px solid rgba(25, 25, 25, 0.08) !important;
    }

    .mobile-stories-rail::-webkit-scrollbar {
        display: none;
    }

    .story-avatar-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        flex: 0 0 auto !important;
        width: 64px !important;
        text-align: center !important;
        cursor: pointer !important;
        text-decoration: none !important;
    }

    .avatar-ring {
        width: 62px !important;
        height: 62px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        padding: 2px !important;
        border: 1.5px solid var(--color-burgundy) !important;
        overflow: hidden !important;
        background: #FFF !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .avatar-ring img {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .story-avatar-item span {
        font-family: var(--font-sans);
        font-size: 10px;
        font-weight: 500;
        color: var(--color-primary-text);
        line-height: 1.15;
        letter-spacing: 0.02em;
        display: block;
        max-width: 64px;
        text-align: center;
        white-space: normal;
    }

    /* Mobile Hero Campaign Section (SUGNAMAL Luxury Editorial) */
    .hero-editorial-section,
    .hero-campaign-section {
        width: 100%;
        max-width: 100%;
        height: clamp(500px, 64vh, 560px);
        min-height: 500px;
        max-height: 560px;
        border-radius: 0;
    }

    .hero-slide-img,
    .hero-bg-img {
        object-position: center 20%;
    }

    .hero-img-wedding {
        object-position: center 20%;
    }

    .hero-img-bridal {
        object-position: center 18%;
    }

    .hero-slide-overlay {
        background: linear-gradient(
            to top,
            rgba(12, 12, 12, 0.58) 0%,
            rgba(12, 12, 12, 0.24) 45%,
            transparent 75%
        );
    }

    .hero-content-container {
        padding: 20px 20px calc(85px + env(safe-area-inset-bottom, 0px)) 20px;
        align-items: flex-end;
    }

    .hero-text-box {
        max-width: calc(100% - 10px);
    }

    .hero-eyebrow,
    .hero-sub {
        font-size: 10px;
        letter-spacing: 0.18em;
        margin-bottom: 8px;
    }

    .hero-heading,
    .hero-main-title {
        font-size: clamp(34px, 8.5vw, 40px);
        line-height: 1.02;
        letter-spacing: 0.02em;
        margin-bottom: 10px;
    }

    .hero-supporting,
    .hero-tagline {
        font-size: 13px;
        line-height: 1.45;
        max-width: 320px;
        margin-bottom: 18px;
    }

    .hero-cta-group {
        display: inline-flex;
        gap: 10px;
        width: 100%;
        max-width: 360px;
    }

    .hero-btn,
    .hero-action-btn {
        height: 42px;
        padding: 0 16px;
        font-size: 11px;
        letter-spacing: 0.08em;
        flex: 1 1 0;
        max-width: 165px;
    }

    .hero-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 11px;
        background: rgba(248, 245, 239, 0.88);
        color: #191919;
        border-radius: 2px;
    }

    .hero-nav-arrow.hero-prev {
        left: 8px;
    }

    .hero-nav-arrow.hero-next {
        right: 8px;
    }

    .hero-indicators {
        bottom: calc(65px + env(safe-area-inset-bottom, 0px));
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-indicator-line {
        width: 20px;
        height: 2px;
    }

    .hero-indicator-line.active {
        width: 28px;
    }

        /* Mobile Editorial Layout Overrides */
    .editorial-section-header,
    .editorial-split-header {
        margin-bottom: 24px;
    }

    /* Mobile Quick View Modal */
    .quick-view-card {
        max-width: 96%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .quick-view-content-grid {
        grid-template-columns: 1fr;
    }
    .quick-view-image {
        height: 230px;
    }
    .quick-view-details {
        padding: 22px 16px;
    }
    .qv-title {
        font-size: 1.35rem;
    }
    .qv-actions {
        flex-direction: column;
    }

    /* Sticky Bottom Bar */
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 56px;
        background: rgba(252, 250, 246, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(25, 25, 25, 0.08);
        box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.04);
        z-index: 1000;
        align-items: center;
        justify-content: space-around;
        padding: 0 4px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-sizing: border-box;
    }

    .mobile-bottom-item {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        height: 100%;
        min-height: 48px;
        padding: 4px 2px;
        text-decoration: none;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        color: var(--color-primary-text, #191919);
        transition: color 0.2s ease, opacity 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-item:active,
    .mobile-bottom-item:hover {
        color: var(--color-burgundy, #641F33);
    }

    .mobile-bottom-icon-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 20px;
        font-size: 15px;
        line-height: 1;
        color: inherit;
    }

    .mobile-bottom-item span {
        font-family: var(--font-sans);
        font-size: 8.5px;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1.1;
        color: inherit;
        text-align: center;
        white-space: nowrap;
    }

    .mobile-bottom-badge {
        position: absolute;
        top: -4px;
        right: -8px;
        background: var(--color-burgundy, #641F33);
        color: #FCFAF6;
        font-size: 8px;
        font-weight: 600;
        min-width: 14px;
        height: 14px;
        border-radius: 7px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 3px;
        line-height: 1;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    /* Mobile Account Modal Card */
    .account-modal-card {
        padding: 28px 20px 22px;
        max-width: 92%;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* ==========================================================================
       MOBILE NAVIGATION DRAWER & BACKDROP (max-width: 860px)
       ========================================================================== */
    .mobile-nav-backdrop {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.38);
        z-index: 10030;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 260ms ease, visibility 260ms ease;
    }

    .mobile-nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-drawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        height: 100dvh;
        width: 88vw;
        max-width: 340px;
        background: #FCFAF6;
        z-index: 10031;
        transform: translateX(-100%);
        transition: transform 260ms ease;
        box-shadow: 6px 0 28px rgba(15, 15, 15, 0.12);
        box-sizing: border-box;
        overflow: hidden;
    }

    .mobile-nav-drawer.active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(25, 25, 25, 0.08);
        background: #FCFAF6;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .mobile-nav-brand {
        font-family: var(--font-serif, "Playfair Display", Georgia, serif);
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.14em;
        color: #191919;
        text-transform: uppercase;
        line-height: 1;
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        font-size: 20px;
        font-weight: 300;
        line-height: 1;
        color: #191919;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        border-radius: 4px;
        transition: opacity 0.2s ease, transform 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:active {
        opacity: 0.65;
    }

    .mobile-nav-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 20px 32px;
        background: #FCFAF6;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-item {
        border-bottom: 1px solid rgba(25, 25, 25, 0.06);
    }

    .mobile-menu-item:last-child {
        border-bottom: none;
    }

    .mobile-direct-link,
    .mobile-menu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        height: 48px;
        font-family: var(--font-sans, "Montserrat", sans-serif);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: #191919;
        text-decoration: none;
        text-transform: uppercase;
        cursor: pointer;
        user-select: none;
        box-sizing: border-box;
        transition: color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-direct-link:hover,
    .mobile-direct-link:active,
    .mobile-menu-title:hover,
    .mobile-menu-title:active {
        color: var(--color-burgundy, #641F33);
    }

    .mobile-direct-link.mobile-sale {
        color: var(--color-burgundy, #641F33);
        font-weight: 600;
    }

    .submenu-indicator {
        font-size: 11px;
        color: #888;
        transition: transform 0.24s ease, color 0.2s ease;
    }

    .mobile-menu-item.open > .mobile-menu-title .submenu-indicator {
        transform: rotate(45deg);
        color: var(--color-burgundy, #641F33);
    }

    .mobile-submenu {
        list-style: none;
        padding: 0 0 10px 14px;
        margin: 0;
        display: none;
    }

    .mobile-menu-item.open > .mobile-submenu {
        display: block;
    }

    .mobile-submenu li {
        margin: 0;
    }

    .mobile-submenu a {
        display: flex;
        align-items: center;
        min-height: 40px;
        font-family: var(--font-sans, "Montserrat", sans-serif);
        font-size: 12.5px;
        font-weight: 400;
        letter-spacing: 0.03em;
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .mobile-submenu a:hover,
    .mobile-submenu a:active {
        color: var(--color-burgundy, #641F33);
    }

    .mobile-submenu .view-all-link {
        font-weight: 600;
        color: var(--color-burgundy, #641F33);
        padding-top: 4px;
    }

    .mobile-nav-footer {
        margin-top: 20px;
        padding-top: 14px;
        border-top: 1px solid rgba(25, 25, 25, 0.08);
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-footer-link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 42px;
        font-family: var(--font-sans, "Montserrat", sans-serif);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: #666;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.2s ease;
    }

    .mobile-footer-link i {
        font-size: 13px;
        width: 18px;
        text-align: center;
        color: #888;
    }

    .mobile-footer-link:hover,
    .mobile-footer-link:active {
        color: var(--color-burgundy, #641F33);
    }

    /* New Arrivals Responsive (Tablet: 641px - 860px) */
    .new-arrivals-section {
        padding-top: var(--section-space-tablet);
        padding-bottom: calc(var(--section-space-tablet) / 2);
    }
    .new-arrivals-section .homepage-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .new-arrivals-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 16px;
        margin-bottom: 20px;
    }
    .new-arrivals-eyebrow-wrap {
        gap: 10px;
        margin-bottom: 12px;
    }
    .new-arrivals-eyebrow-rule {
        width: 28px;
    }
    .new-arrivals-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .new-arrivals-title {
        font-size: 40px;
        line-height: 1.0;
        margin: 0;
    }
    .new-arrivals-view-all {
        font-size: 10px;
        letter-spacing: 0.12em;
        gap: 10px;
        padding-bottom: 3px;
        flex-shrink: 0;
    }
    .new-arrivals-divider {
        margin-bottom: 26px;
    }
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 34px;
    }
    .new-arrival-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .new-arrival-image-wrap {
        margin-bottom: 14px;
        aspect-ratio: 4 / 5;
    }
    .new-arrival-info {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .new-arrival-name {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 5px;
        min-height: 36px;
    }
    .new-arrival-price-row {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 4px 8px;
        line-height: 1.25;
        min-height: 32px;
    }
    .new-arrival-price-current {
        font-size: 13.5px;
        font-weight: 500;
    }
    .new-arrival-price-original {
        font-size: 11.5px;
    }
    .new-arrival-price-discount {
        font-size: 11px;
    }
    .new-arrival-cta-wrap {
        margin-top: auto;
        padding-top: 14px;
        position: relative;
        width: 100%;
    }
    .new-arrival-add-btn {
        width: 100%;
        height: 42px;
        font-size: 10px;
        letter-spacing: 0.10em;
    }
    .new-arrival-size-popover {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        bottom: calc(100% + 6px);
        padding: 10px 8px;
        z-index: 25;
    }
    .size-popover-title {
        font-size: 9.5px;
        letter-spacing: 0.10em;
    }
    .size-options-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        margin-top: 8px;
    }
    .size-options-row .size-btn {
        height: 36px;
        min-width: 0;
        width: 100%;
        font-size: 10px;
        padding: 0;
    }
    .new-arrival-badge {
        top: 9px;
        left: 9px;
        font-size: 8.5px;
        padding: 5px 7px;
    }
    .new-arrival-wishlist-btn {
        top: 9px;
        right: 9px;
        width: 33px;
        height: 33px;
        font-size: 13.5px;
    }
    .new-arrival-img-secondary {
        display: none !important;
    }
    .new-arrival-card:hover .new-arrival-img-primary {
        opacity: 1 !important;
        transform: none !important;
    }
    /* Mobile crop refinement */
    .new-arrival-card:nth-child(1) .new-arrival-img-primary {
        object-position: center top;
    }
    .new-arrival-card:nth-child(2) .new-arrival-img-primary {
        object-position: center 10%;
    }
    .new-arrival-card:nth-child(3) .new-arrival-img-primary {
        object-position: center 6%;
    }
    .new-arrival-card:nth-child(4) .new-arrival-img-primary {
        object-position: center 15%;
    }
}

/* Tablet Landscape / Small Desktop (861px - 1024px) */
@media (min-width: 861px) and (max-width: 1024px) {
    .new-arrivals-section {
        padding-top: var(--section-space-tablet);
        padding-bottom: calc(var(--section-space-tablet) / 2);
    }
    .new-arrivals-section .homepage-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .new-arrivals-grid {
        gap: 16px;
    }
    .new-arrival-name {
        font-size: 12.5px;
    }
    .new-arrival-price-current {
        font-size: 13.5px;
    }
    .new-arrival-add-btn {
        height: 40px;
        font-size: 10px;
    }
}

/* Mobile Screens (max-width: 640px) */
@media (max-width: 640px) {
    .new-arrivals-section {
        padding-top: var(--section-space-mobile);
        padding-bottom: calc(var(--section-space-mobile) / 2);
    }
    .new-arrivals-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        margin-bottom: 18px;
        gap: 12px;
    }
    .new-arrivals-eyebrow-wrap {
        gap: 9px;
        margin-bottom: 10px;
    }
    .new-arrivals-eyebrow-rule {
        width: 24px;
    }
    .new-arrivals-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .new-arrivals-title {
        font-size: 32px;
        line-height: 1.05;
        margin: 0;
    }
    .new-arrivals-view-all {
        font-size: 9.5px;
        letter-spacing: 0.12em;
        gap: 8px;
        padding-bottom: 2px;
    }
    .new-arrivals-divider {
        margin-bottom: 24px;
    }
}

/* Small Smart Phones (max-width: 480px) */
@media (max-width: 480px) {
    .brand-logo .logo-title {
        font-size: 1.25rem;
        letter-spacing: 0.14em;
    }
    .hero-heading,
    .hero-main-title {
        font-size: clamp(30px, 8.5vw, 36px);
    }
    .hero-btn,
    .hero-action-btn {
        padding: 0 14px;
        font-size: 10.5px;
    }
    .country-modal-card {
        padding: 30px 18px;
    }
    .modal-title {
        font-size: 1.35rem;
    }
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }

    /* Mobile New Arrivals Specifications (375px - 480px) */
    .new-arrivals-section {
        padding-top: var(--section-space-mobile);
        padding-bottom: calc(var(--section-space-mobile) / 2);
    }
    .new-arrivals-section .homepage-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .new-arrivals-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        margin-bottom: 18px;
        gap: 12px;
    }
    .new-arrivals-eyebrow-wrap {
        gap: 8px;
        margin-bottom: 10px;
    }
    .new-arrivals-eyebrow-rule {
        width: 24px;
    }
    .new-arrivals-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .new-arrivals-title {
        font-size: 32px;
        line-height: 1.05;
        margin: 0;
    }
    .new-arrivals-view-all {
        font-size: 9.5px;
        letter-spacing: 0.12em;
        gap: 8px;
        padding-bottom: 2px;
    }
    .new-arrivals-divider {
        margin-bottom: 22px;
    }
    .new-arrivals-grid {
        column-gap: 11px;
        row-gap: 30px;
    }
    .new-arrival-image-wrap {
        margin-bottom: 12px;
        aspect-ratio: 4 / 5;
    }
    .new-arrival-name {
        font-size: 12.5px;
        line-height: 1.38;
        margin-bottom: 5px;
        min-height: 35px;
    }
    .new-arrival-price-row {
        gap: 4px 8px;
        min-height: 30px;
    }
    .new-arrival-price-current {
        font-size: 13px;
    }
    .new-arrival-price-original {
        font-size: 11.5px;
    }
    .new-arrival-price-discount {
        font-size: 10.5px;
    }
    .new-arrival-cta-wrap {
        margin-top: auto;
        padding-top: 12px;
        position: relative;
        width: 100%;
    }
    .new-arrival-add-btn {
        width: 100%;
        height: 40px;
        font-size: 10px;
        letter-spacing: 0.09em;
    }
    .new-arrival-size-popover {
        padding: 8px 6px;
        bottom: calc(100% + 6px);
    }
    .size-popover-title {
        font-size: 9px;
    }
    .size-options-row {
        gap: 4px;
    }
    .size-options-row .size-btn {
        height: 36px;
        font-size: 9.5px;
    }
    .new-arrival-badge {
        top: 9px;
        left: 9px;
        font-size: 8.5px;
        padding: 5px 6.5px;
    }
    .new-arrival-wishlist-btn {
        top: 9px;
        right: 9px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* ==========================================================================
   CELEBRATION FAVOURITES — PART 1 (SECTION FOUNDATION & BASIC DESKTOP LAYOUT)
   ========================================================================== */

.celebration-favourites-section {
    background-color: #FCFAF6;
    padding-top: calc(var(--section-space-desktop) / 2);
    padding-bottom: calc(var(--section-space-desktop) / 2);
    width: 100%;
    position: relative;
}

.celebration-favourites-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 52px;
    padding-right: 52px;
    box-sizing: border-box;
}

/* Centered Editorial Heading Group */
.celebration-header-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}

/* Horizontal Editorial Eyebrow Composition: ──────── WEDDING • SANGEET • FESTIVE ──────── */
.celebration-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    width: auto;
}

.celebration-eyebrow-rule {
    display: block;
    width: 100px;
    height: 1px;
    background: #B39A6C;
    opacity: 0.75;
    flex-shrink: 0;
}

.celebration-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: #641F33;
    margin: 0;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
}

.celebration-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.0;
    color: #191919;
    letter-spacing: -0.015em;
    margin: 0 0 14px 0;
    text-align: center;
}

.celebration-supporting {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: #746D66;
    max-width: 480px;
    margin: 0 0 22px 0;
    line-height: 1.5;
    text-align: center;
}

/* Subtle Architectural Geometric Divider: ──────────── ◇ ──────────── */
.celebration-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.celebration-divider-line {
    display: block;
    width: 98px;
    height: 1px;
    background: #B39A6C;
    opacity: 0.75;
    flex-shrink: 0;
}

.celebration-divider-diamond,
.celebration-divider-motif {
    width: 8px;
    height: 8px;
    border: 1px solid #B39A6C;
    transform: rotate(45deg);
    background: transparent;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

.celebration-divider-diamond::after,
.celebration-divider-motif::after {
    content: '';
    width: 2px;
    height: 2px;
    background: #641F33;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Desktop 4-Column Product Grid */
.celebration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Frameless Product Card */
.celebration-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
}

.celebration-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: #ECE7DE;
    margin-bottom: 13px;
}

.celebration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.celebration-img-primary {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.celebration-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
}

/* Individual object-position for refined editorial cropping */
.celebration-card:nth-child(1) .celebration-img {
    object-position: center 15%;
}

.celebration-card:nth-child(2) .celebration-img {
    object-position: center 16%;
}

.celebration-card:nth-child(3) .celebration-img {
    object-position: center 12%;
}

.celebration-card:nth-child(4) .celebration-img {
    object-position: center 16%;
}

/* Subtle exposure & warmth balance for Card 4 primary */
.celebration-card:nth-child(4) .celebration-img-primary {
    filter: brightness(1.04) contrast(1.02) saturate(1.03);
}

/* Desktop Hover Transition (smooth fade & subtle 1.018 scale) */
@media (hover: hover) and (pointer: fine) {
    .celebration-card:hover .celebration-img-primary {
        opacity: 0;
        transform: scale(1.018);
    }
    .celebration-card:hover .celebration-img-secondary {
        opacity: 1;
        transform: scale(1.018);
    }
}

.celebration-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.celebration-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    background: rgba(100, 31, 51, 0.92);
    color: #FCFAF6;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 9px;
    border-radius: 2px;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.celebration-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 36px;
    height: 36px;
    background: rgba(252, 250, 246, 0.92);
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 50%;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 0;
    outline: none;
}

.celebration-wishlist-btn:hover {
    color: #641F33;
    border-color: rgba(100, 31, 51, 0.35);
    background: #FFFFFF;
    transform: scale(1.04);
}

.celebration-wishlist-btn.active {
    color: #641F33;
    background: #FFFFFF;
    border-color: #641F33;
}

.celebration-wishlist-btn.active i {
    font-weight: 900;
    color: #641F33;
}

.celebration-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 1.35;
    margin: 0 0 5px 0;
    letter-spacing: 0.005em;
    min-height: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.celebration-price-row {
    min-height: 17px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 13px;
    line-height: 1.2;
}

.celebration-price-current {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 1.2;
    letter-spacing: 0.005em;
}

.celebration-price-original {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: #8B847D;
    text-decoration: line-through;
    letter-spacing: 0.01em;
}

.celebration-price-discount {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: #641F33;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* --- Celebration Favourites: ADD TO BAG CTA & Size Selector Popover --- */
.celebration-cta-wrap {
    margin-top: auto;
    position: relative;
    width: 100%;
}

.celebration-add-btn {
    width: 100%;
    height: 43px;
    background: transparent;
    border: 1px solid rgba(25, 25, 25, 0.45);
    border-radius: 2px;
    color: #191919;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
}

.celebration-add-btn:hover {
    background-color: #641F33;
    border-color: #641F33;
    color: #FCFAF6;
}

.celebration-add-btn:active {
    transform: scale(0.99);
}

/* Size Selector Popover for Celebration Favourites */
.celebration-size-popover {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #FCFAF6;
    border: 1px solid rgba(25, 25, 25, 0.16);
    border-radius: 2px;
    padding: 10px 12px;
    z-index: 20;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    box-sizing: border-box;
}

.celebration-size-popover.active {
    display: block;
    animation: celebrationSizeFadeIn 180ms ease forwards;
}

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

.celebration-size-popover .size-popover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.celebration-size-popover .size-popover-title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6D6862;
    text-transform: uppercase;
}

.celebration-size-popover .size-popover-close {
    background: transparent;
    border: none;
    font-size: 14px;
    line-height: 1;
    color: #8B847D;
    cursor: pointer;
    padding: 0 2px;
}

.celebration-size-popover .size-popover-close:hover {
    color: #191919;
}

.celebration-size-popover .size-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.celebration-size-popover .size-btn {
    flex: 1;
    height: 35px;
    min-width: 32px;
    max-width: 48px;
    background: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.22);
    border-radius: 2px;
    color: #191919;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 160ms ease;
    outline: none;
}

.celebration-size-popover .size-btn:hover {
    border-color: #641F33;
    color: #641F33;
}

.celebration-size-popover .size-btn.selected {
    background: #641F33;
    border-color: #641F33;
    color: #FCFAF6;
}

/* ==========================================================================
   CELEBRATION FAVOURITES — RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

/* 1. Large Tablet (861px - 1024px) */
@media (max-width: 1024px) {
    .celebration-favourites-container {
        padding-left: 28px;
        padding-right: 28px;
    }
    .celebration-eyebrow-rule {
        width: 80px;
    }
    .celebration-title {
        font-size: 46px;
    }
    .celebration-divider-line {
        width: 80px;
    }
    .celebration-grid {
        gap: 18px;
    }
    .celebration-price-row {
        gap: 6px 8px;
    }
    .celebration-name {
        font-size: 13px;
    }
}

/* 1.5. Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .celebration-favourites-section {
        padding-top: calc(var(--section-space-tablet) / 2);
        padding-bottom: calc(var(--section-space-tablet) / 2);
    }
}

/* 2. Standard Tablet (641px - 860px) */
@media (max-width: 860px) {
    .celebration-favourites-section {
        padding-top: calc(var(--section-space-tablet) / 2);
        padding-bottom: calc(var(--section-space-tablet) / 2);
    }
    .celebration-favourites-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .celebration-eyebrow-rule {
        width: 65px;
        opacity: 0.72;
    }
    .celebration-eyebrow-wrap {
        gap: 14px;
        margin-bottom: 16px;
    }
    .celebration-title {
        font-size: 42px;
    }
    .celebration-divider-line {
        width: 65px;
    }
    .celebration-supporting {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .celebration-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 18px;
        row-gap: 32px;
    }
    .celebration-name {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 5px;
        min-height: 18px;
    }
    .celebration-add-btn {
        height: 42px;
        font-size: 10.5px;
    }
}

/* 3. Mobile Screens (max-width: 640px) */
@media (max-width: 640px) {
    .celebration-favourites-section {
        padding-top: calc(var(--section-space-mobile) / 2);
        padding-bottom: calc(var(--section-space-mobile) / 2);
    }
    .celebration-favourites-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .celebration-eyebrow-wrap {
        gap: 12px;
        margin-bottom: 14px;
    }
    .celebration-eyebrow-rule {
        width: 40px;
        opacity: 0.70;
    }
    .celebration-eyebrow {
        font-size: 9px;
        letter-spacing: 0.16em;
    }
    .celebration-title {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 10px;
    }
    .celebration-supporting {
        font-size: 12.5px;
        line-height: 1.4;
        max-width: 310px;
        margin: 0 auto 16px auto;
        padding: 0 4px;
    }
    .celebration-divider {
        gap: 12px;
        margin-bottom: 26px;
    }
    .celebration-divider-line {
        width: 45px;
        opacity: 0.70;
    }
    .celebration-divider-diamond,
    .celebration-divider-motif {
        width: 6px;
        height: 6px;
        opacity: 0.90;
    }
    .celebration-divider-diamond::after,
    .celebration-divider-motif::after {
        width: 1.5px;
        height: 1.5px;
        background: #641F33;
    }
    .celebration-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 11px;
        row-gap: 32px;
    }
    .celebration-image-wrap {
        aspect-ratio: 4 / 5;
        margin-bottom: 10px;
    }
    /* Mobile-specific crops for optimal garment and silhouette visibility */
    .celebration-card:nth-child(1) .celebration-img {
        object-position: center 12%;
    }
    .celebration-card:nth-child(2) .celebration-img {
        object-position: center 14%;
    }
    .celebration-card:nth-child(3) .celebration-img {
        object-position: center 10%;
    }
    .celebration-card:nth-child(4) .celebration-img {
        object-position: center 14%;
    }
    .celebration-badge {
        top: 9px;
        left: 9px;
        font-size: 8.5px;
        padding: 5px 7px;
        letter-spacing: 0.08em;
    }
    .celebration-wishlist-btn {
        top: 9px;
        right: 9px;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .celebration-name {
        font-size: 12.5px;
        line-height: 1.35;
        margin-bottom: 5px;
        min-height: 17px;
    }
    .celebration-price-row {
        min-height: 16px;
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 4px 6px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    .celebration-price-current {
        font-size: 13px;
    }
    .celebration-price-original {
        font-size: 11.5px;
    }
    .celebration-price-discount {
        font-size: 10.5px;
    }
    .celebration-add-btn {
        height: 40px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }
    .celebration-size-popover {
        bottom: calc(100% + 6px);
        padding: 8px 6px;
    }
    .celebration-size-popover .size-popover-header {
        margin-bottom: 6px;
    }
    .celebration-size-popover .size-popover-title {
        font-size: 9.5px;
    }
    .celebration-size-popover .size-options-row {
        gap: 4px;
    }
    .celebration-size-popover .size-btn {
        height: 35px;
        min-width: 28px;
        font-size: 10.5px;
    }
}

/* ==========================================================================
   SHOP BY OCCASION SECTION (PART 1: FOUNDATION & ASYMMETRIC EDITORIAL)
   ========================================================================== */

.shop-by-occasion-section {
    background-color: #F8F5EF;
    padding-top: calc(var(--section-space-desktop) / 2);
    padding-bottom: 68px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    width: 100%;
}

.occasion-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 52px;
    box-sizing: border-box;
}

/* Header Group: Left-aligned editorial discovery heading with brass rule and burgundy accent */
.occasion-header {
    text-align: left;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.occasion-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
}

.occasion-eyebrow-rule {
    display: inline-block;
    width: 52px;
    height: 1px;
    background-color: #B39A6C;
    opacity: 0.75;
    flex-shrink: 0;
}

.occasion-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #641F33;
    line-height: 1.2;
    margin: 0;
}

.occasion-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.0;
    color: #191919;
    margin: 0 0 14px 0;
    letter-spacing: -0.015em;
    text-transform: none;
}

.occasion-supporting {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: #746D66;
    max-width: 440px;
    margin: 0 0 19px 0;
    line-height: 1.55;
}

.occasion-accent {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.occasion-accent-dot {
    width: 3px;
    height: 3px;
    background-color: #641F33;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.occasion-accent-line {
    width: 78px;
    height: 1px;
    background-color: #B39A6C;
    opacity: 0.72;
}

/* Asymmetric Desktop Layout: Left 49fr, Right 51fr */
.occasion-composition {
    display: grid;
    grid-template-columns: 49fr 51fr;
    gap: 20px;
    align-items: stretch;
    height: 640px;
}

/* Base Tile Styling */
.occasion-tile {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background-color: #EAE5DC;
    border-radius: 0;
    min-height: 0;
    min-width: 0;
    cursor: pointer;
}

.occasion-tile:focus-visible {
    outline: 2px solid #5A1E2D;
    outline-offset: -2px;
}

.occasion-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Large Tile (Wedding) */
.occasion-large-tile {
    height: 640px;
    min-height: 0;
}

.occasion-large-tile .occasion-tile-img {
    object-position: center 18%; /* Wedding near-full bridal maroon zardozi lehenga */
    transition: transform 550ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Right 2x2 Grid */
.occasion-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    height: 640px;
    min-height: 0;
}

.occasion-small-tile {
    height: 100%;
    min-height: 0;
}

.occasion-small-grid .occasion-small-tile:nth-child(1) .occasion-tile-img {
    object-position: center 15%; /* Sangeet champagne-gold twirling lehenga */
}

.occasion-small-grid .occasion-small-tile:nth-child(2) .occasion-tile-img {
    object-position: center 20%; /* Mehendi bougainvillea & festive attire */
}

.occasion-small-grid .occasion-small-tile:nth-child(3) .occasion-tile-img {
    object-position: center 20%; /* Reception champagne-gold couture & emerald polki in palace arch */
}

.occasion-small-grid .occasion-small-tile:nth-child(4) .occasion-tile-img {
    object-position: center 45%; /* Festive City Palace peacock gate */
}

/* Text Overlay & Localized Bottom Gradient */
.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 24px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
    pointer-events: none;
    transition: background 300ms ease;
}

.occasion-large-tile .occasion-overlay {
    padding: 36px 32px 28px;
    gap: 6px;
}

.occasion-tile-name {
    font-family: var(--font-serif);
    color: #FCFAF6;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
    transform: translateY(0);
    transition: transform 200ms ease;
    will-change: transform;
}

.occasion-large-tile .occasion-tile-name {
    font-size: 34px;
}

.occasion-small-tile .occasion-tile-name {
    font-size: 22px;
}

.occasion-tile-cta {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(252, 250, 246, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 200ms ease, color 200ms ease;
}

.occasion-cta-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 200ms ease;
}

/* Desktop Hover Micro-Interactions (Scoped to hover-capable pointers only) */
@media (hover: hover) and (pointer: fine) {
    .occasion-tile:hover .occasion-tile-img {
        transform: scale(1.022);
    }

    .occasion-tile:hover .occasion-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
    }

    .occasion-tile:hover .occasion-tile-name {
        transform: translateY(-2.5px);
    }

    .occasion-tile:hover .occasion-tile-cta {
        opacity: 1;
        color: #FCFAF6;
    }

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

/* ==========================================================================
   OCCASION RESPONSIVE POLISH (TABLET & MOBILE)
   ========================================================================== */

/* Large Tablet / 1024px */
@media (max-width: 1024px) {
    .shop-by-occasion-section {
        padding-top: calc(var(--section-space-tablet) / 2);
        padding-bottom: var(--section-space-tablet);
        padding-left: 0;
        padding-right: 0;
    }
    .occasion-container {
        padding: 0 40px;
    }
    .occasion-title {
        font-size: 38px;
    }
    .occasion-composition {
        height: 560px;
        gap: 16px;
    }
    .occasion-large-tile {
        height: 560px;
    }
    .occasion-small-grid {
        height: 560px;
        gap: 14px;
    }
    .occasion-large-tile .occasion-tile-name {
        font-size: 30px;
    }
    .occasion-large-tile .occasion-tile-cta {
        font-size: 10px;
    }
    .occasion-small-tile .occasion-tile-name {
        font-size: 20px;
    }
    .occasion-small-tile .occasion-tile-cta {
        font-size: 9.5px;
    }
}

/* Mid Tablet / 860px */
@media (max-width: 860px) {
    .shop-by-occasion-section {
        padding-top: calc(var(--section-space-tablet) / 2);
        padding-bottom: var(--section-space-tablet);
        padding-left: 0;
        padding-right: 0;
    }
    .occasion-container {
        padding: 0 28px;
    }
    .occasion-header {
        margin-bottom: 30px;
    }
    .occasion-eyebrow-wrap {
        gap: 12px;
        margin-bottom: 14px;
    }
    .occasion-eyebrow-rule {
        width: 42px;
    }
    .occasion-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .occasion-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    .occasion-supporting {
        font-size: 13.5px;
        max-width: 400px;
        margin-bottom: 16px;
    }
    .occasion-accent-line {
        width: 64px;
    }
    .occasion-composition {
        grid-template-columns: 1fr;
        height: auto;
        gap: 16px;
    }
    .occasion-large-tile {
        height: 440px;
    }
    .occasion-large-tile .occasion-tile-img {
        object-position: center 18%;
    }
    .occasion-large-tile .occasion-overlay {
        padding: 28px 24px 22px;
    }
    .occasion-large-tile .occasion-tile-name {
        font-size: 30px;
    }
    .occasion-large-tile .occasion-tile-cta {
        font-size: 10px;
    }
    .occasion-small-grid {
        height: auto;
        gap: 14px;
    }
    .occasion-small-tile {
        height: 240px;
    }
    .occasion-small-tile .occasion-overlay {
        padding: 18px 16px 16px;
    }
    .occasion-small-tile .occasion-tile-name {
        font-size: 19px;
    }
    .occasion-small-tile .occasion-tile-cta {
        font-size: 9.5px;
    }
}

/* Small Tablet / Large Mobile / 640px */
@media (max-width: 640px) {
    .shop-by-occasion-section {
        padding-top: calc(var(--section-space-mobile) / 2);
        padding-bottom: var(--section-space-mobile);
        padding-left: 0;
        padding-right: 0;
    }
    .occasion-container {
        padding: 0 20px;
    }
    .occasion-header {
        margin-bottom: 26px;
    }
    .occasion-eyebrow-wrap {
        gap: 10px;
        margin-bottom: 12px;
    }
    .occasion-eyebrow-rule {
        width: 34px;
    }
    .occasion-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .occasion-title {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 10px;
    }
    .occasion-supporting {
        font-size: 12.5px;
        line-height: 1.5;
        max-width: 340px;
        margin-bottom: 14px;
    }
    .occasion-accent-line {
        width: 54px;
    }
    .occasion-composition {
        gap: 14px;
    }
    .occasion-large-tile {
        height: 380px;
    }
    .occasion-large-tile .occasion-overlay {
        padding: 24px 20px 20px;
    }
    .occasion-large-tile .occasion-tile-name {
        font-size: 28px;
    }
    .occasion-large-tile .occasion-tile-cta {
        font-size: 9.5px;
    }
    .occasion-small-grid {
        gap: 12px;
    }
    .occasion-small-tile {
        height: 190px;
    }
    .occasion-small-tile .occasion-overlay {
        padding: 16px 14px 14px;
    }
    .occasion-small-tile .occasion-tile-name {
        font-size: 17.5px;
    }
    .occasion-small-tile .occasion-tile-cta {
        font-size: 9px;
    }
}

/* Mobile Devices / 480px and below (375px–430px) */
@media (max-width: 480px) {
    .shop-by-occasion-section {
        padding-top: calc(var(--section-space-mobile) / 2);
        padding-bottom: var(--section-space-mobile);
        padding-left: 0;
        padding-right: 0;
    }
    .occasion-container {
        padding: 0 16px;
    }
    .occasion-header {
        text-align: left;
        margin-bottom: 26px;
    }
    .occasion-eyebrow-wrap {
        gap: 10px;
        margin-bottom: 12px;
    }
    .occasion-eyebrow-rule {
        width: 32px;
    }
    .occasion-eyebrow {
        font-size: 9.5px;
        letter-spacing: 0.18em;
    }
    .occasion-title {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 10px;
    }
    .occasion-supporting {
        font-size: 12.5px;
        line-height: 1.5;
        max-width: 320px;
        margin-bottom: 14px;
    }
    .occasion-accent-line {
        width: 52px;
    }
    .occasion-composition {
        gap: 12px;
    }
    .occasion-large-tile {
        height: 380px;
    }
    .occasion-large-tile .occasion-tile-img {
        object-position: center 18%;
    }
    .occasion-large-tile .occasion-overlay {
        padding: 24px 20px 20px;
    }
    .occasion-large-tile .occasion-tile-name {
        font-size: 28px;
    }
    .occasion-large-tile .occasion-tile-cta {
        font-size: 9.5px;
    }
    .occasion-small-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }
    .occasion-small-tile {
        height: 190px;
    }
    .occasion-small-tile .occasion-overlay {
        padding: 16px 13px 13px;
        gap: 4px;
    }
    .occasion-small-tile .occasion-tile-name {
        font-size: 17px;
    }
    .occasion-small-tile .occasion-tile-cta {
        font-size: 9px;
        gap: 5px;
    }
}

/* ==========================================================================
   VISIT OUR STORE SECTION (EXPERIENCE SUGNAMAL)
   ========================================================================== */
.visit-store-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.visit-store-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.visit-store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.40) 34%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.02) 88%);
    z-index: 2;
    pointer-events: none;
}

.visit-store-content {
    position: relative;
    z-index: 3;
    max-width: 400px;
    margin-left: 9%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
}

.visit-store-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: rgba(248, 245, 239, 0.85);
    margin: 0 0 14px 0;
    display: block;
    line-height: 1.2;
}

.visit-store-title {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.015em;
    color: #F8F5EF;
    margin: 0 0 18px 0;
    text-transform: none;
}

.visit-store-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 400px;
    color: rgba(248, 245, 239, 0.82);
    margin: 0 0 24px 0;
}

.visit-store-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 20px;
    background-color: rgba(248, 245, 239, 0.94);
    border: 1px solid rgba(248, 245, 239, 0.88);
    color: #191919;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    box-sizing: border-box;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
    cursor: pointer;
}

.visit-store-cta .visit-store-arrow {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    color: inherit;
    transition: transform 200ms ease;
}

.visit-store-cta:hover {
    background-color: #641F33;
    border-color: #641F33;
    color: #F8F5EF;
}

.visit-store-cta:hover .visit-store-arrow {
    transform: translateX(3px);
}

/* Tablet: Visit Our Store (641px - 860px) */
@media (max-width: 860px) {
    .visit-store-section {
        height: 460px;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .visit-store-content {
        max-width: 380px;
        margin-left: 7%;
    }
    .visit-store-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    .visit-store-desc {
        margin-bottom: 22px;
    }
}

/* Mobile: Visit Our Store (max-width: 640px) */
@media (max-width: 640px) {
    .visit-store-section {
        height: 450px;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        align-items: flex-end;
    }
    .visit-store-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 40%, rgba(0, 0, 0, 0.74) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, transparent 80%);
    }
    .visit-store-content {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 36px;
        max-width: calc(100% - 40px);
    }
    .visit-store-title {
        font-size: 36px;
        line-height: 1.05;
        margin-bottom: 14px;
    }
    .visit-store-desc {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .visit-store-cta {
        height: 40px;
        padding: 0 18px;
        font-size: 10px;
    }
}

/* ==========================================================================
   16. SUGNAMAL FOOTER — PART 1: DESKTOP FOUNDATION
   ========================================================================== */

.site-footer {
    background-color: #191919;
    color: #F8F5EF;
    padding: 80px 0 28px;
    position: relative;
    border-top: 1px solid rgba(248, 245, 239, 0.14);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 52px;
}

/* --- Top Brand + Newsletter Area (45% / 55%) --- */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    padding-bottom: 60px;
}

.footer-brand-side {
    flex: 0 0 44%;
    max-width: 440px;
}

.footer-brand-logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: #F8F5EF;
    display: block;
    line-height: 1.1;
}

.footer-brand-tagline {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(248, 245, 239, 0.62);
    margin: 14px 0 0;
}

.footer-newsletter-side {
    flex: 0 0 52%;
    max-width: 520px;
}

.footer-newsletter-label {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F8F5EF;
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
}

.footer-newsletter-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(248, 245, 239, 0.62);
    margin: 0 0 20px;
}

.footer-newsletter-form {
    width: 100%;
}

.footer-input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(248, 245, 239, 0.35);
    padding-bottom: 7px;
    transition: border-color 200ms ease;
}

.footer-input-wrap:focus-within {
    border-bottom-color: #F8F5EF;
}

.footer-email-input {
    background: transparent;
    border: none;
    outline: none;
    color: #F8F5EF;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    flex: 1;
    min-width: 0;
    padding: 4px 0;
    line-height: 1.4;
}

.footer-email-input::placeholder {
    color: rgba(248, 245, 239, 0.40);
    font-size: 13px;
}

.footer-join-btn {
    background: transparent;
    border: none;
    outline: none;
    color: #F8F5EF;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 4px 0 4px 18px;
    white-space: nowrap;
    transition: color 200ms ease, transform 200ms ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.footer-join-btn:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-join-btn:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 4px;
}

/* --- Thin Divider Line --- */
.footer-divider {
    height: 1px;
    background-color: rgba(248, 245, 239, 0.14);
    width: 100%;
    margin: 0;
}

/* --- Main Navigation Links (4 Clean Columns / Mobile Accordion) --- */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 52px;
    row-gap: 36px;
    padding: 60px 0 64px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F8F5EF;
    margin: 0 0 20px 0;
    line-height: 1.2;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: default;
}

.footer-accordion-icon {
    display: none !important;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: rgba(248, 245, 239, 0.65);
    text-decoration: none;
    line-height: 1.35;
    display: inline-block;
    transition: color 180ms ease;
}

.footer-link:hover {
    color: #F8F5EF;
}

.footer-link:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 3px;
}

/* --- Footer Contact Column --- */
.footer-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2px;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #F8F5EF;
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
}

.footer-contact-value {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(248, 245, 239, 0.70);
    text-decoration: none;
    display: inline-block;
    transition: color 180ms ease;
}

.footer-contact-value:hover,
.footer-contact-value:active {
    color: #F8F5EF;
}

.footer-contact-value:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 3px;
}

/* --- Footer Legal Row --- */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    color: rgba(248, 245, 239, 0.45);
}

.footer-legal-link {
    color: rgba(248, 245, 239, 0.55);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 11.5px;
    transition: color 180ms ease;
}

.footer-legal-link:hover,
.footer-legal-link:active {
    color: #F8F5EF;
}

.footer-legal-separator {
    color: rgba(248, 245, 239, 0.35);
    font-size: 12px;
}

/* --- Bottom Footer Bar --- */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-family: var(--font-sans);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    color: rgba(248, 245, 239, 0.55);
    letter-spacing: 0.02em;
}

.footer-currency-wrap {
    display: flex;
    align-items: center;
}

.footer-currency-btn {
    background: transparent;
    border: 1px solid rgba(248, 245, 239, 0.18);
    border-radius: 20px;
    padding: 5px 14px;
    color: rgba(248, 245, 239, 0.75);
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 180ms ease;
}

.footer-currency-btn:hover {
    border-color: rgba(248, 245, 239, 0.45);
    color: #F8F5EF;
    background-color: rgba(248, 245, 239, 0.04);
}

.footer-currency-btn:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 3px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-icon {
    color: rgba(248, 245, 239, 0.65);
    font-size: 13.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-social-icon:hover {
    color: #F8F5EF;
    transform: translateY(-1px);
}

.footer-social-icon:focus-visible {
    outline: 2px solid var(--color-burgundy);
    outline-offset: 3px;
}

/* --- Responsive Tablet Refinement (641px to 1024px) --- */
@media (max-width: 1024px) and (min-width: 641px) {
    .site-footer {
        padding: 68px 0 28px;
    }
    .footer-container {
        padding: 0 40px;
    }
    .footer-top-row {
        gap: 40px;
        padding-bottom: 48px;
    }
    .footer-brand-side {
        flex: 0 0 42%;
        max-width: 42%;
    }
    .footer-newsletter-side {
        flex: 0 0 54%;
        max-width: 54%;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 48px;
        row-gap: 40px;
        padding: 48px 0 52px;
    }
    .footer-accordion-icon {
        display: none !important;
    }
    .footer-links-list {
        display: flex !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* --- Responsive Mobile Polish (max-width: 640px) --- */
@media (max-width: 640px) {
    .site-footer {
        padding: 56px 0 calc(84px + env(safe-area-inset-bottom, 0px));
    }
    .footer-container {
        padding: 0 16px;
    }

    /* 1. Brand Area */
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-bottom: 0;
    }

    .footer-brand-side {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        margin-bottom: 32px;
        text-align: left;
    }

    .footer-brand-logo {
        font-size: 26px;
        letter-spacing: 0.20em;
        line-height: 1.1;
    }

    .footer-brand-tagline {
        font-size: 12.5px;
        line-height: 1.55;
        max-width: 280px;
        margin: 10px 0 0;
        color: rgba(248, 245, 239, 0.62);
    }

    /* 2. Newsletter Area */
    .footer-newsletter-side {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-newsletter-label {
        font-size: 10px;
        letter-spacing: 0.16em;
        margin-bottom: 8px;
    }

    .footer-newsletter-desc {
        font-size: 12px;
        line-height: 1.5;
        color: rgba(248, 245, 239, 0.62);
        margin: 0 0 16px;
    }

    .footer-input-wrap {
        padding-bottom: 7px;
        width: 100%;
    }

    .footer-email-input {
        font-size: 13px;
        padding: 3px 0;
    }

    .footer-join-btn {
        font-size: 10.5px;
        letter-spacing: 0.14em;
        padding: 3px 0 3px 14px;
    }

    .footer-divider-top {
        display: none;
    }

    /* 3. Navigation Accordion Groups */
    .footer-nav-grid {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin-bottom: 36px;
        border-bottom: 1px solid rgba(248, 245, 239, 0.14);
    }

    .footer-nav-col {
        border-top: 1px solid rgba(248, 245, 239, 0.14);
        overflow: hidden;
    }

    .footer-accordion-btn {
        min-height: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: transparent;
        border: none;
        padding: 0 2px;
        margin: 0;
        cursor: pointer;
        text-align: left;
    }

    .footer-accordion-btn:focus-visible {
        outline: 2px solid var(--color-burgundy);
        outline-offset: -2px;
    }

    .footer-accordion-btn span {
        font-family: var(--font-sans);
        font-size: 10.5px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #F8F5EF;
    }

    .footer-accordion-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: rgba(248, 245, 239, 0.65);
        transition: transform 220ms ease, color 180ms ease;
    }

    .footer-nav-col.active .footer-accordion-icon {
        transform: rotate(45deg);
        color: #F8F5EF;
    }

    .footer-links-list,
    .footer-contact-wrap {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 2px;
        margin: 0;
        gap: 12px;
        display: flex;
        flex-direction: column;
        transition: max-height 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease, padding 200ms ease;
    }

    .footer-nav-col.active .footer-links-list,
    .footer-nav-col.active .footer-contact-wrap {
        max-height: 300px;
        opacity: 1;
        padding-bottom: 20px;
    }

    .footer-link {
        font-size: 12.5px;
        color: rgba(248, 245, 239, 0.65);
        line-height: 1.35;
        display: inline-block;
        padding: 2px 0;
    }

    .footer-link:hover,
    .footer-link:active {
        color: #F8F5EF;
    }

    .footer-divider-bottom {
        display: none;
    }

    /* 4. Bottom Bar Reorganization */
    .footer-bottom-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding-top: 0;
    }

    /* Order 1: India / INR */
    .footer-currency-wrap {
        order: 1;
    }

    .footer-currency-btn {
        padding: 6px 16px;
        font-size: 11.5px;
    }

    /* Order 2: Social Icons */
    .footer-social-links {
        order: 2;
        gap: 24px;
    }

    .footer-social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        color: rgba(248, 245, 239, 0.70);
    }

    .footer-social-icon:active,
    .footer-social-icon:hover {
        color: #F8F5EF;
    }

    /* Order 3: Legal Links */
    .footer-legal-links {
        order: 3;
        font-size: 11px;
        gap: 8px;
    }

    /* Order 4: Copyright */
    .footer-copyright {
        order: 4;
        font-size: 11px;
        color: rgba(248, 245, 239, 0.48);
        letter-spacing: 0.02em;
        margin-top: 4px;
    }
}

/* ==========================================================================
   SUGNAMAL PRODUCT DETAIL PAGE (PDP) - FOUNDATION & DESKTOP LAYOUT (PART 1A)
   ========================================================================== */

/* --- 1. Subtle Luxury Breadcrumb --- */
.pdp-breadcrumb-nav {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(25, 25, 25, 0.05);
}

.pdp-breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 52px 14px 52px;
}

.pdp-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.pdp-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    line-height: 1.4;
    color: #77716B;
}

.pdp-breadcrumb-link {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #77716B;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 180ms ease;
}

.pdp-breadcrumb-link:hover {
    color: #191919;
}

.pdp-breadcrumb-separator {
    color: #77716B;
    font-size: 11px;
    font-weight: 300;
    user-select: none;
    margin: 0 1px;
}

.pdp-breadcrumb-current {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: #77716B;
    letter-spacing: 0.03em;
}

/* --- 2. PDP Main Container & 2-Column Grid --- */
.pdp-main-section {
    width: 100%;
    margin-top: 34px;
    margin-bottom: 72px;
}

.pdp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 52px;
}

.pdp-layout-grid {
    display: grid;
    grid-template-columns: 59fr 41fr;
    column-gap: 52px;
    align-items: start;
}

/* --- 3. Left Column: Product Gallery Foundation --- */
.pdp-gallery-col {
    width: 100%;
}

.pdp-gallery-wrap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Vertical Thumbnail Rail (4 thumbnails) */
.pdp-thumbnail-rail {
    width: 74px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdp-thumb-btn {
    width: 74px;
    height: 98px;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(25, 25, 25, 0.12);
    background: #FAF8F5;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 180ms ease;
    border-radius: 0;
    display: block;
}

.pdp-thumb-btn:hover {
    border-color: #191919;
}

.pdp-thumb-btn.active {
    border-color: #191919;
    box-shadow: none;
}

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

/* 1 Large Main Product Image (Portrait Fashion Crop) */
.pdp-main-image-wrap {
    flex: 1;
    min-width: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #F6F3EC;
    border: 1px solid rgba(25, 25, 25, 0.06);
    position: relative;
}

.pdp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 280ms ease, transform 250ms ease;
    transform: scale(1);
    transform-origin: center center;
    pointer-events: none;
    will-change: transform, transform-origin;
}

/* Part 2B: Desktop Cursor-Follow Image Zoom (Fine Pointer Only) */
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
    .pdp-main-image-wrap {
        cursor: zoom-in;
    }

    .pdp-main-image-wrap.is-zoomed {
        cursor: zoom-out;
    }

    .pdp-main-image-wrap.is-zoomed .pdp-main-img {
        transform: scale(1.7);
    }
}

/* Disable Hover Zoom on Mobile / Touch / Non-fine Pointer */
@media (max-width: 768px), (pointer: coarse) {
    .pdp-main-image-wrap {
        cursor: default;
    }

    .pdp-main-image-wrap.is-zoomed .pdp-main-img {
        transform: scale(1) !important;
    }
}

/* Part 2D: Mobile Dots Indicator - Hidden on desktop/tablet */
.pdp-mobile-dots {
    display: none;
}

.pdp-mobile-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(25, 25, 25, 0.25);
    transition: background-color 200ms ease;
    display: inline-block;
    cursor: pointer;
}

.pdp-mobile-dot.active {
    background-color: #191919;
}

/* PDP Part 3B: Mobile Sticky Purchase Bar (Hidden on desktop/tablet) */
.pdp-sticky-bar {
    display: none !important;
}

/* --- 4. Right Column: Product Information Area (Frameless, Ivory Background) --- */
.pdp-info-col {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.pdp-info-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
}

/* Small Rectangular Burgundy Label: NEW */
.pdp-badge-wrap {
    margin-bottom: 14px;
}

.pdp-badge-new {
    display: inline-block;
    background-color: #641F33;
    color: #F8F5EF;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0;
    line-height: 1.2;
}

/* Product Title: Luxury Editorial Serif */
.pdp-product-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.22;
    color: #191919;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

/* Price */
.pdp-price-wrap {
    margin: 0;
}

.pdp-product-price {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #191919;
    letter-spacing: 0.02em;
}

/* --- 4.1. Short Product Description (Part 1B) --- */
.pdp-short-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.55;
    color: #6D6862;
    max-width: 400px;
    margin: 16px 0 0 0;
}

/* --- 4.2. Subtle Divider (Part 1B) --- */
.pdp-info-divider {
    width: 100%;
    max-width: 400px;
    border: none;
    border-top: 1px solid rgba(25, 25, 25, 0.12);
    margin: 22px 0;
}

/* --- 4.3. Color Area & Swatch (Part 1B) --- */
.pdp-color-section {
    width: 100%;
    max-width: 272px;
}

.pdp-color-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.pdp-color-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #191919;
}

.pdp-color-value {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    color: #6D6862;
}

.pdp-color-swatches {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdp-swatch-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid rgba(25, 25, 25, 0.22);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: outline 180ms ease, box-shadow 180ms ease;
    outline: none;
}

.pdp-swatch-btn.selected {
    outline: 1px solid #191919;
    outline-offset: 3px;
}

.pdp-swatch-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #FAF7F2;
    display: block;
}

/* --- 4.4. Size Area & Rectangular Selectors (Part 1B) --- */
.pdp-size-section {
    width: 100%;
    max-width: 272px;
    margin-top: 24px;
}

.pdp-size-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.pdp-size-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #191919;
}

.pdp-size-guide-btn {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #641F33;
    background: transparent;
    border: none;
    padding: 0 0 1px 0;
    border-bottom: 1px solid rgba(100, 31, 51, 0.45);
    cursor: pointer;
    line-height: 1.2;
    transition: border-color 180ms ease, color 180ms ease;
}

.pdp-size-guide-btn:hover {
    border-bottom-color: #641F33;
    color: #4A1222;
}

.pdp-size-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pdp-size-btn {
    width: 48px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(25, 25, 25, 0.22);
    color: #191919;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
    user-select: none;
}

.pdp-size-btn:hover {
    border-color: #641F33;
}

.pdp-size-btn.selected {
    background: #191919;
    border-color: #191919;
    color: #F8F5EF;
}

/* --- 4.5. Actions Area: Size Validation, Add to Bag & Wishlist (Part 1C) --- */
.pdp-actions-wrap {
    width: 100%;
    max-width: 400px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

/* Inline Size Validation Message */
.pdp-size-validation {
    display: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: #641F33;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pdp-size-validation.visible {
    display: block;
}

/* Primary CTA: ADD TO BAG */
.pdp-add-to-bag-btn {
    width: 100%;
    height: 50px;
    background-color: #641F33;
    border: 1px solid #641F33;
    border-radius: 0;
    color: #F8F5EF;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    transition: background-color 200ms ease, border-color 200ms ease;
    user-select: none;
}

.pdp-add-to-bag-btn:hover {
    background-color: #521728;
    border-color: #521728;
}

.pdp-add-to-bag-btn:focus-visible {
    outline: 2px solid #191919;
    outline-offset: 2px;
}

/* Secondary Action: ADD TO WISHLIST */
.pdp-wishlist-btn {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    margin-bottom: 24px;
    background-color: transparent;
    border: 1px solid rgba(25, 25, 25, 0.20);
    border-radius: 0;
    color: #191919;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    transition: all 180ms ease;
    user-select: none;
}

.pdp-wishlist-btn:hover {
    border-color: rgba(25, 25, 25, 0.45);
    background-color: rgba(25, 25, 25, 0.02);
}

.pdp-wishlist-btn:focus-visible {
    outline: 2px solid #641F33;
    outline-offset: 2px;
}

.pdp-wishlist-btn.active {
    color: #641F33;
    border-color: #641F33;
    background-color: rgba(100, 31, 51, 0.03);
}

.pdp-wishlist-btn.active i {
    color: #641F33;
}

/* --- 6. Delivery Checker & Trust Info (Part 1D) --- */
.pdp-delivery-section {
    width: 100%;
    max-width: 400px;
    margin-top: 0;
}

.pdp-delivery-heading {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #191919;
    margin-bottom: 8px;
    line-height: 1.2;
}

.pdp-delivery-form {
    width: 100%;
    max-width: 400px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(25, 25, 25, 0.25);
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    transition: border-color 200ms ease;
}

.pdp-delivery-form:focus-within {
    border-bottom-color: #641F33;
}

.pdp-pincode-input {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #191919;
    padding: 0;
    box-sizing: border-box;
}

.pdp-pincode-input::placeholder {
    color: #8B847D;
    opacity: 1;
}

.pdp-pincode-check-btn {
    background: transparent;
    border: none;
    padding: 0 0 0 12px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #641F33;
    cursor: pointer;
    outline: none;
    transition: color 180ms ease;
    white-space: nowrap;
}

.pdp-pincode-check-btn:hover {
    color: #521728;
}

.pdp-pincode-check-btn:focus-visible {
    outline: 2px solid #641F33;
    outline-offset: 2px;
}

.pdp-pincode-msg {
    display: none;
    margin-top: 8px;
    line-height: 1.4;
    font-family: var(--font-sans);
}

.pdp-pincode-msg.success {
    display: block;
    font-size: 11.5px;
    color: #50604F;
}

.pdp-pincode-msg.error {
    display: block;
    font-size: 11px;
    color: #641F33;
}

.pdp-trust-divider {
    border-top: 1px solid rgba(25, 25, 25, 0.12);
    margin-top: 22px;
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}

.pdp-trust-section {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
    max-width: 400px;
}

.pdp-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.pdp-trust-icon {
    font-size: 17px;
    color: #191919;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdp-trust-text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* --- 7. Product Information Accordions (Part 1E) --- */
.pdp-accordions-group {
    width: 100%;
    max-width: 400px;
    margin-top: 24px;
    border-top: 1px solid rgba(25, 25, 25, 0.12);
}

.pdp-accordion-item {
    border-bottom: 1px solid rgba(25, 25, 25, 0.12);
    width: 100%;
    background: transparent;
}

.pdp-accordion-header {
    width: 100%;
    height: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #191919;
    text-align: left;
    user-select: none;
}

.pdp-accordion-header:focus-visible {
    outline: 2px solid #641F33;
    outline-offset: 2px;
}

.pdp-accordion-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pdp-accordion-icon {
    font-size: 11px;
    color: #191919;
    display: inline-block;
    transition: transform 220ms ease;
}

/* Rotate + into × on open */
.pdp-accordion-item.active .pdp-accordion-icon {
    transform: rotate(45deg);
}

.pdp-accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 220ms ease, opacity 220ms ease;
}

.pdp-accordion-item.active .pdp-accordion-panel {
    max-height: 350px;
    opacity: 1;
}

.pdp-accordion-content {
    padding: 4px 0 20px 0;
    font-family: var(--font-sans);
    font-size: 12.5px;
    line-height: 1.65;
    color: #6D6862;
    font-weight: 400;
}

.pdp-acc-p {
    font-family: var(--font-sans);
    font-size: 12.5px;
    line-height: 1.65;
    color: #6D6862;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.pdp-acc-p:last-child {
    margin-bottom: 0;
}

.pdp-acc-p strong {
    color: #191919;
    font-weight: 500;
}

.pdp-accordion-size-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #641F33;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 180ms ease;
}

.pdp-accordion-size-link:hover {
    color: #521728;
}

/* --- 8. Responsive Breakpoints for PDP --- */
@media (max-width: 1024px) {
    .pdp-breadcrumb-container {
        padding: 14px 32px 12px 32px;
    }

    .pdp-container {
        padding: 0 32px;
    }

    .pdp-layout-grid {
        column-gap: 36px;
    }

    .pdp-thumbnail-rail {
        width: 66px;
    }

    .pdp-thumb-btn {
        width: 66px;
        height: 88px;
    }

    .pdp-product-title {
        font-size: 32px;
    }
}

@media (max-width: 860px) {
    .pdp-main-section {
        margin-top: 24px;
        margin-bottom: 56px;
    }

    .pdp-layout-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .pdp-thumbnail-rail {
        width: 60px;
        gap: 8px;
    }

    .pdp-thumb-btn {
        width: 60px;
        height: 80px;
    }

    .pdp-product-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    /* 2. Mobile Page Gutters (Consistent 16px horizontal) */
    .pdp-breadcrumb-container {
        padding: 10px 16px;
    }

    .pdp-container {
        padding: 0 16px;
    }

    /* 3. Breadcrumb Spacing & Typography */
    .pdp-breadcrumb-item,
    .pdp-breadcrumb-link,
    .pdp-breadcrumb-separator,
    .pdp-breadcrumb-current {
        font-size: 10px;
    }

    .pdp-main-section {
        margin-top: 16px;
        margin-bottom: 40px;
    }

    /* 4. Gallery → Product Info Rhythm (24px gap) */
    .pdp-layout-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .pdp-gallery-wrap {
        display: block;
        gap: 0;
    }

    .pdp-thumbnail-rail {
        display: none !important;
    }

    .pdp-main-image-wrap {
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
    }

    .pdp-mobile-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .pdp-info-inner {
        padding-top: 0;
        width: 100%;
    }

    /* 5. Product Title Area */
    .pdp-badge-wrap {
        margin-bottom: 10px;
    }

    .pdp-product-title {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -0.01em;
        margin: 0 0 11px 0;
    }

    /* 6. Price + Description */
    .pdp-product-price {
        font-size: 17.5px;
        line-height: 1.3;
    }

    .pdp-short-desc {
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
        margin-top: 15px;
    }

    .pdp-info-divider {
        max-width: 100%;
        width: 100%;
        margin-top: 21px;
        margin-bottom: 21px;
    }

    /* 7. Color + Size */
    .pdp-color-section {
        max-width: 100%;
        width: 100%;
    }

    .pdp-color-header {
        margin-bottom: 10px;
    }

    .pdp-size-section {
        max-width: 100%;
        width: 100%;
        margin-top: 22px;
    }

    .pdp-size-header {
        margin-bottom: 11px;
    }

    .pdp-size-grid {
        gap: 7px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .pdp-size-btn {
        width: 46px;
        height: 42px;
        font-size: 11px;
        flex-shrink: 0;
    }

    /* 8. Add to Bag + Wishlist Actions */
    .pdp-actions-wrap {
        max-width: 100%;
        width: 100%;
        margin-top: 23px;
    }

    .pdp-add-to-bag-btn {
        width: 100%;
        height: 50px;
    }

    .pdp-wishlist-btn {
        width: 100%;
        height: 44px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    /* 9. Delivery Checker */
    .pdp-delivery-section {
        max-width: 100%;
        width: 100%;
        margin-top: 23px;
    }

    .pdp-delivery-heading {
        margin-bottom: 8px;
    }

    .pdp-delivery-form {
        max-width: 100%;
        width: 100%;
        height: 44px;
    }

    .pdp-pincode-check-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 10. Trust Rows */
    .pdp-trust-divider {
        max-width: 100%;
        width: 100%;
        margin-top: 22px;
        margin-bottom: 18px;
    }

    .pdp-trust-section {
        max-width: 100%;
        width: 100%;
        gap: 12.5px;
    }

    .pdp-trust-icon {
        font-size: 16px;
        width: 18px;
    }

    /* 11. Accordions */
    .pdp-accordions-group {
        max-width: 100%;
        width: 100%;
        margin-top: 24px;
    }

    .pdp-accordion-header {
        height: 51px;
        min-height: 51px;
        font-size: 10.5px;
    }

    .pdp-accordion-content {
        padding: 4px 0 16px 0;
        font-size: 12.5px;
        line-height: 1.6;
    }

    .pdp-acc-p {
        font-size: 12.5px;
        line-height: 1.6;
    }

    /* 12. PDP Part 3B: Mobile Sticky Purchase Bar (<= 640px) */
    .pdp-sticky-bar {
        display: block !important;
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(56px + env(safe-area-inset-bottom, 0px));
        width: 100%;
        background: #FCFAF6;
        border-top: 1px solid rgba(25, 25, 25, 0.12);
        padding: 10px 16px;
        box-sizing: border-box;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(4px);
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    }

    .pdp-sticky-bar.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .pdp-sticky-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .pdp-sticky-price {
        font-family: var(--font-sans);
        font-size: 15px;
        font-weight: 500;
        color: #191919;
        line-height: 1;
        letter-spacing: 0.02em;
    }

    .pdp-sticky-add-btn {
        height: 44px;
        min-width: 160px;
        background-color: #641F33;
        color: #F8F5EF;
        border: 0;
        border-radius: 0;
        font-family: var(--font-sans);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        transition: background-color 180ms ease;
        outline: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .pdp-sticky-add-btn:hover {
        background-color: #521728;
    }

    .pdp-sticky-add-btn:focus-visible {
        outline: 2px solid #191919;
        outline-offset: 2px;
    }

    body.pdp-sticky-bar-visible {
        padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
    }
}

/* ==========================================================================
   SUGNAMAL PDP — PART 2C: FULLSCREEN PRODUCT GALLERY LIGHTBOX
   ========================================================================== */
.pdp-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(15, 15, 15, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 240ms ease;
}

.pdp-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.pdp-lightbox-open {
    overflow: hidden !important;
}

.pdp-lightbox-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88vw;
    height: 88vh;
    max-width: 88vw;
    max-height: 88vh;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.pdp-lightbox-img {
    max-width: 88vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    transition: opacity 220ms ease;
    opacity: 1;
}

.pdp-lightbox-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: #FAF8F5;
    font-family: inherit;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 100002;
    opacity: 0.85;
}

.pdp-lightbox-close:hover {
    opacity: 1;
    transform: scale(1.08);
}

.pdp-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #FAF8F5;
    font-family: inherit;
    font-size: 52px;
    line-height: 1;
    font-weight: 200;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 72px;
    padding: 0;
    margin: 0;
    z-index: 100002;
    transition: opacity 180ms ease, transform 180ms ease;
    opacity: 0.7;
    user-select: none;
}

.pdp-lightbox-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.pdp-lightbox-prev {
    left: 28px;
}

.pdp-lightbox-next {
    right: 28px;
}

@media (max-width: 768px) {
    .pdp-lightbox-close {
        top: 18px;
        right: 18px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .pdp-lightbox-stage {
        width: 90vw;
        height: 82vh;
        max-width: 90vw;
        max-height: 82vh;
    }

    .pdp-lightbox-img {
        max-width: 90vw;
        max-height: 82vh;
    }

    .pdp-lightbox-arrow {
        font-size: 40px;
        width: 40px;
        height: 56px;
        opacity: 0.8;
    }

    .pdp-lightbox-prev {
        left: 10px;
    }

    .pdp-lightbox-next {
        right: 10px;
    }
}

/* ==========================================================================
   SUGNAMAL PDP — PART 4A: YOU MAY ALSO LIKE (WARM IVORY EDITORIAL THEME)
   ========================================================================== */
.pdp-related-section {
    background-color: #F8F5EF;
    margin-top: -72px;
    padding-top: 52px;
    padding-bottom: 64px;
    border-top: none;
    width: 100%;
}

.pdp-related-header {
    margin-bottom: 28px;
    text-align: left;
}

.pdp-related-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #641F33;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pdp-related-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    color: #191919;
    letter-spacing: -0.015em;
    text-transform: none;
    margin: 0;
    text-align: left;
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
}

.pdp-related-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.pdp-related-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #ECE7DE;
    margin-bottom: 13px;
    position: relative;
}

.pdp-related-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Quieter, refined wishlist button matching homepage aesthetic */
.pdp-related-card .new-arrival-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    background: rgba(248, 245, 239, 0.76);
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 50%;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    box-shadow: none;
    padding: 0;
    outline: none;
}

.pdp-related-card .new-arrival-wishlist-btn:hover {
    color: #641F33;
    background: #FFFFFF;
    border-color: rgba(100, 31, 51, 0.35);
    transform: scale(1.04);
}

.pdp-related-card .new-arrival-wishlist-btn.active {
    color: #641F33;
    background: #FFFFFF;
    border-color: #641F33;
}

.pdp-related-card .new-arrival-wishlist-btn.active i {
    font-weight: 900;
    color: #641F33;
}

/* Product Info & Editorial Typography */
.pdp-related-card .new-arrival-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.pdp-related-card .new-arrival-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: #191919;
    line-height: 1.35;
    margin: 0 0 5px 0;
    letter-spacing: 0.005em;
    min-height: auto;
    text-align: left;
}

.pdp-related-card .new-arrival-name a {
    color: #191919;
    text-decoration: none;
    transition: color 180ms ease;
}

.pdp-related-card .new-arrival-name a:hover {
    color: #641F33;
}

.pdp-related-card .new-arrival-price-row {
    display: flex;
    align-items: baseline;
    line-height: 1.2;
    min-height: auto;
    margin: 0;
    text-align: left;
}

.pdp-related-card .new-arrival-price-current {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.015em;
}

/* Individual object positions for cohesive campaign framing */
.pdp-related-card:nth-child(1) .new-arrival-img {
    object-position: center top;
}

.pdp-related-card:nth-child(2) .new-arrival-img {
    object-position: center top;
}

.pdp-related-card:nth-child(3) .new-arrival-img {
    object-position: center top;
}

.pdp-related-card:nth-child(4) .new-arrival-img {
    object-position: center top;
}

/* Tablet responsiveness (<= 1024px) */
@media (max-width: 1024px) {
    .pdp-related-section {
        margin-top: -72px;
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .pdp-related-title {
        font-size: 36px;
    }

    .pdp-related-grid {
        gap: 18px;
    }
}

@media (max-width: 860px) {
    .pdp-related-section {
        margin-top: -56px;
        padding-top: 42px;
        padding-bottom: 50px;
    }
}

/* Mobile responsiveness (<= 640px) */
@media (max-width: 640px) {
    .pdp-related-section {
        margin-top: -40px;
        padding-top: 36px;
        padding-bottom: 44px;
        background-color: #F8F5EF;
    }

    .pdp-related-header {
        margin-bottom: 20px;
    }

    .pdp-related-eyebrow {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .pdp-related-title {
        font-size: 31px;
        line-height: 1.08;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 11px;
        row-gap: 28px;
    }

    .pdp-related-img-wrap {
        aspect-ratio: 4 / 5;
        margin-bottom: 11px;
    }

    .pdp-related-card .new-arrival-name {
        font-size: 12.5px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .pdp-related-card .new-arrival-price-current {
        font-size: 12px;
    }

    .pdp-related-card .new-arrival-wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 11.5px;
        top: 8px;
        right: 8px;
    }
}

/* ==========================================================================
   SUGNAMAL COLLECTION / PLP — PART 1A
   ========================================================================== */
.collection-page {
    background-color: var(--color-bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.collection-main {
    flex: 1;
    width: 100%;
}

.collection-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 52px;
    padding-right: 52px;
    box-sizing: border-box;
    width: 100%;
}

/* 1. Breadcrumb */
.collection-breadcrumb-nav {
    padding: 18px 0 8px 0;
}

.collection-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 11px;
    color: #6D6862;
    letter-spacing: 0.04em;
}

.collection-breadcrumb-item a {
    color: #6D6862;
    text-decoration: none;
    transition: color 180ms ease;
}

.collection-breadcrumb-item a:hover {
    color: #191919;
}

.collection-breadcrumb-separator {
    color: rgba(25, 25, 25, 0.25);
    font-size: 10px;
    user-select: none;
}

.collection-breadcrumb-item.active {
    color: #191919;
    font-weight: 500;
}

/* 2. Collection Header: 48px–56px vertical padding */
.collection-header-section {
    padding-top: 24px;
    padding-bottom: 28px;
    text-align: left;
}

.collection-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #641F33;
    margin-bottom: 6px;
    line-height: 1.2;
}

.collection-heading {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
    color: #191919;
    letter-spacing: -0.015em;
    text-transform: none;
    margin: 0 0 12px 0;
}

.collection-desc {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 400;
    color: #6D6862;
    line-height: 1.5;
    max-width: 580px;
    margin: 0;
}

/* 3. Product Toolbar */
.collection-toolbar-section {
    border-top: 1px solid rgba(25, 25, 25, 0.08);
    border-bottom: 1px solid rgba(25, 25, 25, 0.08);
    background-color: transparent;
    margin-top: 8px;
    margin-bottom: 34px;
}

.collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #191919;
}

.collection-toolbar-left,
.collection-toolbar-right {
    display: flex;
    align-items: center;
}

.collection-filter-btn,
.collection-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: #191919;
    cursor: pointer;
    transition: color 180ms ease;
}

.collection-filter-btn:hover,
.collection-sort-btn:hover {
    color: #641F33;
}

.collection-filter-btn i {
    font-size: 11px;
    color: #641F33;
}

.collection-sort-btn i {
    font-size: 9px;
    color: #6D6862;
    margin-left: 2px;
}

.collection-count {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.10em;
    color: #6D6862;
    text-align: center;
}

/* 4. Product Grid: 4 columns, 22px–24px gap */
.collection-grid-section {
    padding-bottom: 80px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Card */
.collection-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

.collection-card-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #ECE7DE;
    margin-bottom: 13px;
    position: relative;
}

.collection-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-card-img {
    transform: scale(1.035);
}

/* Quiet Wishlist Button (reuses global wishlist system) */
.collection-card .new-arrival-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    background: rgba(248, 245, 239, 0.76);
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 50%;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    box-shadow: none;
    padding: 0;
    outline: none;
}

.collection-card .new-arrival-wishlist-btn:hover {
    color: #641F33;
    background: #FFFFFF;
    border-color: rgba(100, 31, 51, 0.35);
    transform: scale(1.04);
}

.collection-card .new-arrival-wishlist-btn.active {
    color: #641F33;
    background: #FFFFFF;
    border-color: #641F33;
}

.collection-card .new-arrival-wishlist-btn.active i {
    font-weight: 900;
    color: #641F33;
}

/* Card Info */
.collection-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.collection-card-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: #191919;
    line-height: 1.35;
    margin: 0 0 5px 0;
    letter-spacing: 0.005em;
    text-align: left;
}

.collection-card-name a {
    color: #191919;
    text-decoration: none;
    transition: color 180ms ease;
}

.collection-card-name a:hover {
    color: #641F33;
}

.collection-card-price {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 500;
    color: #191919;
    line-height: 1;
    margin: 0;
}

/* Mobile Responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .collection-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .collection-breadcrumb-nav {
        padding: 14px 0 4px 0;
    }

    .collection-header-section {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .collection-heading {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .collection-desc {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .collection-toolbar-section {
        margin-top: 4px;
        margin-bottom: 24px;
    }

    .collection-toolbar {
        height: 44px;
        font-size: 10px;
    }

    .collection-toolbar-center {
        display: none;
    }

    .collection-grid-section {
        padding-bottom: 60px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 11px;
        row-gap: 28px;
    }

    .collection-card-img-wrap {
        aspect-ratio: 4 / 5;
        margin-bottom: 11px;
    }

    .collection-card-name {
        font-size: 12.5px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .collection-card-price {
        font-size: 12px;
    }

    .collection-card .new-arrival-wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 11.5px;
        top: 8px;
        right: 8px;
    }
}

