/* =====================================================
   ORVIANA LUXURY JEWELLERY - MAIN STYLESHEET
   Color Palette from Logo:
   - Deep Emerald Green: #061410 / #0A1F12 / #0D2318
   - Peacock Teal: #0E3D2E / #163D2B
   - Metallic Gold: #C9A84C / #D4A843 / #E8C96A
   - Off-White/Cream: #F5F0E8 / #EDE8DC
   - Diamond White: #FFFFFF
===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --bg-deep: #040E09;
    --bg-dark: #061410;
    --bg-section: #091A11;
    --bg-card: #0D2318;
    --bg-card-hover: #10291C;
    --emerald: #0E3D2E;
    --emerald-light: #163D2B;
    --peacock-teal: #0C4A30;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E9C5;
    --gold-dark: #A07830;
    --cream: #F5F0E8;
    --cream-dim: #EDE8DC;
    --white: #FFFFFF;
    --text-primary: #F5F0E8;
    --text-secondary: #BDB0A0;
    --text-muted: #8A7D6A;
    --border-gold: rgba(201, 168, 76, 0.3);
    --border-gold-strong: rgba(201, 168, 76, 0.6);
    --glow-gold: rgba(201, 168, 76, 0.15);
    --glow-gold-strong: rgba(201, 168, 76, 0.35);
    --glass-bg: rgba(13, 35, 24, 0.7);
    --glass-border: rgba(201, 168, 76, 0.2);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* ===== HEADER HEIGHTS (single source of truth) ===== */
    --announcement-height: 40px; /* announcement bar height */
    --navbar-height: 80px; /* navbar height */
    --header-total: 120px; /* announcement + navbar combined */
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-total);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

em {
    font-style: italic;
    color: var(--gold-light);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 140px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}


.preloader-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: preloaderLine 2s ease-in-out infinite;
}


.preloader-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    animation: fadeInOut 1.5s ease-in-out infinite;
}


/* ===== ANNOUNCEMENT BAR ===== */
/*
 * The announcement bar is now position:fixed at the very top of the viewport
 * (z-index 600, above the navbar). The navbar sits flush beneath it via
 * top: var(--announcement-height). No JavaScript offset is used — this
 * eliminates the scroll-gap bug where the JS-set top value persisted after
 * the bar scrolled away.
 */
.announcement-bar {
    background: linear-gradient(90deg, var(--bg-dark), var(--emerald), var(--bg-dark));
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    height: var(--announcement-height);
}

.announcement-ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

    .announcement-ticker span {
        font-family: var(--font-display);
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        color: var(--gold);
        text-transform: uppercase;
        padding: 0 20px;
    }


/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: var(--announcement-height); /* sits flush beneath the fixed announcement bar */
    left: 0;
    right: 0;
    z-index: 500;
    transition: var(--transition);
    padding: 0;
}

    .navbar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(4, 14, 9, 0);
        backdrop-filter: blur(0px);
        transition: var(--transition);
    }

    .navbar.scrolled::before {
        background: rgba(4, 14, 9, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
    }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: var(--transition);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active,
    .nav-link.active {
        color: var(--gold-light);
        outline: none;
    }

        .nav-link:hover::after {
            width: 100%;
        }

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo-img {
    height: 64px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
}

    .nav-logo-img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
    }

.nav-wishlist-btn {
    color: var(--cream-dim);
    transition: var(--transition);
    padding: 4px;
}

    .nav-wishlist-btn:hover {
        color: var(--gold);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--gold);
        transition: var(--transition);
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(4, 14, 9, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 20px 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

    .mobile-menu.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
}

    .mobile-nav-link:hover,
    .mobile-nav-link:focus,
    .mobile-nav-link:active,
    .mobile-nav-link.active {
        color: var(--gold);
        padding-left: 12px;
        outline: none;
    }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    z-index: 0;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold), 0 8px 25px rgba(201, 168, 76, 0.3);
    }

    .btn-primary:focus {
        outline: none;
        box-shadow: 0 0 0 0.1rem var(--bg-deep, #040E09), 0 0 0 0.25rem var(--gold, #C9A84C);
    }

    .btn-primary:active {
        transform: translateY(0);
        outline: none;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 36px;
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .btn-ghost:hover {
        background: var(--glass-bg);
        border-color: var(--gold);
        color: var(--gold-light);
        transform: translateY(-2px);
    }

    .btn-ghost:focus {
        outline: none;
        box-shadow: 0 0 0 0.1rem var(--bg-deep, #040E09), 0 0 0 0.25rem var(--gold, #C9A84C);
    }

    .btn-ghost:active {
        transform: translateY(0);
        outline: none;
    }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .btn-gold:hover {
        background: var(--gold);
        color: var(--bg-deep);
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold);
    }

    .btn-gold:focus {
        outline: none;
        box-shadow: 0 0 0 0.1rem var(--bg-deep, #040E09), 0 0 0 0.25rem var(--gold, #C9A84C);
    }

    .btn-gold:active {
        transform: translateY(0);
        outline: none;
    }

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 48px;
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

    .btn-view-all:hover {
        background: var(--glass-bg);
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 16px;
}

    .btn-whatsapp:hover {
        background: #1ebe57;
        transform: translateY(-2px);
    }

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

    .section-tag.light {
        color: var(--gold-light);
    }

.section-title {
    color: var(--cream);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

    .section-divider.left-align {
        justify-content: flex-start;
    }

.divider-line {
    display: block;
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

    .divider-line.short {
        width: 50px;
    }

.divider-gem, .divider-diamond {
    color: var(--gold);
    font-size: 0.7rem;
}

    .divider-gem.gold {
        color: var(--gold-light);
    }

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-total) + 30px) 0 50px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #102818 0%, var(--bg-deep) 70%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Peacock feather decorative SVG backgrounds */
.hero-peacock-left,
.hero-peacock-right {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='80' ry='80' stroke='%23C9A84C' stroke-width='0.5' fill='none'/%3E%3Cellipse cx='100' cy='100' rx='60' ry='60' stroke='%23C9A84C' stroke-width='0.5' fill='none'/%3E%3Cellipse cx='100' cy='100' rx='40' ry='40' stroke='%230E3D2E' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.hero-peacock-left {
    left: -150px;
    top: 50px;
}

.hero-peacock-right {
    right: -150px;
    bottom: 50px;
    transform: rotate(180deg);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-wrap {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.badge-gem {
    font-size: 0.55rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    max-width: 700px;
}

.hero-title-line1 {
    font-weight: 300;
    color: var(--cream);
    display: block;
}

.hero-title-line2 {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 300px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-frame {
    position: relative;
    width: 45%;
    max-width: 580px;
    z-index: 2;
    flex-shrink: 0;
}

.frame-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: frameGlowPulse 3s ease-in-out infinite;
}


.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    /* aspect-ratio: 1; removed */
    box-shadow: var(--shadow-deep), 0 0 60px rgba(201, 168, 76, 0.2);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
}

.frame-corner--tl {
    top: -8px;
    left: -8px;
    border-width: 2px 0 0 2px;
}

.frame-corner--tr {
    top: -8px;
    right: -8px;
    border-width: 2px 2px 0 0;
}

.frame-corner--bl {
    bottom: -8px;
    left: -8px;
    border-width: 0 0 2px 2px;
}

.frame-corner--br {
    bottom: -8px;
    right: -8px;
    border-width: 0 2px 2px 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, var(--gold));
    animation: scrollLineAnim 2s ease-in-out infinite;
}

.hero-scroll-hint span {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 14px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

    .marquee-inner span {
        font-family: var(--font-display);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--bg-deep);
        padding: 0 24px;
        font-weight: 600;
    }


/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-gold);
}

.trust-card {
    background: var(--bg-card);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

    .trust-card:hover {
        background: var(--bg-card-hover);
        transform: translateY(-4px);
    }

.trust-icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--glow-gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--glow-gold-strong);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.collection-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: var(--transition-slow);
}

    .collection-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-gold);
        transform: translateY(-6px);
    }

.collection-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.collection-card--large .collection-img-wrap {
    aspect-ratio: 4/5;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4,14,9,0.9) 0%, rgba(4,14,9,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(15px);
    transition: var(--transition);
}

.collection-card:hover .collection-overlay-content {
    transform: translateY(0);
}

.collection-tag-chip {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
}

.collection-overlay-content h3 {
    color: var(--cream);
    font-size: 1.5rem;
}

.collection-overlay-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    font-family: var(--font-serif);
}

.collection-cta-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 20px;
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: fit-content;
    margin-top: 8px;
}

    .collection-cta-btn:hover {
        background: var(--gold);
        color: var(--bg-deep);
        border-color: var(--gold);
    }

.collection-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collection-badge {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.collection-name {
    color: var(--cream);
    font-size: 1.2rem;
    font-weight: 400;
}

.collection-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.collection-stats {
    display: flex;
    gap: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--border-gold);
}

    .collection-stats span {
        font-size: 0.78rem;
        color: var(--text-muted);
    }

    .collection-stats strong {
        color: var(--gold);
        font-family: var(--font-serif);
    }

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 10px 24px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
}

    .filter-btn:hover,
    .filter-btn.active {
        color: var(--bg-deep);
        background: var(--gold);
        border-color: var(--gold);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-slow);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .product-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-gold);
        transform: translateY(-8px);
    }

    .product-card.hidden {
        display: none;
    }

.product-img-wrap {
    position: relative;
    overflow: hidden;
    /* Ensure a square aspect ratio even on browsers without aspect-ratio support */
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.product-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition);
}

    .product-action-btn:hover {
        background: var(--gold);
        color: var(--bg-deep);
        border-color: var(--gold);
    }

    .product-action-btn.active {
        background: var(--gold);
        color: var(--bg-deep);
    }

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-collection {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.product-name {
    color: var(--cream);
    font-size: 1rem;
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.reviews {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-current {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-off {
    font-size: 0.72rem;
    color: #4CAF50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.btn-add-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 600;
    margin-top: 4px;
}

    .btn-add-cart:hover {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
    }

.view-all-wrap {
    text-align: center;
    margin-top: 60px;
}

/* ===== BRAND SECTION ===== */
.brand-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.brand-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(14, 61, 46, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.brand-image-col {
    position: relative;
}

.brand-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.brand-img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.brand-img-accent {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    pointer-events: none;
}

.brand-stat-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-deep);
}

.brand-stat-1 {
    bottom: 60px;
    right: -40px;
}

.brand-stat-2 {
    top: 40px;
    left: -40px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.brand-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

    .brand-text strong {
        color: var(--gold-light);
    }

.brand-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
    padding: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    font-size: 1rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== LIFESTYLE SECTION ===== */
.lifestyle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.lifestyle-left {
    overflow: hidden;
    position: relative;
}

.lifestyle-img-wrap {
    height: 100%;
    overflow: hidden;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.lifestyle-left:hover .lifestyle-img {
    transform: scale(1.05);
}

.lifestyle-right {
    background: linear-gradient(135deg, var(--bg-dark), var(--emerald));
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.lifestyle-title {
    color: var(--cream);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: 16px 0 20px;
}

.lifestyle-text {
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
}

.lifestyle-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.lifestyle-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.lf-icon {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    animation: testimonialIn 0.5s ease;
}


    .testimonial-card.active {
        display: flex;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 32px;
        font-family: var(--font-serif);
        font-size: 5rem;
        color: var(--gold);
        opacity: 0.2;
        line-height: 1;
    }

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
}

.testi-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-deep);
}

.testi-author strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.testi-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testi-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: transparent;
}

    .testi-btn:hover {
        background: var(--gold);
        color: var(--bg-deep);
        border-color: var(--gold);
    }

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-gold-strong);
    transition: var(--transition);
    cursor: pointer;
}

    .testi-dot.active {
        background: var(--gold);
        transform: scale(1.3);
    }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--emerald), var(--bg-dark));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-gold);
}

.stat-item {
    background: rgba(4, 14, 9, 0.8);
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-count {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-top: -8px;
}

.stat-item p {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(14, 61, 46, 0.4) 0%, transparent 70%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.nl-logo {
    margin-bottom: 32px;
}

.nl-logo-img {
    height: 100px;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.newsletter-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin: 16px 0;
}

.newsletter-subtitle {
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 40px;
}

.newsletter-form {
    width: 100%;
}

.nl-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.nl-input {
    flex: 1;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--cream);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

    .nl-input::placeholder {
        color: var(--text-muted);
    }

    .nl-input:focus {
        border-color: var(--gold);
        background: var(--bg-card-hover);
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    }

.nl-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 16px;
}

.newsletter-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-gold);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 10px;
    transition: var(--transition);
}

    .social-link:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: var(--glow-gold);
        transform: translateY(-3px);
    }

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        font-size: 0.88rem;
        color: var(--text-secondary);
        transition: var(--transition);
        position: relative;
        padding-left: 0;
    }

        .footer-links a::before {
            content: '›';
            position: absolute;
            left: -16px;
            opacity: 0;
            color: var(--gold);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 16px;
        }

            .footer-links a:hover::before {
                opacity: 1;
                left: 0;
            }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

    .footer-contact-item svg {
        color: var(--gold);
        flex-shrink: 0;
    }

.footer-hours {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gold);
}

    .footer-hours p {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-gold);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-bottom-inner p {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a {
        font-size: 0.8rem;
        color: var(--text-muted);
        transition: var(--transition);
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1;
}

    .modal-close:hover {
        color: var(--cream);
        border-color: var(--gold);
        background: var(--glow-gold);
    }

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--cream);
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .modal-features span {
        font-family: var(--font-display);
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        padding: 4px 10px;
        border: 1px solid var(--border-gold);
        border-radius: 50px;
    }

.modal-add-cart {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    z-index: 2000;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

.toast-icon {
    color: var(--gold);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

    .floating-whatsapp:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}


/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bg-deep), #13402d);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .back-to-top.visible {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
        animation: bttFloat 3s ease-in-out infinite;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--bg-deep);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
        transform: translateY(-5px) scale(1.05);
        animation: none;
    }

.btt-diamond {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-top:hover .btt-diamond {
    transform: scale(1.15) rotate(5deg);
}

@keyframes bttFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===== AOS (Scroll Reveal) ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    [data-aos].aos-animated {
        opacity: 1;
        transform: translateY(0);
    }

    [data-aos][data-aos-delay="100"] {
        transition-delay: 0.1s;
    }

    [data-aos][data-aos-delay="200"] {
        transition-delay: 0.2s;
    }

    [data-aos][data-aos-delay="300"] {
        transition-delay: 0.3s;
    }

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

    [data-aos="fade-right"].aos-animated {
        transform: translateX(0);
    }

[data-aos="fade-left"] {
    transform: translateX(30px);
}

    [data-aos="fade-left"].aos-animated {
        transform: translateX(0);
    }

/* ===== PARTICLES ===== */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 6s) ease-in-out var(--delay, 0s) infinite;
}


/* =====================================================
   CART, CHECKOUT & LUXURY UI SECTIONS (Merged from cart.css)
===================================================== */
/* ===== 1. HEADER ICONS (SEARCH, WISHLIST, CART, PROFILE) ===== */
.nav-icon-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

    .nav-icon-btn:hover {
        color: var(--gold-light);
        border-color: var(--border-gold);
        background: var(--glow-gold);
        transform: translateY(-2px);
    }

.nav-cart-btn, .nav-wishlist-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-deep);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wishlist-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #e53935, #ff5252);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile Menu Icon Row */
.mobile-icons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gold);
}

/* ===== 2. GLASSMORPHISM MINI CART DRAWER ===== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 14, 9, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    .cart-drawer-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-deep) 100%);
    border-left: 1px solid var(--border-gold-strong);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cart-drawer-overlay.open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 35, 24, 0.5);
}

.cart-drawer-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-close {
    background: none;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-drawer-close:hover {
        color: var(--white);
        border-color: var(--gold);
        background: var(--glow-gold);
        transform: rotate(90deg);
    }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    /* Custom Scrollbar for Drawer */
    .cart-drawer-body::-webkit-scrollbar {
        width: 6px;
    }

    .cart-drawer-body::-webkit-scrollbar-track {
        background: var(--bg-deep);
    }

    .cart-drawer-body::-webkit-scrollbar-thumb {
        background: var(--border-gold);
        border-radius: 3px;
    }

.cart-item-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 16px;
    background: rgba(9, 26, 17, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

    .cart-item-card:hover {
        border-color: var(--border-gold);
        background: rgba(16, 41, 28, 0.7);
        transform: translateY(-2px);
    }

.cart-item-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-deep);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-col {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.cart-item-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2px;
    line-height: 1.2;
}

.cart-item-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-top: 6px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 4px;
}

    .cart-item-remove:hover {
        color: #ff5252;
        transform: scale(1.15);
    }

.qty-pill {
    display: flex;
    align-items: center;
    background: var(--bg-deep);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 2px 6px;
    gap: 8px;
}

.qty-pill-btn {
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .qty-pill-btn:hover {
        color: var(--white);
        transform: scale(1.2);
    }

.qty-pill-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 14px;
    text-align: center;
}

/* Empty Drawer State */
.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.cart-empty-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 8px;
    animation: floatUpFade 3s infinite alternate ease-in-out;
}

.cart-drawer-footer {
    padding: 24px 28px;
    background: rgba(6, 20, 16, 0.95);
    border-top: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.cart-subtotal-val {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.cart-drawer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ===== 3. CART PAGE (cart.html) ===== */
.cart-page-wrapper {
    padding-top: calc(var(--header-total) + 40px);
    padding-bottom: 100px;
    background-color: var(--bg-deep);
    min-height: 85vh;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.cart-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-deep);
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

    .cart-page-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.cart-page-product-info, .cart-page-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-page-img-wrap, .cart-page-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
}

    .cart-page-img, .cart-page-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cart-page-item-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.wishlist-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.wishlist-actions-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Summary Box on Right Side */
.order-summary-box {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-gold);
    position: sticky;
    top: calc(var(--header-total) + 30px);
}

.summary-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

    .summary-row.total {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-gold);
        font-size: 1.35rem;
        font-family: var(--font-serif);
        font-weight: 700;
        color: var(--text-primary);
    }

        .summary-row.total .val {
            font-family: var(--font-sans);
            color: var(--gold-light);
        }

.coupon-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.coupon-input {
    flex: 1;
    background: var(--bg-deep);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

    .coupon-input:focus {
        border-color: var(--gold-light);
        box-shadow: 0 0 10px var(--glow-gold);
    }

.coupon-btn {
    background: var(--bg-section);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

    .coupon-btn:hover {
        background: var(--gold);
        color: var(--bg-deep);
    }

/* ===== 4. CHECKOUT PAGE (checkout.html) ===== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-top: 30px;
}

.checkout-section {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-deep);
}

.checkout-section-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-deep);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input {
    background: var(--bg-deep);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

    .form-input:focus {
        border-color: var(--gold-light);
        box-shadow: 0 0 12px var(--glow-gold);
    }

/* Payment Radio Cards */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-card {
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 16px 20px;
    background: rgba(9, 26, 17, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

    .payment-card:hover, .payment-card.selected {
        border-color: var(--gold-light);
        background: rgba(201, 168, 76, 0.12);
        box-shadow: 0 0 15px var(--glow-gold);
    }

    .payment-card input[type="radio"] {
        accent-color: var(--gold);
        width: 18px;
        height: 18px;
    }

.payment-card-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* ===== 5. LUXURY SUCCESS PAGE (order-success.html) ===== */
.success-page-container {
    max-width: 700px;
    margin: 60px auto;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-gold), var(--shadow-deep);
    position: relative;
    overflow: hidden;
}

.success-badge-top {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.order-details-card {
    background: rgba(4, 14, 9, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 36px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-item-val {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ===== 6. SEARCH MODAL OVERLAY ===== */
.search-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 14, 9, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10005;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
}

    .search-modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.search-modal-box {
    width: 100%;
    max-width: 650px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold-strong);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-gold), 0 25px 50px rgba(0,0,0,0.8);
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-overlay.open .search-modal-box {
    transform: translateY(0);
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 16px 50px 16px 20px;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    outline: none;
}

    .search-input:focus {
        border-color: var(--gold-light);
        box-shadow: 0 0 15px var(--glow-gold);
    }

.search-close-btn {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

    .search-close-btn:hover {
        color: var(--gold-light);
        transform: rotate(90deg);
    }

/* Responsive Overrides */

/* ===== LUXURY DETAIL PAGE QUANTITY & ACTIONS ===== */
.detail-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 28px;
    background: rgba(16, 40, 24, 0.4);
    padding: 24px;
    border-radius: var(--radius, 12px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.detail-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-qty-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.detail-qty-selector {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 999px;
    padding: 4px 12px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.detail-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .detail-qty-btn:hover {
        background: rgba(201, 168, 76, 0.2);
        transform: scale(1.1);
        color: #fff;
    }

.detail-qty-val {
    min-width: 40px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.detail-buttons-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: stretch;
}

.btn-detail-add {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 20px;
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: var(--transition);
}

    .btn-detail-add:hover {
        background: rgba(201, 168, 76, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(201, 168, 76, 0.35);
        color: #fff;
        border-color: var(--gold-light);
    }

.btn-detail-buy {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark, #a38035) 0%, var(--gold, #c9a84c) 50%, var(--gold-light, #e4c875) 100%);
    color: var(--bg-deep, #07130c);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 20px;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

    .btn-detail-buy:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
        background: linear-gradient(135deg, var(--gold-light, #e4c875) 0%, var(--gold, #c9a84c) 50%, var(--gold-dark, #a38035) 100%);
    }

.btn-detail-wishlist {
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm, 6px);
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

    .btn-detail-wishlist:hover, .btn-detail-wishlist.active {
        background: rgba(201, 168, 76, 0.2);
        border-color: var(--gold);
        transform: scale(1.05);
    }



/* =====================================================
   12. ANIMATIONS & KEYFRAMES (Consolidated)
   • transitions & hover animations
   • toast & badge animations
   • shimmer & floating particles
   • all keyframes
===================================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* Micro-animations & effects from cart-animation.css */
/* 1. Badge Bounce & Glow */

.badge-animated {
    animation: badgeBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* 2. Gold Shine Sweep */

.gold-shine {
    position: relative;
    overflow: hidden;
}

    .gold-shine::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100% );
        transform: skewX(-25deg);
        transition: none;
        pointer-events: none;
    }

    .gold-shine:hover::after {
        animation: goldShineSweep 0.85s ease-in-out;
    }

/* 3. Floating Cart Icon & Particle Animation */

.floating-particle-item {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.8);
    animation: floatUpFade 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* 4. Button Ripple Effect */

.btn-ripple-container {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light) 0%, rgba(201, 168, 76, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rippleAnimation 0.6s ease-out forwards;
}

/* 5. Cart Drawer Spring Slide */


.drawer-spring-open {
    animation: drawerSpringIn 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.drawer-slide-close {
    animation: drawerSlideOut 0.35s ease-in forwards;
}

/* 6. 3D Card Hover & Tilt Enhancement */
.card-3d-tilt {
    transition: transform 0.25s ease-out, box-shadow 0.35s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

    .card-3d-tilt:hover {
        box-shadow: 0 15px 35px rgba(201, 168, 76, 0.25), 0 5px 15px rgba(0,0,0,0.4);
    }

/* 7. Luxury Loading Skeleton */

.skeleton-box {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-section) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* 8. Success Confetti Explosion */

.confetti-piece {
    position: fixed;
    top: -20px;
    width: 10px;
    height: 20px;
    z-index: 99999;
    pointer-events: none;
    animation: confettiFall 3s ease-out forwards;
}

/* 9. SVG Luxury Checkmark Animation */

.svg-check circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: var(--gold-light);
    fill: none;
    animation: circleDraw 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.svg-check path {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--gold-light);
    fill: none;
    animation: checkDraw 0.4s 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.svg-check-wrapper {
    animation: checkScale 0.5s ease-in-out 0.9s both;
}

/* 10. Smooth Page & Item Transitions */
.fade-in-item {
    animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* All Consolidated @keyframes from project */
@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes preloaderLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 200px;
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes frameGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes scrollLineAnim {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes testimonialIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }

    80% {
        opacity: 0.4;
        transform: translateY(-80px) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0);
    }
}

@keyframes badgeBounce {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(201, 168, 76, 0);
    }

    40% {
        transform: scale(1.45) translateY(-2px);
        box-shadow: 0 0 15px var(--gold-light);
    }

    70% {
        transform: scale(0.9) translateY(0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 8px var(--gold);
    }
}

@keyframes goldShineSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes floatUpFade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.6);
    }
}

@keyframes rippleAnimation {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes drawerSpringIn {
    0% {
        transform: translateX(100%);
    }

    70% {
        transform: translateX(-15px);
    }

    85% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes drawerSlideOut {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes skeletonPulse {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(600px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes circleDraw {
    0% {
        stroke-dashoffset: 166;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkDraw {
    0% {
        stroke-dashoffset: 48;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkScale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-card--large {
        grid-column: 1 / -1;
    }

        .collection-card--large .collection-img-wrap {
            aspect-ratio: 16/7;
        }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .brand-stat-1 {
        right: 20px;
    }

    .brand-stat-2 {
        left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: calc(var(--header-total) + 20px) 0 50px;
    }

    .hero-image-frame {
        width: 90%;
        max-width: 400px;
        margin: 24px auto 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .hero-text-wrap {
        align-items: center;
    }

    .hero-title {
        align-items: center;
    }

    .hero-divider {
        margin: 0 auto 24px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lifestyle-section {
        grid-template-columns: 1fr;
    }

    .lifestyle-right {
        padding: 60px 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-img-wrap {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo {
        position: static;
        transform: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card--large {
        grid-column: auto;
    }

    .nl-form-row {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .lifestyle-right {
        padding: 50px 24px;
    }

    .brand-stat-1 {
        position: static;
        margin-top: 20px;
    }

    .brand-stat-2 {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-cta .btn-primary, .hero-cta .btn-ghost {
            text-align: center;
            justify-content: center;
        }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-divider.left-align {
        justify-content: center;
    }

    .brand-grid {
        gap: 30px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }
}

/* Cart & Checkout Responsive Overrides */
@media (max-width: 992px) {
    .cart-page-grid, .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cart-table-header {
        display: none;
    }

    .cart-page-item, .wishlist-item-card {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .form-grid-2, .payment-methods-grid, .order-details-card, .cart-drawer-btns {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
    }

/* ===== SELECTION ===== */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--cream);
}

/* =====================================================
   ORVIANA - HOMEPAGE SPECIFIC OVERRIDES
   Merged from home-page.css and Index.cshtml inline styles
===================================================== */
#home-page-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#home-page-wrapper .collection-card { display: flex; flex-direction: column; height: 100%; }
#home-page-wrapper .collection-img-wrap { flex-grow: 1; flex: 1 1 auto; }
#home-page-wrapper .products-grid { gap: 28px; }
#home-page-wrapper .product-card { min-height: unset; }
#home-page-wrapper .product-img-wrap {
    /* aspect-ratio: 1; removed */
    /* padding-bottom: 0 !important; removed */
    position: relative;
    overflow: hidden;
}
#home-page-wrapper .product-img-wrap .product-img {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
#home-page-wrapper .collection-info { flex-shrink: 0; }
#home-page-wrapper .hero, 
#home-page-wrapper .marquee-strip, 
#home-page-wrapper .trust-section, 
#home-page-wrapper .lifestyle-section, 
#home-page-wrapper .stats-section {
    width: 100%;
}
#home-page-wrapper .filter-btn.active,
#home-page-wrapper .filter-btn:hover {
    color: var(--bg-deep) !important;
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}
#home-page-wrapper .btn-icon-wishlist:hover,
#home-page-wrapper .btn-icon-wishlist.active {
    background: var(--gold) !important;
    color: var(--bg-deep) !important;
    border-color: var(--gold) !important;
}
#home-page-wrapper .collection-stats {
    display: flex;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border-gold);
    flex-wrap: wrap;
    margin-top: 4px;
}
#home-page-wrapper .collection-stats span { font-size: 0.78rem; color: var(--text-muted); }
#home-page-wrapper .collection-stats strong { color: var(--gold); font-family: var(--font-serif); }
#home-page-wrapper .collections-grid { align-items: stretch; }
#home-page-wrapper .card-action-row { display: flex; gap: 8px; margin-top: 10px; }
#home-page-wrapper .card-action-row .btn-icon-wishlist {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
    background: var(--bg-deep);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
#home-page-wrapper .card-action-row .btn-add-cart {
    flex: 1;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#home-page-wrapper .brand-image-col { overflow: visible; }
#home-page-wrapper .nl-form-row { align-items: stretch; }
#home-page-wrapper .nl-input { min-height: 48px; }
#home-page-wrapper .testimonials-carousel { position: relative; }
#home-page-wrapper .trust-section { overflow: hidden; }
#home-page-wrapper .btn-view-all { display: inline-flex; color: var(--gold); border-color: var(--border-gold-strong); }
#home-page-wrapper .btn-view-all:hover { background: var(--glass-bg); border-color: var(--gold); color: var(--gold-light); }
#home-page-wrapper .collection-card--large .collection-overlay-content h3 { font-size: 1.5rem; color: var(--cream); }

@media (max-width: 768px) {
    #home-page-wrapper {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
}

/* Header fixes (global, since header is in layout) */
.navbar { display: block !important; }
.nav-link { padding: 0 !important; text-decoration: none !important; }
.nav-link:hover, .nav-link:focus, .nav-link:active, .nav-link.active { color: var(--gold-light) !important; }
.nav-icon-btn { padding: 4px !important; background: transparent !important; border: none !important; box-shadow: none !important; }
.announcement-bar { display: flex !important; }



#home-page-wrapper .btn-icon-wishlist:hover {
    background: var(--gold) !important;
    color: var(--bg-deep) !important;
}

/* =====================================================
   SHARED PAGE FULL-BLEED UTILITY
   Allows a page wrapper to escape the layout .container
   so full-width sections (hero, marquee, etc.) span 100vw.
   Inner sections still manage their own .container widths.
   Mirrors the existing #home-page-wrapper pattern.
===================================================== */
.page-full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
