/* =============================================
   VIVANZA WEARCORE — MAIN STYLESHEET
   ============================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --gold: #c9a84c;
    --gold-dark: #a07830;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --bg: #0a0a0f;
    --bg-2: #111118;
    --bg-card: #161620;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --glass: rgba(10, 10, 15, 0.75);
    --border: rgba(201, 168, 76, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --text-primary: #f0ece4;
    --text-secondary: #b0aaa0;
    --text-muted: #706a60;
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="light"] {
    --bg: #faf8f4;
    --bg-2: #f0ece4;
    --bg-card: #ffffff;
    --surface: rgba(0, 0, 0, 0.03);
    --surface-2: rgba(0, 0, 0, 0.06);
    --glass: rgba(250, 248, 244, 0.85);
    --border: rgba(160, 120, 48, 0.22);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --text-primary: #1a1410;
    --text-secondary: #5a5045;
    --text-muted: #9a9080;
    --input-bg: rgba(0, 0, 0, 0.04);
    --input-border: rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit
}

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

img {
    max-width: 100%;
    display: block
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section-pad {
    padding: 5rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: .8rem
}

.section-title em {
    font-style: italic;
    color: var(--gold)
}

.section-sub {
    color: var(--text-muted);
    font-size: .95rem;
    max-width: 500px;
    margin: 0 auto
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    transition: transform .2s, box-shadow .3s;
    box-shadow: 0 4px 20px var(--gold-glow)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: .9rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    transition: all .3s
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-buy-now {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
    padding: .8rem 2rem;
    border-radius: 50px;
    transition: all .3s;
    flex: 1
}

.btn-buy-now:hover {
    background: var(--gold);
    color: #fff
}

.ripple {
    position: relative;
    overflow: hidden
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    transition: clip-path 0.9s cubic-bezier(.76, 0, .24, 1),
        opacity 0.3s 0.85s ease
}

/* Exit: horizontal wipe from center outward */
.loader.hidden {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
    pointer-events: none
}

/* Subtle golden ambient glow behind content */
.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative
}

.loader-logo::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(201, 168, 76, .1) 0%, rgba(201, 168, 76, .03) 40%, transparent 70%);
    border-radius: 50%;
    animation: ambientPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1
}

@keyframes ambientPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.25);
        opacity: 1
    }
}

/* ===== VIVANZA WEAR CODE LOGO ===== */
.vw-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    user-select: none
}

.vw-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: .32em;
    color: var(--text-primary);
    text-transform: uppercase
}

.vw-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: .5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px
}

/* Loader logo — large + animated */
.vw-logo--loader {
    text-align: center;
    position: relative;
    perspective: 600px;
    animation: logoBreathe 2.5s 1.4s ease-in-out infinite
}

/* Each letter: slides in horizontally with deblur */
.vw-logo--loader .vw-letter {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: clamp(3rem, 7vw, 4.5rem);
    letter-spacing: .22em;
    color: var(--text-primary);
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px) scale(.85);
    filter: blur(10px);
    animation: letterSlideHoriz .55s cubic-bezier(.25, .46, .45, .94) forwards
}

/* Even letters enter from right */
.vw-logo--loader .vw-letter:nth-child(even) {
    transform: translateX(50px) scale(.85)
}

/* First V — golden gradient with shimmer */
.vw-logo--loader .vw-letter:nth-child(1) {
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), #e8d48b, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterSlideHoriz .55s cubic-bezier(.25, .46, .45, .94) forwards,
        goldShift 3s 1.5s ease-in-out infinite
}

@keyframes goldShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

/* W E A R subtitle */
.vw-logo--loader .vw-sub {
    display: block;
    font-size: 1rem;
    letter-spacing: .7em;
    opacity: 0;
    transform: scaleX(0);
    animation: subExpand .65s .6s cubic-bezier(.4, 0, .2, 1) forwards
}

/* Letter horizontal slide-in */
@keyframes letterSlideHoriz {
    0% {
        opacity: 0;
        filter: blur(10px)
    }

    55% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1.05)
    }

    80% {
        transform: translateX(0) scale(.97)
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0)
    }
}

/* Sub text expands from center */
@keyframes subExpand {
    0% {
        opacity: 0;
        transform: scaleX(0);
        letter-spacing: 0
    }

    60% {
        opacity: 1;
        transform: scaleX(1.05);
        letter-spacing: .8em
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
        letter-spacing: .7em
    }
}

/* Shimmer sweep across logo */
.vw-logo--loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 168, 76, .08) 25%,
            rgba(255, 255, 255, .2) 50%,
            rgba(201, 168, 76, .08) 75%,
            transparent 100%);
    animation: shimmerSweep 2s .9s ease-in-out forwards;
    pointer-events: none
}

@keyframes shimmerSweep {
    0% {
        left: -60%
    }

    100% {
        left: 160%
    }
}

/* Breathe pulse */
@keyframes logoBreathe {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.025)
    }
}

/* Golden glow line under logo */
.vw-logo--loader::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
    margin: 1.4rem auto 0;
    border-radius: 2px;
    animation: glowLineExpand .8s .55s cubic-bezier(.4, 0, .2, 1) forwards,
        glowLinePulse 2.5s 1.5s ease-in-out infinite alternate
}

@keyframes glowLineExpand {
    0% {
        width: 0;
        opacity: 0
    }

    100% {
        width: 140px;
        opacity: 1
    }
}

@keyframes glowLinePulse {
    0% {
        opacity: .5;
        box-shadow: 0 0 8px rgba(201, 168, 76, .2)
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 22px rgba(201, 168, 76, .45)
    }
}

/* Loader progress bar */
.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--surface-2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1.2rem
}

.loader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: loaderFill 2s ease-in-out forwards, fillShimmer 1.2s .2s ease-in-out infinite
}

@keyframes loaderFill {
    to {
        width: 100%
    }
}

@keyframes fillShimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* Loader tagline */
.loader-tagline {
    color: var(--text-muted);
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: 0;
    animation: taglineFade .5s .25s ease forwards
}

@keyframes taglineFade {
    to {
        opacity: 1
    }
}

/* Navbar logo */
.vw-logo--nav .vw-brand {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: .28em
}

.vw-logo--nav .vw-sub {
    font-size: .42rem;
    letter-spacing: .55em;
    margin-top: 1px
}

/* Footer logo */
.vw-logo--footer .vw-brand {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .3em
}

.vw-logo--footer .vw-sub {
    font-size: .55rem;
    letter-spacing: .55em;
    margin-top: 3px
}

/* Auth modal logo */
.vw-logo--auth .vw-brand {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: .3em
}

.vw-logo--auth .vw-sub {
    font-size: .55rem;
    letter-spacing: .6em;
    margin-top: 3px
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: background .3s, box-shadow .3s, padding .3s
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
    padding: .7rem 2rem;
    border-bottom: 1px solid var(--border-subtle)
}

.nav-logo .logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-v {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: .9
}

.logo-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: .2em;
    color: var(--text-primary)
}

.logo-sub {
    font-size: .5rem;
    letter-spacing: .35em;
    color: var(--gold);
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 2rem
}

.nav-link {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color .3s;
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold)
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 56px;
    height: 30px;
    border-radius: 50px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    transition: background .3s
}

.toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 4px
}

.toggle-thumb {
    position: absolute;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform .3s;
    box-shadow: 0 2px 8px rgba(201, 168, 76, .3)
}

[data-theme="light"] .toggle-thumb {
    transform: translateX(26px)
}

.toggle-sun,
.toggle-moon {
    font-size: .7rem;
    z-index: 1
}

.toggle-sun {
    margin-left: auto
}

.toggle-moon {
    margin-right: auto
}

/* Cart & Wishlist Buttons */
.cart-btn,
.wishlist-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    transition: all .3s
}

.cart-btn:hover,
.wishlist-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Auth Button */
.auth-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: .82rem;
    font-weight: 500;
    transition: all .3s
}

.auth-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav-close {
    align-self: flex-end;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem
}

.mobile-nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 2rem
}

.mobile-nav-link {
    display: block;
    padding: .8rem 0;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: color .3s
}

.mobile-nav-link:hover {
    color: var(--gold)
}

.mobile-auth-btn {
    margin-top: 2rem;
    width: 100%;
    padding: .8rem;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
    font-weight: 600
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible
}

/* ---------- HERO ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 3rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, .06) 0%, transparent 60%), var(--bg);
    gap: 2rem
}

/* ---- Hero Photo Mosaic ---- */
.hero-mosaic {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    display: flex;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.mosaic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mosaic-col img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

/* Scrolling animations — each column moves at a different speed and direction */
/* Each col has 10 unique images + 2 duplicates = 12 total.
   Scroll distance = 10 images × (320px + 10px gap) = 3300px for seamless loop */
.mosaic-col-1 {
    animation: mosaicScrollUp 50s linear infinite;
}

.mosaic-col-2 {
    animation: mosaicScrollDown 42s linear infinite;
    margin-top: -160px;
}

.mosaic-col-3 {
    animation: mosaicScrollUp 55s linear infinite;
    margin-top: -80px;
}

.mosaic-col-4 {
    animation: mosaicScrollDown 47s linear infinite;
    margin-top: -200px;
}

.mosaic-col-5 {
    animation: mosaicScrollUp 44s linear infinite;
    margin-top: -120px;
}

@keyframes mosaicScrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-3300px);
    }
}

@keyframes mosaicScrollDown {
    0% {
        transform: translateY(-3300px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Gradient overlay for seamless blend into background */
.mosaic-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(to right, var(--bg) 0%, transparent 40%),
        linear-gradient(to bottom, var(--bg) 0%, transparent 15%),
        linear-gradient(to top, var(--bg) 0%, transparent 15%);
}

.hero-bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: .3;
    animation: particleFloat 8s infinite ease-in-out
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .3
    }

    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: .6
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: .5rem 1.2rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.hero-italic {
    color: var(--gold);
    font-style: italic
}

.hero-accent {
    color: var(--text-primary)
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 460px
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center
}

.stat {
    text-align: center
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold)
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold)
}

.stat p {
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border)
}

/* Hero Float Cards */
.hero-float-group {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.hero-float-card {
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    transition: transform .4s
}

.hero-float-card:hover {
    transform: scale(1.03)
}

.float-img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.float-card-glass {
    padding: 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px)
}

.float-card-tag {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, .12);
    padding: 3px 10px;
    border-radius: 50px
}

.float-card-name {
    font-weight: 600;
    font-size: .9rem;
    margin-top: .4rem
}

.float-card-price {
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem
}

.float-card-2 {
    margin-left: 60px
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--text-muted);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 2rem
}

.scroll-line {
    width: 30px;
    height: 1px;
    background: var(--text-muted)
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s ease forwards
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-float {
    animation: floatCard 6s ease-in-out infinite
}

.animate-float-delay {
    animation: floatCard 6s ease-in-out infinite 1.5s
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s, transform .6s
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0)
}

.animate-pop {
    animation: popIn .5s cubic-bezier(.68, -.55, .27, 1.55)
}

@keyframes popIn {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

/* ---------- MARQUEE ---------- */
.marquee-tape {
    background: var(--gold);
    padding: .6rem 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%)
    }
}

.marquee-track span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff
}

/* ---------- COLLECTIONS ---------- */
.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem
}

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 280px
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.collection-card:hover img {
    transform: scale(1.08)
}

.card-large {
    grid-row: span 2
}

.card-tall {
    grid-row: span 1
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background .3s
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 100%)
}

.collection-badge {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: .3rem
}

.collection-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .3rem
}

.collection-overlay p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .8rem
}

.collection-btn {
    align-self: flex-start;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    transition: all .3s
}

.collection-btn:hover {
    background: var(--gold);
    border-color: var(--gold)
}

/* ---------- PRODUCTS ---------- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.filter-tab {
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all .3s
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    animation: fadeUp .6s ease backwards;
    position: relative
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4
}

.product-img-wrap .img-main,
.product-img-wrap .img-alt {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity .5s
}

.product-img-wrap .img-alt {
    opacity: 0
}

.product-card:hover .img-main {
    opacity: 0
}

.product-card:hover .img-alt {
    opacity: 1
}

.product-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(201, 168, 76, .9);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(201, 168, 76, .92);
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
    padding: .7rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform .3s;
    z-index: 2
}

.product-card:hover .product-quick-view {
    transform: translateY(0)
}

.product-info {
    padding: 1.2rem
}

.product-category {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: .5rem
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary)
}

.product-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s
}

.product-add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--gold-glow)
}

/* View More Button */
.view-more-wrap {
    text-align: center;
    padding: 2.5rem 0 1rem;
    width: 100%
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.25, .46, .45, .94)
}

.view-more-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3)
}

.view-more-count {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px
}

.view-more-btn:hover .view-more-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff
}

/* Wishlist Heart */
.product-wishlist-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all .25s;
    border: none;
    color: #fff
}

.product-wishlist-heart:hover {
    background: rgba(0, 0, 0, .65);
    transform: scale(1.15)
}

.product-wishlist-heart.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, .2)
}

/* ---------- WHY SECTION ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform .3s, border-color .3s
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15)
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: .6rem
}

.why-card p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.6
}

/* ---------- ABOUT ---------- */
.about-heading {
    margin-bottom: 2.5rem
}

.about-row {
    display: flex;
    gap: 4rem;
    align-items: flex-start
}

.about-photo {
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    overflow: visible;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), box-shadow 0.5s
}

.about-photo:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 30px 80px rgba(201, 168, 76, .15)
}

.about-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 24px
}

/* Small floating photo at bottom of about photo */
.about-float-photo {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 120px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 0 2px rgba(201, 168, 76, .25);
    animation: floatPhoto 4s ease-in-out infinite;
    z-index: 2;
    transition: transform .3s ease
}

.about-float-photo:hover {
    transform: scale(1.08) rotate(-2deg)
}

.about-float-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0
}

@keyframes floatPhoto {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-10px) rotate(1.5deg)
    }
}

.about-text {
    flex: 1;
    min-width: 0
}

.about-para {
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.85;
    margin-bottom: 1.2rem
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem
}

.about-value {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text-secondary);
    background: var(--surface);
    padding: .6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    transition: border-color .3s
}

.about-value:hover {
    border-color: var(--gold)
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem
}

.testimonials-track::-webkit-scrollbar {
    display: none
}

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform .3s
}

.testimonial-card:hover {
    transform: translateY(-4px)
}

.testimonial-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: .8rem;
    letter-spacing: 2px
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1.2rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem
}

.testimonial-author strong {
    display: block;
    font-size: .85rem
}

.testimonial-author span {
    font-size: .72rem;
    color: var(--text-muted)
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all .3s
}

.testimonial-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start
}

.contact-info p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.contact-icon {
    font-size: 1.5rem
}

.contact-item strong {
    display: block;
    font-size: .88rem;
    margin-bottom: .2rem
}

.contact-item p {
    color: var(--text-muted);
    font-size: .85rem
}

.contact-social {
    display: flex;
    gap: .8rem
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all .3s
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

/* ---------- FORMS ---------- */
.form-group {
    margin-bottom: .5rem
}

.form-group label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .5rem
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
    padding: .85rem 1rem;
    border-radius: 12px;
    font-size: .92rem;
    transition: border-color .3s;
    outline: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted)
}

.form-full {
    grid-column: span 2
}

/* Select dropdown fix */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer
}

.form-group select option {
    background: #1a1a24;
    color: #f0ece4;
    padding: .5rem
}

[data-theme="light"] .form-group select option {
    background: #ffffff;
    color: #1a1410
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem
}

.footer-brand .logo-link {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: .2em
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: .5rem
}

.footer-cod {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: .7rem;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-social .social-link {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: .85rem;
    justify-content: flex-start
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .78rem
}

/* ---------- PRODUCT MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

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

.modal-container {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all .3s
}

.modal-close:hover {
    background: var(--gold);
    color: #fff
}

.modal-gallery {
    flex: 1;
    min-width: 0;
    padding: 1.5rem
}

.modal-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4
}

.modal-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.gallery-nav:hover {
    background: var(--gold)
}

.gallery-prev {
    left: 10px
}

.gallery-next {
    right: 10px
}

.modal-thumbnails {
    display: flex;
    gap: .5rem;
    margin-top: .8rem
}

.modal-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .3s;
    opacity: .6
}

.modal-thumbnails img.active,
.modal-thumbnails img:hover {
    border-color: var(--gold);
    opacity: 1
}

.modal-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.modal-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: .8rem;
    align-self: flex-start
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.modal-rating {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: .8rem
}

.modal-rating span {
    color: var(--text-muted);
    font-size: .78rem
}

.modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem
}

.modal-desc {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.modal-sizes label,
.modal-qty label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    display: block;
    margin-bottom: .5rem
}

.size-btns {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.2rem
}

.size-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: .82rem;
    transition: all .2s
}

.size-btn.active,
.size-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.modal-qty {
    margin-bottom: 1.5rem
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: .8rem
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.qty-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

#modalQty {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem
}

.modal-cod-note {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center
}

/* ---------- CART DRAWER ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    z-index: 401;
    transform: translateX(100%);
    transition: transform .3s;
    display: flex;
    flex-direction: column
}

.cart-drawer.open {
    transform: translateX(0)
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle)
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted)
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle)
}

.cart-item-img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px
}

.cart-item-info {
    flex: 1
}

.cart-item-name {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .3rem
}

.cart-item-meta {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: .3rem
}

.cart-item-price {
    font-weight: 700;
    color: var(--gold);
    font-size: .95rem
}

.cart-item-remove {
    font-size: .75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .3s
}

.cart-item-remove:hover {
    color: #e74c3c
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subtle)
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.cart-total span:last-child {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem
}

.cart-cod-note {
    text-align: center;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: .8rem
}

/* ---------- AUTH MODAL ---------- */
.auth-modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center
}

.auth-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 1rem
}

.auth-modal-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: .3rem
}

.auth-modal-box p {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 1.5rem
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: 100%;
    padding: .85rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 500;
    font-size: .9rem;
    transition: border-color .3s
}

.google-btn:hover {
    border-color: var(--gold)
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: .78rem
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle)
}

.auth-switch {
    margin-top: 1rem;
    font-size: .82rem;
    color: var(--text-muted);
    text-align: center
}

.auth-switch a {
    color: var(--gold);
    font-weight: 600
}

/* Labels left-aligned in auth modal, button text centered */
.auth-modal-box .form-group label {
    text-align: left
}

.auth-modal-box .btn-primary {
    justify-content: center
}

/* ---- AUTH METHOD TABS ---- */
.auth-method-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--surface)
}

.auth-tab {
    flex: 1;
    padding: .7rem .5rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .3s;
    position: relative
}

.auth-tab.active {
    color: var(--gold);
    background: rgba(201, 168, 76, .1)
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.auth-tab:hover:not(.active) {
    color: var(--text-secondary);
    background: var(--surface-2)
}

/* ---- OTP INPUT GROUP ---- */
.otp-input-group {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin: 1.5rem 0
}

.otp-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
    caret-color: var(--gold)
}

.otp-digit:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow)
}

.otp-digit:not(:placeholder-shown) {
    border-color: var(--gold)
}

.otp-sent-msg {
    color: var(--gold) !important;
    font-weight: 600 !important;
    font-size: .88rem !important;
    margin-bottom: .5rem !important
}

.auth-hint {
    color: var(--text-muted) !important;
    font-size: .78rem !important;
    margin-top: .8rem !important;
    margin-bottom: 0 !important
}

/* ---- PHONE INPUT WITH PREFIX ---- */
.phone-input-wrap {
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .3s
}

.phone-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow)
}

.phone-prefix {
    padding: 0 .8rem;
    font-weight: 700;
    color: var(--gold);
    font-size: .9rem;
    background: var(--surface-2);
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-subtle)
}

.phone-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: .85rem .8rem;
    font-size: .9rem;
    color: var(--text-primary);
    outline: none
}

.auth-modal-box {
    max-height: 90vh;
    overflow-y: auto
}

/* ---------- CHECKOUT MODAL ---------- */
.checkout-modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem
}

.checkout-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500
}

.checkout-step.active {
    color: var(--gold)
}

.checkout-step.done {
    color: var(--gold)
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .78rem;
    transition: all .3s
}

.checkout-step.active .step-num {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.checkout-step.done .step-num {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.checkout-step-line {
    width: 40px;
    height: 2px;
    background: var(--border-subtle)
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

/* Order Review */
.order-review-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .8rem 0;
    border-bottom: 1px solid var(--border-subtle)
}

.order-review-item img {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px
}

.order-review-item-name {
    font-weight: 600;
    font-size: .88rem
}

.order-review-item-meta {
    font-size: .75rem;
    color: var(--text-muted)
}

.order-review-item-price {
    font-weight: 700;
    color: var(--gold);
    margin-left: auto
}

.order-review-address {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1rem 0;
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.6
}

.payment-method-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1rem 0
}

.payment-method-icon {
    font-size: 1.5rem
}

.payment-method-box strong {
    font-size: .9rem
}

.payment-method-box p {
    font-size: .75rem;
    color: var(--text-muted)
}

.payment-selected {
    margin-left: auto;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem
}

.online-payment-soon {
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    background: var(--surface);
    border-radius: 8px;
    padding: .6rem;
    margin-bottom: 1rem
}

.checkout-nav {
    display: flex;
    gap: 1rem;
    justify-content: space-between
}

/* Order Confirmed */
.order-confirmed {
    text-align: center;
    padding: 2rem 0
}

.confirmed-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.order-confirmed h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: .8rem
}

.order-confirmed p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 1.5rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto
}

.confirmed-order-id {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700
}

.confirmed-cod {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--text-secondary);
    font-size: .85rem;
    margin-bottom: 1.5rem
}

/* ---------- WISHLIST DRAWER ---------- */
.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

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

.wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    z-index: 401;
    transform: translateX(100%);
    transition: transform .3s;
    display: flex;
    flex-direction: column
}

.wishlist-drawer.open {
    transform: translateX(0)
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle)
}

.wishlist-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem
}

.wishlist-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem
}

.wishlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center
}

.wishlist-item-img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px
}

.wishlist-item-info {
    flex: 1
}

.wishlist-item-name {
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: .2rem
}

.wishlist-item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .5rem
}

.wishlist-item-actions {
    display: flex;
    gap: .5rem
}

.wishlist-item-actions button {
    padding: .3rem .8rem;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 600;
    transition: all .2s
}

.wishlist-add-cart {
    background: var(--gold);
    color: #fff;
    border: none
}

.wishlist-remove {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted)
}

.wishlist-remove:hover {
    border-color: #e74c3c;
    color: #e74c3c
}

.wishlist-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: .9rem
}

/* ---------- RECENTLY VIEWED ---------- */
.recently-viewed-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem
}

.recently-viewed-track::-webkit-scrollbar {
    display: none
}

.recently-viewed-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s
}

.recently-viewed-card:hover {
    transform: translateY(-4px)
}

.recently-viewed-card img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.recently-viewed-card-info {
    padding: .8rem
}

.recently-viewed-card-info p:first-child {
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: .2rem
}

.recently-viewed-card-info p:last-child {
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem
}

/* ---------- PRODUCT IMAGE ZOOM ---------- */
.modal-gallery-main img.zoomed {
    cursor: zoom-out;
    transform: scale(2);
    transition: transform .3s
}

.modal-gallery-main img:not(.zoomed) {
    cursor: zoom-in
}

/* ---------- WHATSAPP LINK ---------- */
.whatsapp-order-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .8rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    transition: transform .2s, box-shadow .2s
}

.whatsapp-order-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3)
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s;
    box-shadow: 0 4px 20px var(--gold-glow);
    border: none;
    cursor: pointer
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow)
}

/* ---------- TOAST ---------- */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: .8rem 1.5rem;
    border-radius: 50px;
    font-size: .85rem;
    z-index: 999;
    opacity: 0;
    transition: all .4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    pointer-events: none
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.toast.gold {
    border-color: var(--gold);
    color: var(--gold)
}

/* ---------- USER BADGE ---------- */
.user-badge {
    position: fixed;
    top: 5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .4rem .4rem .4rem 1rem;
    z-index: 50
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold)
}

#userName {
    font-size: .82rem;
    font-weight: 500
}

.sign-out-btn {
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    transition: all .3s
}

.sign-out-btn:hover {
    color: #e74c3c;
    border-color: #e74c3c
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .hero-float-group {
        display: none
    }

    .hero-mosaic {
        width: 45%
    }

    .mosaic-col-5 {
        display: none
    }

    .mosaic-col img {
        height: 240px
    }

    .about-row {
        flex-direction: column;
        gap: 2.5rem
    }

    .about-photo img {
        height: 280px
    }

    .about-float-photo {
        width: 90px;
        height: 110px;
        bottom: -20px;
        right: -10px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .modal-container {
        flex-direction: column;
        max-height: 95vh
    }

    .modal-gallery,
    .modal-info {
        padding: 1.2rem
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-section {
        padding: 5rem 1.5rem 3rem
    }

    .hero-mosaic {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        opacity: 0.55;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 75%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 75%)
    }

    .mosaic-col-3,
    .mosaic-col-4,
    .mosaic-col-5 {
        display: none
    }

    .mosaic-col img {
        height: 220px;
        border-radius: 10px
    }

    /* Mobile scroll distance: 10 images × (220px + 10px gap) = 2300px */
    .mosaic-col-1 {
        animation: mosaicScrollUpMobile 35s linear infinite;
    }

    .mosaic-col-2 {
        animation: mosaicScrollDownMobile 30s linear infinite;
        margin-top: -110px;
    }

    @keyframes mosaicScrollUpMobile {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-2300px);
        }
    }

    @keyframes mosaicScrollDownMobile {
        0% {
            transform: translateY(-2300px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-stats {
        flex-wrap: nowrap;
        gap: 0.5rem
    }

    .hero-stats .stat-num {
        font-size: 1.3rem
    }

    .hero-stats .stat p {
        font-size: 0.55rem
    }

    .hero-stats .stat-divider {
        height: 30px
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem
    }

    .collection-card img {
        height: 220px
    }

    .collection-overlay h3 {
        font-size: 0.9rem
    }

    .collection-overlay p {
        font-size: 0.7rem
    }

    .card-large {
        grid-row: span 1
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .checkout-grid {
        grid-template-columns: 1fr
    }

    .form-full {
        grid-column: span 1
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .cart-drawer,
    .wishlist-drawer {
        width: 100%
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .stat-card.wide {
        grid-column: span 1
    }

    .auth-btn span {
        display: none
    }
}

@media(max-width:480px) {
    .navbar {
        padding: .8rem 1rem
    }

    .nav-actions {
        gap: .4rem
    }

    .cart-btn,
    .wishlist-btn {
        width: 34px;
        height: 34px
    }

    .theme-toggle {
        width: 48px;
        height: 26px
    }

    .product-card {
        border-radius: 14px
    }
}