/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 15% 50%, rgba(45, 27, 78, 0.4), transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
        #0a0712;
    background-attachment: fixed;
    color: #F5EFE6;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    cursor: default;
    padding-top: 38px;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-glow {
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: screen;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
.logo,
.product-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #fff, #F5F5DC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    /* Improved line-height for multi-line */
}

h2 {
    font-size: 3rem;
    color: #F5F5DC;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 55px;
    right: 30px;
    left: auto;
    width: auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border: 1px solid rgba(245, 245, 220, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(245, 245, 220, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(5, 3, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .navbar {
        top: 50px;
        right: 20px;
        padding: 6px 18px;
    }
}

.nav-login a {
    color: #F5EFE6;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 8px 10px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-login a:hover {
    color: #FFF2A8;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(255, 242, 168, 0.5);
}

/* ========== LOGO SECTION (HERO SCROLL-TRIGGERED) ========== */
.logo-section {
    text-align: center;
    padding: 0;
    background: transparent;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Allows it to be up to original resolution but responsive */
    display: flex;
    justify-content: center;
}

.scroll-indicator {
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 1;
    color: #F5F5DC;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
}

@media (min-width: 769px) {
    .logo-section {
        padding-bottom: 8px;
    }

    .scroll-indicator {
        margin-top: 10px;
        margin-bottom: 2px;
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 245, 220, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #D4AF37;
    border-radius: 2px;
    animation: scrollBounce 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollBounce {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.video-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.main-logo {
    max-width: 100%;
    height: auto;
    /* Keeps original aspect ratio */
    display: block;
}


.nav-cart {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: #F5F5DC;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-cart:hover {
    transform: scale(1.1);
    color: #fff;
}

.nav-cart:active {
    transform: scale(0.95);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #F5F5DC;
    color: #2D1B4E;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== SECTIONS ========== */
section {
    padding: 20px 5%;
    position: relative;
}

.snap-section {
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 10%, #000000, #0a0418);
}

.hero-logo {
    z-index: 3;
    text-align: center;
    margin-bottom: 15px;
}

.hero-logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.7));
}

@keyframes logoShine {

    0%,
    100% {
        filter:
            drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)) brightness(1.1) contrast(1.2);
    }

    50% {
        filter:
            drop-shadow(0 0 35px rgba(212, 175, 55, 0.9)) brightness(1.4) contrast(1.5);
    }
}

.hero-content {
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtext {
    font-size: 1.2rem;
    margin: 24px 0;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-bottle-wrapper {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 40%;
    max-width: 400px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-bottle {
    width: 100%;
}

/* ========== BUTTONS ========== */
.glow-btn {
    background: transparent;
    border: 1.5px solid #F5F5DC;
    color: #F5F5DC;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 40px;
    margin-top: 32px;
    transition: all 0.4s;
    backdrop-filter: blur(4px);
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
}

.glow-btn:hover {
    background: #F5F5DC;
    color: #2D1B4E;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
}

.primary-button {
    background: #F5F5DC;
    color: #2D1B4E;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-button:hover {
    background: #e5c158;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    border: 1.5px solid #F5F5DC;
    color: #F5F5DC;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.secondary-button:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* ========== BRAND SECTION ========== */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.split-text p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.brand-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.brand-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F5F5DC;
}

.split-visual {
    flex: 1;
    background: rgba(45, 27, 78, 0.3);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.split-visual i {
    font-size: 4rem;
    color: #F5F5DC;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #F5F5DC;
}

#product-section {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* ========== PRODUCT SECTION (3-COLUMN LAYOUT) ========== */
.product-container.three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1700px;
    width: 90%;
    margin: 0 auto;
    /* Nuclear Visibility Fix - Global */
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

.product-col-left,
.product-col-right,
.product-col-center {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

@media (max-width: 768px) {
    .product-container.three-col {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .product-col-right {
        order: 1;
        text-align: center;
        width: 100%;
    }

    .product-col-center {
        order: 2;
        width: 100%;
        margin: 0 auto;
    }

    .product-col-left {
        order: 3;
        text-align: center;
        width: 100%;
    }

    .scroll-indicator {
        display: none !important;
    }
}



.product-col-left {
    text-align: left;
}

.product-col-center {
    position: relative;
    z-index: 2;
    perspective: 1500px;
}

.product-col-right {
    text-align: right;
}

@media (min-width: 1101px) {

    .product-col-left,
    .product-col-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-features-mini {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-actions-v2 {
        align-items: center;
    }
}

.product-type {
    font-size: 2.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #D4AF37, #FFF2A8, #D4AF37, #FFF2A8, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldShine 4s linear infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}

.product-spec {
    font-size: 2.8rem;
    font-weight: 500;
    color: #FFFFFF !important;
    /* Force Pure White for Spec */
    opacity: 1 !important;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Bundle Selector */
.bundle-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 400px;
}

.bundle-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bundle-option.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.bundle-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
}

.bundle-name {
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bundle-price {
    font-size: 1.4rem;
    color: #F5EFE6;
    font-weight: 700;
}

.bundle-option.active .bundle-price {
    color: #D4AF37;
}

.bundle-badge-mini {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #4CAF50;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card-luxury {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.price-main-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-main-display .currency {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 500;
}

.price-main-display .amount {
    font-size: 6.5rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.price-main-display .unit {
    font-size: 1.2rem;
    color: rgba(245, 239, 230, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.multi-buy-offer {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 15px 25px;
    position: relative;
    max-width: 320px;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.multi-buy-offer:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.offer-badge-glow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.offer-text {
    font-size: 0.9rem;
    color: #F5EFE6;
    font-weight: 500;
}

.offer-price {
    font-size: 1.4rem;
    color: #D4AF37;
    font-weight: 700;
}

.offer-savings {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.old-price {
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.4);
    text-decoration: line-through;
}

.save-tag {
    font-size: 0.75rem;
    color: #4CAF50;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-actions-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    width: 100%;
}

@media (max-width: 1100px) {
    .product-actions-v2 {
        align-items: center;
    }
}

/* Trust Badges */
.trust-badges-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    width: 100%;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.t-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 239, 230, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.t-badge i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.t-divider {
    width: 1px;
    height: 12px;
    background: rgba(212, 175, 55, 0.2);
}

.stock-badge.mini {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: #F5F5DC;
    gap: 8px;
    align-items: center;
}

@media (min-width: 769px) {
    .product-col-left .stock-badge.mini {
        display: flex;
        width: fit-content;
        margin: 12px auto 0;
    }
}

/* Product Visual Wrapper - 3D Glassmorphism Case */
.product-visual-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 245, 220, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    /* Removed inset glow */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
}

.product-visual-wrapper:hover {
    transform: translateY(-15px) scale(1.03) rotateY(-5deg) rotateX(5deg);
    box-shadow: 20px 50px 100px rgba(0, 0, 0, 0.7);
    /* Removed inset hover glow */
    border-color: rgba(245, 245, 220, 0.2);
}

.product-slider {
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0712, #000);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    transform: translateZ(20px);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-visual-wrapper:hover .product-slider {
    transform: translateZ(40px);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    filter: none;
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slider-img.active {
    opacity: 1 !important;
    filter: none !important;
}

/* Slider Dots */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(245, 245, 220, 0.3);
    border: 1px solid rgba(245, 245, 220, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F5F5DC;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(245, 245, 220, 0.8);
}


/* Right Column Styles */
.product-description-premium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    /* Controlled scaling for desktop */
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 30px;
    color: #F5EFE6;
    max-width: 900px;
}

.highlight-gold {
    background: linear-gradient(to right, #D4AF37, #FFF2A8, #D4AF37, #FFF2A8, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldShine 4s linear infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    font-weight: 700;
    position: relative;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, #FFF2A8, transparent);
    opacity: 0.8;
}

.product-features-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    width: max-content;
    margin-left: 0;
    /* Align left for desktop 3-col layout */
}

@media (min-width: 1101px) {
    .product-features-mini {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.product-features-mini span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    color: #FFFFFF !important;
    /* Force White for Features */
    opacity: 1 !important;
}

.product-features-mini i {
    color: #F5F5DC;
    font-size: 1.3rem;
}

.product-actions-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.large-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #D4AF37 !important;
    /* Force solid background for visibility */
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    max-width: 360px;
}

.mini-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.85rem;
    padding: 10px 20px;
    width: fit-content;
}

.mini-btn:hover {
    border-color: #F5F5DC;
    color: #F5F5DC;
    background: rgba(212, 175, 55, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .product-container.three-col {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .product-col-right {
        order: 1;
        text-align: center;
        width: 100%;
    }

    .product-col-center {
        order: 2;
        max-width: 450px;
        margin: 0 auto;
    }

    .product-col-left {
        order: 3;
        text-align: center;
        width: 100%;
    }

    .product-price-large {
        font-size: 3.2rem;
    }

    .product-actions-v2 {
        align-items: center;
    }

    .large-btn {
        width: 100%;
        max-width: 360px;
    }
}

/* ========== EXPERIENCE SECTION ========== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #F5F5DC;
    display: block;
    margin-bottom: 12px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.emotion-card {
    background: transparent;
    border-radius: 24px;
    text-align: center;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    min-height: 250px;
}

.emotion-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.emotion-card:hover .emotion-card-inner {
    transform: rotateY(180deg);
}

.emotion-card-front,
.emotion-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 32px 20px;
    background: rgba(255, 255, 240, 0.03);
    border: 1px solid rgba(245, 245, 220, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emotion-card-back {
    transform: rotateY(180deg);
    background: rgba(245, 245, 220, 0.08);
    /* slight beige tint */
    border-color: #F5F5DC;
}

.emotion-card-front i {
    font-size: 3.5rem;
    color: #F5F5DC;
    filter: drop-shadow(0 0 15px rgba(245, 245, 220, 0.4));
    transition: transform 0.4s ease;
}

.emotion-card:hover .emotion-card-front i {
    transform: scale(1.1);
}

.emotion-card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #F5F5DC;
    font-family: 'Playfair Display', serif;
}

.emotion-card-back p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 15px;
}

.scent-hover {
    background: #F5F5DC;
    color: #2D1B4E;
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* ========== FEATURES ========== */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 28px;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.feature i {
    font-size: 2.5rem;
    color: #F5F5DC;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 12px;
}

/* ========== HOOK SECTION ========== */
.hook {
    text-align: center;
    padding: 20px;
    margin-bottom: 50px;
    background: transparent;
}

.hook h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hook p {
    font-size: 1.3rem;
    opacity: 0.8;
}

@media (min-width: 769px) {
    .hook {
        margin-top: 20px;
        margin-bottom: 70px;
    }
}

/* ========== PRICING CARD ========== */
.pricing-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(45, 27, 78, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-image {
    flex: 1;
    background: linear-gradient(135deg, #2D1B4E, #1a0f2e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.pricing-image img {
    max-width: 200px;
    border-radius: 20px;
}

.pricing-details {
    flex: 1;
    padding: 50px;
}

.pricing-details h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 16px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #F5F5DC;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-left: 12px;
}

.urgency-badge {
    background: rgba(212, 175, 55, 0.15);
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    margin: 20px 0;
    color: #F5F5DC;
}

.button-large {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
}

.shipping-info {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ========== CASE SHOWCASE SECTION ========== */
.case-slider-container {
    max-width: 1800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(45, 27, 78, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.case-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 20px;
}


.case-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.case-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    /* Large tap target for mobile */
    position: relative;
}

.case-dot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.case-dot.active {
    background: #D4AF37;
    width: 28px;
    border-radius: 8px;
    border-color: #FFF2A8;
}

@keyframes autoSlide {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-20%);
    }

    50% {
        transform: translateX(-40%);
    }

    75% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(-80%);
    }
}

/* ========== GLOBAL ANIMATIONS ========== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Stagger animations */
.scroll-animate.stagger-1 {
    transition-delay: 0.1s;
}

.scroll-animate.stagger-2 {
    transition-delay: 0.2s;
}

.scroll-animate.stagger-3 {
    transition-delay: 0.3s;
}

.scroll-animate.stagger-4 {
    transition-delay: 0.4s;
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Loading animations */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Button animations */
.button-bounce {
    transition: transform 0.2s ease;
}

.button-bounce:active {
    transform: scale(0.95);
}

.button-slide {
    position: relative;
    overflow: hidden;
}

.button-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button-slide:hover::before {
    left: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: #05030a;
    padding: 50px 5% 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: #F5F5DC;
    margin-right: 10px;
}

.social-icons a {
    color: #F5F5DC;
    margin: 0 12px;
    font-size: 1.5rem;
    transition: 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 8px gold;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ========== PARTICLES ========== */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, #F5F5DC, transparent);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-links a {
        margin-left: 18px;
        font-size: 0.75rem;
    }

    .split-section {
        flex-direction: column;
    }

    .pricing-card {
        flex-direction: column;
    }

    .pricing-details {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 15px;
        /* Reduced from 60px 20px to fix unwanted spaces */
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    /* Mobile animations */
    .scroll-animate {
        transform: translateY(20px);
        transition: all 0.4s ease-out;
    }

    .hover-lift:hover {
        transform: translateY(-3px);
    }

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

    /* Mobile logo section */
    .logo-section {
        width: 100%;
        height: auto;
        min-height: 34vh;
    }

    .main-logo {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }

    /* Mobile navbar */
    .navbar {
        padding: 10px 15px;
        top: 50px;
        right: 15px;
    }

    .navbar-container {
        gap: 12px !important;
        /* Smaller gap for mobile */
    }

    .nav-login a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Mobile product showcase */
    .product-container.three-col {
        display: flex;
        /* Force flex to allow column direction */
        flex-direction: column;
        gap: 20px;
        align-items: center;
        /* Center children */
    }

    .product-col-left,
    .product-col-center,
    .product-col-right {
        width: 100%;
        text-align: center;
    }

    .product-actions-v2 {
        align-items: center;
    }

    .large-btn {
        width: 100%;
        max-width: 320px;
    }

    .product-type {
        font-size: 2rem;
        color: #FFFFFF !important;
        text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    }

    .product-description-premium {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        line-height: 1.4;
        margin-bottom: 25px;
        color: #FFFFFF !important;
    }

    .product-features-mini {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 0 auto 30px;
        width: 100%;
        padding: 0 15px;
    }

    .product-features-mini span {
        font-size: 0.85rem;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 30px;
        color: #F5EFE6;
        display: flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .product-features-mini i {
        font-size: 0.8rem;
        color: #D4AF37;
    }

    .grid-5 {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Reduced gap to fix unwanted spaces */
    }

    section {
        padding: 40px 15px;
    }

    .emotion-card {
        min-height: 220px;
    }

    .emotion-card-inner {
        /* Remove 3D flip on mobile for better UX; show both info or just front with details */
        transition: none;
    }

    .emotion-card-front {
        padding: 20px 15px;
    }

    .emotion-card-front i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .emotion-card-front h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .emotion-card-front p {
        font-size: 0.85rem;
        opacity: 0.8;
    }

    /* On mobile, we can slightly darken the background to make the icon/text pop */
    .emotion-card-front {
        background: rgba(245, 245, 220, 0.05);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .case-img {
        width: 250px;
        height: 150px;
    }

    /* Mobile footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Mobile animations - reduce motion */
    @media (prefers-reduced-motion: reduce) {

        .scroll-animate,
        .fade-in,
        .slide-in-left,
        .slide-in-right,
        .slide-in-up,
        .pulse,
        .float {
            animation: none !important;
            transition: none !important;
            transform: none !important;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: none;
        }
    }

    /* Additional spacing fixes */
    #product-section {
        min-height: auto !important;
        padding: 24px 15px !important;
    }

    .hero-slider {
        height: auto !important;
        aspect-ratio: 3138 / 1250 !important;
    }

    #case-slider {
        margin: 20px auto !important;
    }

    .section-header {
        margin-bottom: 30px !important;
        /* Reduced from 60px */
    }

    .grid-5 {
        gap: 15px !important;
        /* Even smaller gap */
    }

    .hook h2 {
        font-size: 1.95rem;
    }

    /* Product Visual Mobile Compatibility */
    .product-visual-wrapper {
        transform: none !important;
        transform-style: flat !important;
        perspective: none !important;
        z-index: 1;
        width: 100%;
        max-width: 400px;
    }

    .product-slider {
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        background: #000;
        display: block !important;
        opacity: 1 !important;
    }

    .slider-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        filter: none !important;
    }

    .slider-img.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10 !important;
        display: block !important;
        position: absolute !important;
    }

    .case-slider-dots {
        bottom: 10px;
        padding: 6px 10px;
        gap: 8px;
        background: rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .case-dot {
        width: 10px;
        height: 10px;
    }

    .case-dot.active {
        width: 20px;
        border-radius: 6px;
    }
}

#case-slider {
    padding: 0 !important;
    margin: 30px auto;
    width: 90%;
    max-width: 1700px;
}

.hero-slider {
    width: 100%;
    aspect-ratio: 3138 / 1250;
    max-height: 85vh;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 2px solid rgba(245, 245, 220, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 245, 220, 0.1);
    margin: 0 auto;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(245, 245, 220, 0.4);
    border-radius: 16px;
    pointer-events: none;
    z-index: 5;
}

.hero-slider .main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0.85);
    /* Slightly darkened to look premium and not blow out text if added later */
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ========== PRELOADER — CINEMATIC SPLIT REVEAL ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    overflow: hidden;
    pointer-events: all;
}

/* Split panels */
.pl-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, #1a0d30 0%, #0a0712 70%);
    z-index: 2;
    will-change: transform;
}

.pl-panel-left {
    left: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.pl-panel-right {
    right: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.12);
}

/* Stage */
.pl-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    will-change: opacity, transform;
}

/* Particle canvas */
.pl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Emblem */
.pl-emblem {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.pl-gem {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #D4AF37;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    position: relative;
    z-index: 1;
}

@keyframes plGemPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 24px rgba(212, 175, 55, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1)) drop-shadow(0 0 60px rgba(255, 242, 168, 0.6));
    }
}

.pl-emblem-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.9);
}

/* Letters */
.pl-words {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    perspective: 800px;
}

.pl-letter {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 9vw, 8rem);
    font-weight: 700;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #fff 0%, #F5F5DC 30%, #D4AF37 55%, #FFF2A8 75%, #D4AF37 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    line-height: 1;
    animation: plGoldShimmer 3.5s linear infinite;
    will-change: transform, opacity;
}

@keyframes plGoldShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

/* Gold line */
.pl-line-wrap {
    width: min(520px, 80vw);
    margin-bottom: 18px;
}

.pl-line {
    height: 1px;
    width: 0%;
    background: linear-gradient(to right, transparent, #D4AF37 20%, #FFF2A8 50%, #D4AF37 80%, transparent);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Tagline */
.pl-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.85rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 245, 220, 0.65);
    margin-bottom: 36px;
}

/* Progress */
.pl-progress-track {
    width: min(200px, 50vw);
    height: 1px;
    background: rgba(245, 245, 220, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.pl-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #D4AF37, #FFF2A8, #D4AF37);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.7);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .pl-emblem {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .pl-emblem-ring {
        width: 60px;
        height: 60px;
    }

    .pl-letter {
        letter-spacing: 4px;
    }

    .pl-tagline {
        letter-spacing: 2px;
    }
}

/* ========== OFF-CANVAS CART ========== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.offcanvas-cart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(10, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.offcanvas-cart.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F5F5DC;
}

.close-cart-btn {
    background: none;
    border: none;
    color: #F5EFE6;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart-btn:hover {
    color: #F5F5DC;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
}

.cart-item-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #F5F5DC;
    font-weight: 600;
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #F5F5DC;
    color: #2D1B4E;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn-full:hover {
    background: #F5F5DC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 239, 230, 0.4);
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

/* ========== ELITE MOBILE UI FEATURES ========== */
.mobile-sticky-buy {
    display: none;
    /* Desktop hidden */
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    padding: 18px 50px;
    background: linear-gradient(135deg, #2D1B4E, #1a0f2e);
    /* Dark premium base */
    color: #F5F5DC;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-sticky-buy.visible {
    transform: translateX(-50%) translateY(0);
}

.mobile-sticky-buy i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mobile-sticky-buy:active {
    transform: translateX(-50%) scale(0.95);
}

/* Scroll Entrance Base */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 768px) {

    /* Mobile-specific adjustments */
    .product-spec {
        font-size: 1.1rem;
    }

    .mobile-sticky-buy {
        display: block;
    }

    /* Ensure footer content is fully visible above the sticky button */
    footer,
    .footer {
        padding-bottom: 140px !important;
    }
}

/* ========== PROMOTION MARQUEE BANNER ========== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient(90deg, #0a0712, #1d1136, #0a0712);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    z-index: 9990; /* Placed above navbar (1000) and below cart overlay (9998) */
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.promo-track {
    display: flex;
    width: max-content;
    animation: promo-marquee 35s linear infinite;
}

.promo-text {
    flex-shrink: 0;
    padding: 0 40px;
    color: #F5EFE6;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.promo-text strong {
    color: #D4AF37;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    margin: 0 4px;
}

.promo-text span.star {
    color: #D4AF37;
    margin: 0 8px;
    animation: star-pulse 2s infinite ease-in-out;
}

@keyframes promo-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.8)); }
}