/* ============================================================
   Art by Adliya Furnishing — LUXURY ELEGANCE ADD-ONS
   Premium visual upgrades: gold accents, scroll reveals,
   parallax, glassmorphism touches, micro-interactions,
   custom cursor, loading screen, refined typography.
   ============================================================ */

/* ===== LUXURY COLOR SYSTEM ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #E2C992;
    --gold-dark: #A68B4B;
    --gold-text: #8B7332;
    --gold-glow: rgba(201, 169, 110, 0.35);
    --gold-glow-10: rgba(201, 169, 110, 0.1);
    --gold-glow-15: rgba(201, 169, 110, 0.15);
    --gold-glow-20: rgba(201, 169, 110, 0.2);
    --gold-glow-30: rgba(201, 169, 110, 0.3);
    --gold-glow-40: rgba(201, 169, 110, 0.4);
    --gold-glow-50: rgba(201, 169, 110, 0.5);
    --gold-glow-08: rgba(201, 169, 110, 0.08);
    --champagne: #F5F0E8;
    --ivory: #FDFBF7;
    --obsidian: #1A1A1A;
    --charcoal: #2C2C2C;
    --luxury-gradient: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    --luxury-shadow: 0 8px 32px var(--gold-glow-15);
    --luxury-shadow-lg: 0 16px 48px var(--gold-glow-20);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: var(--gold-glow-20);
    --glass-blur: blur(20px);
}

/* ===== PRELOADER / LOADING SCREEN ===== */
.luxury-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--obsidian);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: preloaderFadeIn 1s ease 0.2s forwards;
}

.preloader-line {
    width: 120px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--luxury-gradient);
    transform: scaleX(0);
    transform-origin: left;
    animation: preloaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

@keyframes preloaderProgress {
    to { transform: scaleX(1); }
}

/* ===== CUSTOM CURSOR ===== */
.luxury-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.luxury-cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.luxury-cursor.visible,
.luxury-cursor-ring.visible {
    opacity: 1;
}

.luxury-cursor.hovering {
    width: 18px;
    height: 18px;
    background: var(--gold-glow-50);
}

.luxury-cursor-ring.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--gold-light);
}

@media (max-width: 992px) {
    .luxury-cursor, .luxury-cursor-ring { display: none; }
}

/* ===== SCROLL REVEAL SYSTEM ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GOLD ACCENT LINES & DIVIDERS ===== */
.gold-divider {
    height: 2px;
    background: var(--luxury-gradient);
    border: none;
    margin: 0 auto;
    width: 80px;
    border-radius: 2px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
}

/* Section title gold underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--luxury-gradient);
    margin-top: 12px;
    border-radius: 3px;
}

.section-header.centered .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Subtitle gold accent */
.section-subtitle {
    color: var(--gold-text);
    font-weight: 500;
    letter-spacing: 3px;
}

/* ===== ENHANCED ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 40%, var(--gold-glow-08) 50%, transparent 60%);
    animation: shimmerBar 6s ease-in-out infinite;
}

@keyframes shimmerBar {
    0% { transform: translateX(-30%); }
    100% { transform: translateX(30%); }
}

.announcement-content i {
    color: var(--gold);
}

/* ===== LUXURY NAV ENHANCEMENTS ===== */
.main-nav {
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.main-menu > li > a {
    position: relative;
}

.main-menu > li > a:hover::after,
.main-menu > li.active > a::after {
    transform: scaleX(1);
}

/* ===== LUXURY HERO ENHANCEMENTS ===== */
.hero-slider {
    position: relative;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, white, transparent);
    z-index: 3;
    pointer-events: none;
}

.hero-subtitle {
    background: var(--luxury-gradient);
    color: var(--obsidian);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-text h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--luxury-gradient);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-dots .dot.active {
    background: var(--gold);
}

.hero-arrow {
    border: 1px solid var(--gold);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ===== LUXURY PRODUCT CARD UPGRADES ===== */
.product-card {
    border: 1px solid transparent;
    background: var(--white);
    position: relative;
    overflow: hidden;
    animation: none; /* Override default, use scroll reveal instead */
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--gold-light) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px var(--gold-glow-15);
}

.add-to-cart-btn {
    background: var(--obsidian);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 11px;
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--obsidian);
}

.badge-new {
    background: var(--gold);
    color: var(--obsidian);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Quick-view glass overlay on product hover */
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.action-icon:hover {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* ===== LUXURY CATEGORY CARDS ===== */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--luxury-gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-card:hover .category-icon {
    background: var(--gold);
    box-shadow: 0 8px 24px var(--gold-glow);
}

.category-card:hover .category-icon i {
    color: var(--obsidian);
}

/* ===== LUXURY PROMO CARDS ===== */
.promo-card {
    border: 1px solid var(--border);
}

.promo-card:hover {
    border-color: var(--gold);
    box-shadow: var(--luxury-shadow);
}

.promo-tag {
    background: var(--luxury-gradient);
    color: var(--obsidian);
    font-weight: 700;
}

.discount-amount {
    color: var(--gold);
}

.discount-text {
    color: var(--gold-dark);
}

/* ===== LUXURY DEAL BANNER ===== */
.deal-banner {
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    pointer-events: none;
}

.deal-subtitle {
    background: var(--luxury-gradient);
    color: var(--obsidian);
}

.deal-cd-val {
    color: var(--gold);
}

.deal-current-price {
    color: var(--gold);
}

/* ===== LUXURY FEATURE CARDS ===== */
.feature-card {
    border: none;
    background: var(--ivory);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--luxury-gradient);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--luxury-shadow);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
}

.feature-card:hover .feature-icon i {
    color: var(--obsidian);
}

/* ===== LUXURY NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--obsidian), var(--charcoal));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20l20 0' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.1'/%3E%3Cpath d='M20 0l0 40' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-text h2 {
    position: relative;
}

.newsletter-form .btn-primary {
    background: var(--luxury-gradient);
    border: none;
    color: var(--obsidian);
    font-weight: 700;
    letter-spacing: 1px;
}

.newsletter-form .btn-primary:hover {
    box-shadow: 0 4px 20px var(--gold-glow);
    transform: translateY(-2px);
}

/* ===== LUXURY FOOTER ===== */
.footer {
    background: var(--obsidian);
}

.footer-col h3::after {
    background: var(--gold);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--obsidian);
}

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

.footer-contact .contact-item i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--gold-glow-15);
}

.payment-methods i:hover {
    color: var(--gold);
}

/* ===== LUXURY BACK TO TOP ===== */
.back-to-top {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 4px 20px var(--gold-glow);
}

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

/* ===== LUXURY BUTTON OVERRIDES ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

/* ===== LUXURY TAB BUTTONS ===== */
.tab-btn:hover,
.tab-btn.active {
    background: var(--obsidian);
    border-color: var(--obsidian);
}

/* ===== LUXURY SCROLLBAR ===== */
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

/* ===== SMOOTH PAGE TRANSITIONS ===== */
.page-transition {
    animation: pageEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--gold);
    color: var(--obsidian);
}

/* ===== LUXURY TOAST ===== */
.store-toast {
    border-left: 4px solid var(--gold);
    font-weight: 500;
}

/* ===== PARALLAX BACKGROUND SECTIONS ===== */
.luxury-parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ===== FLOATING GOLD PARTICLES (decorative) ===== */
.gold-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

.gold-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.gold-particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.gold-particle:nth-child(3) { left: 45%; animation-delay: 3s; animation-duration: 6s; }
.gold-particle:nth-child(4) { left: 65%; animation-delay: 0.8s; animation-duration: 8s; }
.gold-particle:nth-child(5) { left: 80%; animation-delay: 2.5s; animation-duration: 10s; }
.gold-particle:nth-child(6) { left: 90%; animation-delay: 4s; animation-duration: 7.5s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ===== GLASS MORPHISM ACCENTS ===== */
.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stagger-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .gold-particle {
        animation: none;
    }
    .luxury-preloader {
        display: none;
    }
    .luxury-cursor, .luxury-cursor-ring {
        display: none;
    }
    .announcement-bar::before {
        animation: none;
    }
    .btn-primary::before {
        display: none;
    }
}

/* ===== IMAGE SHINE ON HOVER ===== */
.product-image {
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-glow-08), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
    z-index: 4;
    pointer-events: none;
}

.product-card:hover .product-image::before {
    left: 130%;
}

/* ===== LUXURY SIDEBAR BANNER ===== */
.sidebar-banner {
    background: linear-gradient(135deg, var(--obsidian), var(--charcoal));
    border: 1px solid var(--gold-glow-20);
}

.sidebar-banner .btn-primary {
    background: var(--luxury-gradient);
    color: var(--obsidian);
    border-color: var(--gold);
}

/* ===== FOCUS STYLES (ACCESSIBILITY) ===== */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== SMOOTH HEADER SCROLL SHRINK ===== */
.header-main.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header-main.scrolled .logo-img {
    height: 45px;
    transition: height 0.3s ease;
}

/* ============================================================
   NEW HOMEPAGE SECTIONS — 8 LUXURY SECTIONS WITH ANIMATIONS
   Complete production-ready styles with gold theme
   ============================================================ */

/* ===== GLOBAL SECTION ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--gold-glow-40);
    }
    50% {
        box-shadow: 0 0 0 12px transparent;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===== SCROLL REVEAL ANIMATION CLASSES ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

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

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

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

.stagger-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   SECTION 1: NEW ARRIVALS CAROUSEL
   ============================================================ */
.new-arrivals-section {
    padding: 60px 0;
    background: var(--ivory);
    overflow: visible;
}

.new-arrivals-section .section-title {
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-scroll {
    flex: 1;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

/* Hide scrollbar while maintaining functionality */
.carousel-scroll::-webkit-scrollbar {
    height: 6px;
}

.carousel-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-scroll::-webkit-scrollbar-thumb {
    background: transparent;
}

.carousel-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-items {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.new-arrival-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    animation: fadeInUp 0.8s ease;
}

.new-arrival-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.new-arrival-item:hover {
    box-shadow: 0 12px 40px var(--gold-glow-20);
    transform: translateY(-8px);
}

.new-arrival-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    overflow: hidden;
}

.new-arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.new-arrival-item:hover .new-arrival-image img {
    transform: scale(1.08);
}

.new-arrival-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--obsidian);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px var(--gold-glow-30);
}

.new-arrival-info {
    padding: 16px;
}

.new-arrival-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--obsidian);
    margin-bottom: 8px;
    line-height: 1.3;
}

.new-arrival-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--obsidian);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 18px;
    z-index: 3;
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 4px 15px var(--gold-glow);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* ============================================================
   SECTION 2: DEAL OF THE DAY
   ============================================================ */
.deal-of-day-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--champagne, #f5f0e8) 0%, #faf7f2 50%, var(--champagne, #f5f0e8) 100%);
}

.deal-of-day-section .section-title {
    margin-bottom: 28px;
}

.deal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.deal-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    aspect-ratio: 4 / 5;
    box-shadow: var(--luxury-shadow-lg);
}

.deal-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.deal-image-wrapper:hover img {
    transform: scale(1.08);
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--luxury-gradient);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px var(--gold-glow-30);
}

.deal-content {
    padding: 20px;
    animation: fadeInRight 0.8s ease;
}

.deal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--obsidian);
    margin-bottom: 16px;
    line-height: 1.2;
}

.deal-description {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 28px;
    line-height: 1.6;
}

.deal-price-wrapper {
    margin-bottom: 28px;
}

.deal-old-price {
    font-size: 14px;
    color: var(--charcoal);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.deal-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.deal-savings {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
}

.deal-countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.countdown-box {
    width: 80px;
    height: 80px;
    background: var(--obsidian);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: countdownPulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.countdown-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 600;
}

.deal-cta {
    display: inline-block;
    background: var(--luxury-gradient);
    color: var(--obsidian);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.deal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

@media (max-width: 768px) {
    .deal-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deal-image-wrapper {
        aspect-ratio: 1;
    }
}

/* ============================================================
   SECTION 3: SHOP BY ROOM
   ============================================================ */
.shop-by-room-section {
    padding: 60px 0;
    background: var(--ivory);
}

.shop-by-room-section .section-title {
    margin-bottom: 40px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 24px;
}

.room-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 240px;
    background: white;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:nth-child(1),
.room-card:nth-child(2) {
    grid-row: span 2;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: absolute;
    inset: 0;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.room-card:hover .room-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.5) 100%);
}

.room-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 2;
}

.room-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.room-count {
    font-size: 12px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-card:hover {
    box-shadow: 0 12px 40px var(--gold-glow-20);
}

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

@media (max-width: 992px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-card:nth-child(1),
    .room-card:nth-child(2) {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .room-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   SECTION 4: RECENTLY VIEWED
   ============================================================ */
.recently-viewed-section {
    padding: 60px 0;
    background: white;
    display: none;
}

.recently-viewed-section.show {
    display: block;
}

.recently-viewed-section .section-title {
    margin-bottom: 40px;
}

.rv-carousel-scroll {
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.rv-carousel-scroll::-webkit-scrollbar {
    height: 6px;
}

.rv-carousel-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.rv-carousel-scroll::-webkit-scrollbar-thumb {
    background: transparent;
}

.rv-carousel-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.rv-items {
    display: flex;
    gap: 16px;
    padding-right: 16px;
}

.rv-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border: 1px solid var(--gold-glow-15);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.rv-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px var(--gold-glow-15);
}

.rv-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--champagne);
}

.rv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv-info {
    padding: 12px;
}

.rv-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--obsidian);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================================
   SECTION 5: BEST SELLERS
   ============================================================ */
.best-sellers-section {
    padding: 60px 0;
    background: var(--champagne);
}

.best-sellers-section .section-title {
    margin-bottom: 40px;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bestseller-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

/* Hero card: span 2 cols only — no row span to prevent oversizing */
.bestseller-card:first-child {
    grid-column: span 2;
}

.bestseller-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bestseller-card:hover .bestseller-image img {
    transform: scale(1.08);
}

.bestseller-info {
    padding: 16px;
}

.bestseller-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--obsidian);
    margin-bottom: 8px;
}

.bestseller-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.bestseller-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    background: var(--obsidian);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rank-badge.gold {
    background: var(--luxury-gradient);
    color: white;
}

@media (max-width: 992px) {
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .bestseller-card:first-child,
    .bs-hero {
        grid-column: span 2;
    }
    .bs-hero .bs-image {
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bestseller-card:first-child,
    .bs-hero {
        grid-column: span 1;
    }
    .bs-hero .bs-image {
        aspect-ratio: 16 / 9;
        max-height: 200px;
    }
}

/* ============================================================
   SECTION 6: EXCLUSIVE OFFERS — Premium Product Showcase
   ============================================================ */
.exclusive-offers {
    padding: 44px 0;
    background: var(--ivory);
    position: relative;
}
.exclusive-offers .section-desc {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== PROMOTIONAL AUTO-SLIDER BANNER ===== */
.offers-promo-slider {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    background: var(--obsidian);
}
.offers-promo-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.offers-promo-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 240px;
}

/* -- Slide Image Side -- */
.offers-promo-slide .promo-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.offers-promo-slide .promo-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}
.offers-promo-slide.active .promo-slide-img img {
    transform: scale(1.08);
}

/* -- Dark Gradient Overlay -- */
.offers-promo-slide .promo-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.75) 40%, rgba(26,26,46,0.3) 70%, transparent 100%);
    z-index: 1;
}

/* -- Content Side -- */
.offers-promo-slide .promo-slide-content {
    position: relative;
    z-index: 2;
    padding: 30px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 55%;
    gap: 8px;
}

/* Animated offer tag */
.promo-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 5px 13px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    animation: offerTagPulse 2s ease-in-out infinite;
}
@keyframes offerTagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(231,76,60,0); }
}

.promo-offer-tag .tag-icon {
    animation: offerTagBounce 1s ease infinite;
}
@keyframes offerTagBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Category label */
.promo-slide-cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: promoSlideUp 0.5s 0.2s forwards;
}
.offers-promo-slide.active .promo-slide-cat {
    opacity: 1;
    transform: translateY(0);
}

/* Product name */
.promo-slide-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    transform: translateY(25px);
}
.offers-promo-slide.active .promo-slide-name {
    animation: promoSlideUp 0.6s 0.3s forwards;
}

/* Pricing row */
.promo-slide-pricing {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}
.offers-promo-slide.active .promo-slide-pricing {
    animation: promoSlideUp 0.5s 0.45s forwards;
}
.promo-slide-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}
.promo-slide-old-price {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
}
.promo-slide-savings-pill {
    background: rgba(39,174,96,0.2);
    color: #2ecc71;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(39,174,96,0.3);
}

/* CTA buttons */
.promo-slide-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
}
.offers-promo-slide.active .promo-slide-actions {
    animation: promoSlideUp 0.5s 0.55s forwards;
}
.promo-cta-primary {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.promo-cta-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}
.promo-cta-secondary {
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.promo-cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Countdown timer on slide */
.promo-slide-countdown {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(20px);
}
.offers-promo-slide.active .promo-slide-countdown {
    animation: promoSlideUp 0.5s 0.65s forwards;
}
.promo-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 44px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.promo-countdown-num {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.promo-countdown-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* Slide-up animation */
@keyframes promoSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -- Navigation Arrows -- */
.offers-promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}
.offers-promo-slider:hover .offers-promo-arrow {
    opacity: 1;
}
.offers-promo-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--obsidian);
    transform: translateY(-50%) scale(1.1);
}
.offers-promo-prev { left: 18px; }
.offers-promo-next { right: 18px; }

/* -- Dots -- */
.offers-promo-dots {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.offers-promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.offers-promo-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* -- Progress Bar -- */
.offers-promo-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 5;
}
.offers-promo-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8d5a3);
    width: 0%;
    transition: width 0.1s linear;
}

/* -- Slide number indicator -- */
.promo-slide-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

/* -- Responsive Promo Slider -- */
@media (max-width: 992px) {
    .offers-promo-slide { min-height: 220px; }
    .offers-promo-slide .promo-slide-content {
        max-width: 65%;
        padding: 24px 22px;
    }
    .promo-slide-name { font-size: 1.3rem; }
    .promo-slide-price { font-size: 1.25rem; }
}
@media (max-width: 768px) {
    .offers-promo-slide { min-height: 260px; }
    .offers-promo-slide .promo-slide-overlay {
        background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.85) 50%, rgba(26,26,46,0.95) 100%);
    }
    .offers-promo-slide .promo-slide-content {
        max-width: 100%;
        padding: 18px;
        justify-content: flex-end;
    }
    .promo-slide-name { font-size: 1.15rem; }
    .promo-slide-price { font-size: 1.1rem; }
    .offers-promo-arrow { width: 34px; height: 34px; font-size: 12px; }
    .offers-promo-prev { left: 10px; }
    .offers-promo-next { right: 10px; }
    .promo-slide-actions { flex-direction: column; }
    .promo-slide-countdown { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .offers-promo-slide { min-height: 240px; }
    .offers-promo-slide .promo-slide-content { padding: 14px; gap: 5px; }
    .promo-slide-name { font-size: 1.05rem; }
    .promo-slide-price { font-size: 1rem; }
    .promo-countdown-unit { padding: 4px 6px; min-width: 38px; }
    .promo-countdown-num { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
    .offers-promo-track { transition: none; }
    .offers-promo-slide .promo-slide-img img { transition: none; }
    .promo-offer-tag { animation: none; }
    .promo-offer-tag .tag-icon { animation: none; }
    .offers-promo-slide.active .promo-slide-cat,
    .offers-promo-slide.active .promo-slide-name,
    .offers-promo-slide.active .promo-slide-pricing,
    .offers-promo-slide.active .promo-slide-actions,
    .offers-promo-slide.active .promo-slide-countdown {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- Offers Grid -- */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 10px;
}

/* -- Individual Offer Card -- */
.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.offer-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Featured card no longer needed — slider handles promotion */

/* -- Image Area -- */
.offer-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.5;
    overflow: hidden;
    background: var(--champagne);
}
.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.offer-card:hover .offer-img img {
    transform: scale(1.06);
}

/* Discount badge */
.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--obsidian);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Hover action buttons */
.offer-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
}
.offer-card:hover .offer-actions {
    opacity: 1;
    transform: translateX(0);
}
.offer-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: var(--obsidian);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.offer-action-btn:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

/* -- Body / Info Area -- */
.offer-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.offer-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
}
.offer-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--obsidian);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}
.offer-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}
.offer-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--obsidian);
    font-variant-numeric: tabular-nums;
}
.offer-old-price {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
}
.offer-savings {
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.offer-cart-btn {
    padding: 9px 14px;
    background: var(--obsidian);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}
.offer-cart-btn:hover {
    background: var(--gold);
    color: var(--obsidian);
    transform: translateY(-1px);
}
.offer-cart-btn i {
    font-size: 12px;
}

/* -- Responsive -- */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 480px) {
    .exclusive-offers {
        padding: 40px 0;
    }
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .offer-img {
        aspect-ratio: 5 / 4;
    }
    .offer-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   SECTION 7: COMPLETE THE LOOK
   ============================================================ */
.complete-look-section {
    padding: 80px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.complete-look-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.complete-look-section .section-title {
    margin-bottom: 8px;
}
.complete-look-section .section-subtitle {
    margin-bottom: 4px;
}

/* Old look-container/look-products/look-product-card — replaced by .look-layout and .look-products-grid */
/* Kept as comments for reference; new styles defined in the COMPLETE THE LOOK — REDESIGNED section below */

/* ============================================================
   SECTION 8: TESTIMONIALS + PRODUCT (redesigned — old classes neutralized)
   ============================================================ */
.testimonials-section {
    padding: 60px 0;
    background: var(--champagne);
}

.testimonials-section .section-title {
    margin-bottom: 40px;
}

/* Legacy classes — neutralized, replaced by .testimonial-layout / .tcard-* / .spot-* */
.testimonials-container { display: none; }
.testimonials-carousel { display: none; }
.testimonial-card { display: none; }

.star {
    color: var(--gold);
    font-size: 14px;
}

.spotlight-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.spotlight-cta {
    display: inline-block;
    background: var(--luxury-gradient);
    color: var(--obsidian);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.spotlight-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* Old testimonials responsive — replaced by .testimonial-layout rules */

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

@media (max-width: 480px) {
    .new-arrivals-section,
    .deal-of-day-section,
    .shop-by-room-section,
    .best-sellers-section,
    .complete-look-section,
    .testimonials-section,
    .exclusive-offers {
        padding: 40px 0;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .deal-title {
        font-size: 22px;
    }

    .deal-price {
        font-size: 28px;
    }

    .tcard-text {
        font-size: 15px;
    }
}

/* ===== ACCESSIBILITY & REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .new-arrival-item,
    .bestseller-card,
    .testimonial-card-wrap,
    .spotlight-card,
    .look-product-card {
        animation: none !important;
        transition: none !important;
    }

    .carousel-scroll,
    .rv-carousel-scroll {
        scroll-behavior: auto !important;
    }

    .new-arrival-item:hover,
    .room-card:hover,
    .bestseller-card:hover,
    .deal-cta:hover,
    .offer-card:hover {
        transform: none !important;
    }
}

/* ============================================================
   MISSING CSS CLASS DEFINITIONS - TASK 2
   ============================================================ */

/* ===== NEW ARRIVALS CAROUSEL ===== */
/* Fix: carousel-track used in HTML for horizontal scrolling */
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Fix: carousel-card generated by JS for new arrivals */
.carousel-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--gold-glow-20);
}
.carousel-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.carousel-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.carousel-card:hover .product-image img {
    transform: scale(1.08);
}
.carousel-card .product-info {
    padding: 16px;
}
.carousel-card .product-name a {
    font-size: 14px;
    font-weight: 600;
    color: var(--obsidian);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}
.carousel-card .product-rating {
    margin-bottom: 6px;
}
.carousel-card .product-price .current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

/* Fix: carousel-nav for arrow button wrapper */
.carousel-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Fix: section-title-wrap for flex header layout */
.section-title-wrap {
    flex: 1;
}

/* Fix: add-to-cart-overlay button on new arrival cards */
.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--obsidian);
    color: white;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.carousel-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}
.add-to-cart-overlay:hover {
    background: var(--gold);
    color: var(--obsidian);
}
.add-to-cart-overlay i {
    margin-right: 6px;
}

/* ===== DEAL OF THE DAY ===== */
/* Fix: HTML class aliases for Deal of the Day */
.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}
.deal-grid .deal-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 3 / 4;
    max-height: 440px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}
.deal-grid .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.deal-grid .deal-image:hover img {
    transform: scale(1.05);
}
.deal-grid .deal-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--luxury-gradient, linear-gradient(135deg, #b8860b, #daa520));
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}
.deal-info {
    padding: 20px;
    animation: fadeInRight 0.8s ease;
}
.deal-pricing {
    margin-bottom: 28px;
}
.count-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.count-label {
    font-size: 12px;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 600;
}
.countdown-box {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 70px;
}
.countdown-box .count-num {
    color: var(--gold-light);
}
.countdown-box .count-label {
    color: rgba(255, 255, 255, 0.7);
}
.deal-countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(26, 26, 46, 0.9);
    padding: 16px 24px;
    border-radius: 8px;
}

/* Flash sale CSS removed — replaced by .exclusive-offers section */

/* ===== BEST SELLERS ===== */
/* Fix: bestseller card internal classes */
/* ===== BEST SELLERS — REDESIGNED COMPACT GRID ===== */
.bs-hero {
    /* Hero card spans 2 cols only, not full width */
    grid-column: span 2;
    grid-row: span 1;
}
.bs-hero .bs-image {
    aspect-ratio: 16 / 9;
    max-height: 260px;
}
.bs-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: var(--champagne);
}
.bs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.bestseller-card:hover .bs-image img {
    transform: scale(1.05);
}
.bs-info {
    padding: 14px 16px;
}
.bs-info h3 {
    margin-bottom: 6px;
}
.bs-info h3 a {
    font-size: 14px;
    font-weight: 600;
    color: var(--obsidian);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bs-info h3 a:hover {
    color: var(--gold);
}
.bs-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 10px;
}
.bs-meta .current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}
.bs-sold {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    background: var(--champagne);
    padding: 2px 8px;
    border-radius: 10px;
}
.bs-info .btn-primary.btn-sm {
    width: 100%;
    padding: 8px 12px;
    font-size: 12px;
}
.bs-info .product-rating {
    margin-bottom: 4px;
}
.bs-info .product-rating .stars {
    font-size: 12px;
}

/* ===== COMPLETE THE LOOK ===== */
/* Fix: Complete the Look layout classes */
/* ===== COMPLETE THE LOOK — REDESIGNED LAYOUT ===== */
.look-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 28px;
    align-items: stretch;
}
.look-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #faf8f5 0%, #f0ede8 100%);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.10),
        0 0 0 1px rgba(201,169,110,0.10);
}
.look-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.look-hero:hover img {
    transform: scale(1.05);
}
.look-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    border-radius: 0 0 18px 18px;
}
.look-hero-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}
.look-hero-overlay p {
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-weight: 300;
}
.look-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* ===== PREMIUM COMPLETE THE LOOK PRODUCT CARDS ===== */
.look-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
    flex: 1;
    align-content: start;
}
.look-product-card {
    position: relative;
    border: 1px solid rgba(201,169,110,0.10);
    border-radius: 14px;
    overflow: hidden;
    background: white;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Subtle gold shimmer border on hover */
.look-product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(201,169,110,0.35) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.look-product-card:hover::after {
    opacity: 1;
}

.look-product-card:hover {
    border-color: rgba(201,169,110,0.25);
    box-shadow:
        0 12px 32px rgba(201,169,110,0.12),
        0 4px 12px rgba(0,0,0,0.04);
    transform: translateY(-5px);
}

.look-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(145deg, #faf8f5 0%, #f0ede8 100%);
    position: relative;
}

/* Vignette overlay on image */
.look-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.06) 100%);
    pointer-events: none;
    z-index: 1;
}

.look-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.look-product-card:hover .look-product-image img {
    transform: scale(1.08);
}

.look-product-info {
    padding: 12px 14px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

/* Gold accent line between image and info */
.look-product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.look-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--obsidian);
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.look-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-dark, #b8943f);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* Premium glassmorphism add button */
.look-add-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(201,169,110,0.15);
    background: rgba(255,255,255,0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--obsidian);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 3;
}
.look-product-card:hover .look-add-btn {
    opacity: 1;
    transform: translateY(0);
}
.look-add-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(201,169,110,0.35);
    transform: scale(1.08);
}
.look-footer {
    margin-top: auto;
}
.look-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: var(--obsidian);
    border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.look-total-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.look-total-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.look-total-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}
.look-total .btn-primary {
    white-space: nowrap;
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .look-layout {
        grid-template-columns: 320px 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .look-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .look-hero {
        aspect-ratio: 16 / 9;
        max-height: 300px;
        border-radius: 14px;
    }
    .look-hero-overlay {
        border-radius: 0 0 14px 14px;
    }
    .look-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }
    .look-product-name {
        font-size: 12px;
    }
    .look-product-price {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .complete-look-section {
        padding: 50px 0;
    }
    .look-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .look-total {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 14px 16px;
    }
    .look-total .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .look-product-info {
        padding: 10px 10px 8px;
    }
    .look-add-btn {
        opacity: 1;
        transform: none;
    }
}

/* ===== TESTIMONIALS — REDESIGNED ===== */
.testimonial-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
    min-height: 360px;
}
/* -- Testimonial Card Wrapper -- */
.testimonial-card-wrap {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    transition: opacity 0.4s ease;
}
.tcard-inner {
    width: 100%;
}
.tcard-quote {
    font-size: 32px;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 12px;
    line-height: 1;
}
.tcard-text {
    font-size: 16px;
    font-style: italic;
    color: var(--obsidian);
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.tcard-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tcard-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}
.tcard-stars .fas, .tcard-stars .far {
    color: var(--gold);
    font-size: 13px;
}
.tcard-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--obsidian);
}
.tcard-city {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.3px;
}
/* -- Spotlight Product Card -- */
.spotlight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}
.spot-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--champagne);
}
.spot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.spotlight-card:hover .spot-img img {
    transform: scale(1.04);
}
.spot-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.spot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
}
.spot-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--obsidian);
    font-family: 'Playfair Display', serif;
    margin: 0;
}
.spot-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}
.spot-cart-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
    }
    .testimonial-card-wrap {
        padding: 28px 24px;
    }
    .tcard-text {
        font-size: 15px;
    }
    .spot-img {
        aspect-ratio: 16 / 9;
        max-height: 220px;
    }
}
@media (max-width: 480px) {
    .testimonial-card-wrap {
        padding: 24px 20px;
    }
    .tcard-text {
        font-size: 14px;
    }
    .spot-info {
        padding: 16px 18px 20px;
    }
}

/* ===== SECTION HEADER FIX ===== */
/* Fix: section-header flex layout for title + nav */
.new-arrivals-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.complete-look-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .complete-look-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== SHOP BY ROOM GRID ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.rooms-grid .room-large {
    grid-row: span 2;
}
.rooms-grid .room-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.rooms-grid .room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.rooms-grid .room-card:hover img {
    transform: scale(1.08);
}
.rooms-grid .room-card:not(.room-large) {
    aspect-ratio: 4/3;
}
.rooms-grid .room-large {
    aspect-ratio: auto;
}

/* (AI Visualizer responsive rules moved into main section block above) */

/* ===== CATEGORY CARD TOUCH TARGETS ===== */
.category-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
}
.category-card .category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .category-card {
        min-height: 100px;
        padding: 16px 8px;
    }
}

/* ===== MOBILE FILTER CHIPS (replaces hidden sidebar) ===== */
.mobile-filter-chips {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.mobile-filter-chip {
    padding: 6px 16px;
    border: 1px solid var(--gold-glow-30);
    border-radius: 20px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    color: var(--obsidian);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.mobile-filter-chip.active,
.mobile-filter-chip:hover {
    background: var(--gold);
    color: var(--obsidian);
    border-color: var(--gold);
}
@media (max-width: 992px) {
    .mobile-filter-chips {
        display: flex;
    }
}

/* ===== MOBILE SEARCH TOGGLE ===== */
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--obsidian);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 480px) {
    .mobile-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-bar.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        background: white;
        padding: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
}

/* ===== FEATURE CARD HOVER ===== */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--gold-glow-15);
}
.feature-card .feature-icon {
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* ===== PAYMENT ICON CONTRAST ===== */
.payment-methods i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    transition: color 0.3s ease;
}
.payment-methods i:hover {
    color: var(--gold);
}

/* ===== PRODUCT COUNTDOWN LABELS ===== */
.cd-label {
    font-size: 12px;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .carousel-card,
    .carousel-card .product-image img,
    .product-card,
    .testimonial-card-wrap,
    .spotlight-card,
    .feature-card,
    .feature-icon,
    .room-card img,
    .look-product-card,
    .bestseller-card .bs-image img {
        transition: none !important;
        animation: none !important;
    }
    .hero-slides {
        scroll-behavior: auto !important;
    }
}

/* ===== RESPONSIVE OVERRIDES FOR NEW CLASSES ===== */
@media (max-width: 768px) {
    .deal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .deal-grid .deal-image {
        aspect-ratio: 3 / 2;
        max-height: 320px;
    }

    .look-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col .footer-social {
        justify-content: center;
    }
}

/* ===== STICKY HEADER ===== */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.header.sticky .header-top { display: none; }
.header.sticky .header-main { padding: 8px 0; }
.header.sticky .logo-img { height: 45px !important; }
.header.sticky + .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--obsidian);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
body.header-is-sticky { padding-top: 140px; }

/* ===== SEARCH BAR UPGRADE ===== */
.search-bar select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--champagne);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px 0 0 8px;
    padding: 10px 32px 10px 14px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--obsidian);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #128C37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(18,140,55,0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(18,140,55,0.5); }
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 68px;
    background: #fff;
    color: var(--obsidian);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== HERO UPGRADE ===== */
.hero-slider { position: relative; touch-action: pan-y; }
.hero-arrow { width: 48px; height: 48px; background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 50%; font-size: 16px; border: 1px solid rgba(0,0,0,0.06); }
.hero-arrow:hover { background: var(--gold); color: #fff; }
.hero-progress { display: flex; gap: 6px; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; }
.hero-progress .bar { width: 40px; height: 3px; background: rgba(255,255,255,0.35); border-radius: 3px; overflow: hidden; cursor: pointer; }
.hero-progress .bar .fill { height: 100%; width: 0; background: var(--gold); border-radius: 3px; transition: width 0.1s linear; }
.hero-progress .bar.active .fill { width: 100%; }

/* ===== PROMO BANNERS HOVER ===== */
.promo-card { transition: all 0.35s ease; cursor: pointer; }
.promo-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.promo-card:nth-child(2) .promo-card-bg { background: linear-gradient(135deg, #1A1A1A, #2C2C2C); }
.promo-card:nth-child(2) .promo-card-content { color: #fff; }
.promo-card:nth-child(2) .promo-tag { color: var(--gold); }
.promo-card:nth-child(2) .promo-link { color: var(--gold); }
.promo-card .promo-card-image img { transition: transform 0.5s ease; }
.promo-card:hover .promo-card-image img { transform: scale(1.08); }

/* ===== NEW ARRIVALS UPGRADE ===== */
.carousel-track { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.carousel-card { scroll-snap-align: start; }
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.carousel-dots .cdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.carousel-dots .cdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== DEAL OF THE DAY UPGRADE ===== */
.deal-stock-bar { margin-top: 18px; }
.deal-stock-label { display: flex; justify-content: space-between; font-size: 12px; color: #888; margin-bottom: 6px; }
.deal-stock-label span:first-child { font-weight: 600; color: var(--gold-text, #8B7332); }
.deal-stock-track { height: 7px; background: #eee; border-radius: 6px; overflow: hidden; }
.deal-stock-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 6px; transition: width 1s ease; }
.deal-title { font-family: var(--heading-font, 'Playfair Display', serif); }
.deal-old-price { font-size: 1.1rem; color: #999; text-decoration: line-through; margin-right: 12px; }
.deal-price { font-size: 1.6rem; font-weight: 800; color: var(--gold-text, #8B7332); }
.deal-share-btns { display: flex; gap: 8px; margin-top: 16px; }
.deal-share-btns a {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.05); color: #444; font-size: 14px; transition: all 0.25s; text-decoration: none;
}
.deal-share-btns a:hover { background: var(--gold); color: #fff; }
.pulse-cta { animation: pulseCta 2s infinite; }
@keyframes pulseCta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201,169,110,0); }
}

/* ===== POPULAR PRODUCTS TAB FIX ===== */
.product-card.tab-hidden { display: none; }
.products-sidebar-mobile {
    display: none;
    overflow-x: auto;
    gap: 8px;
    padding: 0 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.products-sidebar-mobile::-webkit-scrollbar { display: none; }
.filter-chip {
    white-space: nowrap; padding: 8px 16px; border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.1); background: #fff; font-size: 13px;
    cursor: pointer; transition: all 0.25s; font-family: var(--font);
}
.filter-chip.active { background: var(--obsidian); color: #fff; border-color: var(--obsidian); }
@media (max-width: 768px) {
    .products-sidebar { display: none; }
    .products-sidebar-mobile { display: flex; }
}

/* ===== BRAND STORY SECTION (replaces Trending) ===== */
/* ============================================================
   OUR LEGACY — PREMIUM WARM NEUTRAL REDESIGN
   Palette: warm stone, sand, champagne, soft gold accents
   ============================================================ */
.brand-story-section {
    padding: 72px 0;
    background: linear-gradient(168deg, #f7f4ef 0%, #eee9e0 35%, #f5f1eb 70%, #faf8f4 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative top accent line */
.brand-story-accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold, #c9a96e), transparent);
    border-radius: 2px;
}

/* Faint texture overlay */
.brand-story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(201,169,110,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(201,169,110,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid: image left, text right */
.brand-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== IMAGE FRAME ===== */
.brand-story-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 480px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 6px 20px rgba(0,0,0,0.04),
        0 0 0 1px rgba(201,169,110,0.1);
}
.brand-story-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.brand-story-img-frame:hover img {
    transform: scale(1.04);
}

/* Soft vignette on image */
.brand-story-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.12) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Year badge — frosted glass */
.brand-story-year-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.18);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    backdrop-filter: blur(16px) saturate(1.6);
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.year-badge-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.year-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ===== TEXT CONTENT ===== */
.brand-story-eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold, #c9a96e);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}
.brand-story-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 1.5px;
    background: var(--gold, #c9a96e);
}

.brand-story-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #2a2520;
    line-height: 1.25;
    margin: 0 0 0;
    letter-spacing: -0.01em;
}

/* Decorative divider */
.brand-story-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold, #c9a96e), rgba(201,169,110,0.3));
    margin: 18px 0;
    border-radius: 1px;
}

.brand-story-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: #6b6158;
    margin: 0 0 28px;
    max-width: 480px;
}

/* ===== STAT CARDS ===== */
.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.brand-stat {
    text-align: center;
    padding: 18px 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    border: 1px solid rgba(201,169,110,0.12);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}
.brand-stat:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(201,169,110,0.25);
    box-shadow: 0 8px 28px rgba(201,169,110,0.1);
    transform: translateY(-3px);
}

.brand-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2a2520;
    display: block;
    line-height: 1;
}

.brand-stat .stat-divider {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--gold, #c9a96e);
    margin: 8px auto;
    border-radius: 1px;
}

.brand-stat .stat-label {
    font-size: 10px;
    color: #8a7e74;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
}

/* ===== CTA BUTTON ===== */
.brand-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: #2a2520;
    color: var(--gold-light, #e8d5a3);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 16px rgba(42,37,32,0.15);
}
.brand-story-cta:hover {
    background: var(--gold, #c9a96e);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,169,110,0.3);
}
.brand-story-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.brand-story-cta:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .brand-story-section { padding: 56px 0; }
    .brand-story-grid { gap: 40px; }
    .brand-story-heading { font-size: 1.8rem; }
}
@media (max-width: 768px) {
    .brand-story-section { padding: 48px 0; }
    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .brand-story-img-frame {
        max-height: 340px;
        aspect-ratio: 16 / 10;
    }
    .brand-story-heading { font-size: 1.6rem; }
    .brand-stats { gap: 10px; }
    .brand-stat { padding: 14px 8px; }
    .brand-stat .stat-number { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .brand-story-section { padding: 40px 0; }
    .brand-story-grid { gap: 24px; }
    .brand-story-heading { font-size: 1.4rem; }
    .brand-story-desc { font-size: 13.5px; }
    .brand-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .brand-stat { padding: 12px 6px; border-radius: 10px; }
    .brand-stat .stat-number { font-size: 1.2rem; }
    .brand-stat .stat-label { font-size: 9px; letter-spacing: 0.8px; }
    .brand-story-year-badge { padding: 10px 16px; }
    .year-badge-num { font-size: 1.4rem; }
}

/* ===== BEST SELLERS UPGRADE ===== */
.bestseller-card:first-child .rank-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
    font-size: 14px;
    width: 32px; height: 32px;
}
.bestseller-card:first-child .rank-badge::after { content: ' \f521'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; }
.bs-velocity {
    position: absolute; bottom: 8px; left: 8px; font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 12px; background: rgba(26,26,26,0.85); color: #fff;
    display: inline-flex; align-items: center; gap: 4px;
}
.bs-velocity.velocity-hot { background: linear-gradient(135deg, #ff4500, #ff6b35); }
.bs-velocity.velocity-trend { background: linear-gradient(135deg, #C9A96E, #b8943f); }
.bs-velocity.velocity-pop { background: rgba(26,26,26,0.75); }
.bs-image { position: relative; overflow: hidden; }
.rank-badge i { margin-right: 2px; }
.bs-review-snippet {
    font-size: 12px; color: #888; font-style: italic; margin-top: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bs-review-snippet i { font-size: 10px; color: var(--gold); margin-right: 4px; }

/* ===== COMPLETE THE LOOK TABS ===== */
.look-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.look-tab-btn, .look-tab {
    padding: 8px 20px; border-radius: 24px; border: 1px solid rgba(201,169,110,0.2);
    background: rgba(255,255,255,0.9); font-size: 12px; cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    font-family: var(--font); font-weight: 600; letter-spacing: 0.5px;
    color: var(--charcoal, #555); text-transform: uppercase;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.look-tab-btn:hover, .look-tab:hover {
    border-color: var(--gold); color: var(--gold);
    box-shadow: 0 2px 12px rgba(201,169,110,0.15);
}
.look-tab-btn.active, .look-tab.active {
    background: var(--obsidian); color: var(--gold-light, #e8d5a3);
    border-color: var(--obsidian); letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Tab switch animation */
.look-products-grid.look-switching {
    opacity: 0;
    transform: translateY(8px);
}
.look-products-grid {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hero image transition for tab switch */
.look-hero img {
    transition: opacity 0.3s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== TOP CATEGORIES — MINI CARD AUTO-SLIDER ===== */
.cat-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    padding: 8px 0 12px;
}
.cat-slider-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: catSlide 32s linear infinite;
}
.cat-slider-viewport:hover .cat-slider-track { animation-play-state: paused; }

@keyframes catSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cat-mini-card {
    flex-shrink: 0;
    width: 140px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--obsidian, #1a1a1a);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.cat-mini-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cat-mini-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--champagne, #f5f0e8);
}
.cat-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-mini-card:hover .cat-mini-img img { transform: scale(1.1); }

.cat-mini-info {
    padding: 10px 8px 12px;
    text-align: center;
}
.cat-mini-info i {
    font-size: 15px;
    color: var(--gold, #C9A96E);
    margin-bottom: 4px;
    display: block;
}
.cat-mini-info h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-mini-info span {
    font-size: 10px;
    color: #aaa;
    font-weight: 500;
}

/* Tablet: slightly larger cards */
@media (min-width: 769px) {
    .cat-mini-card { width: 160px; }
    .cat-mini-info { padding: 12px 10px 14px; }
    .cat-mini-info i { font-size: 17px; }
    .cat-mini-info h3 { font-size: 13px; }
    .cat-mini-info span { font-size: 11px; }
}

/* Large desktop: even larger */
@media (min-width: 1200px) {
    .cat-mini-card { width: 175px; }
    .cat-mini-info h3 { font-size: 14px; }
}

/* Mobile: compact */
@media (max-width: 480px) {
    .cat-mini-card { width: 120px; }
    .cat-slider-track { gap: 12px; }
    .cat-mini-info { padding: 8px 6px 10px; }
    .cat-mini-info i { font-size: 13px; }
    .cat-mini-info h3 { font-size: 11px; }
    .cat-mini-info span { font-size: 9px; }
    .cat-slider-track { animation-duration: 24s; }
}

/* Reduced motion: no animation */
@media (prefers-reduced-motion: reduce) {
    .cat-slider-track { animation: none; overflow-x: auto; }
    .cat-slider-viewport { mask-image: none; -webkit-mask-image: none; }
}

/* Legacy class overrides — hide old grid if any remnant loads */
.cat-image-grid { display: none !important; }

/* ===== SHOP BY ROOM UPGRADE ===== */
.room-card img { transition: transform 0.6s ease; }
.room-card:hover img { transform: scale(1.08); }
.room-overlay .room-btn {
    display: inline-block; margin-top: 10px; padding: 8px 20px;
    background: var(--gold); color: #fff; border-radius: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; transition: background 0.25s;
    opacity: 0; transform: translateY(10px); transition: all 0.35s ease;
}
.room-card:hover .room-btn { opacity: 1; transform: translateY(0); }

/* ===== TESTIMONIALS UPGRADE ===== */
.tcard-footer {
    display: flex; align-items: center; gap: 14px; margin-top: 16px;
}
.tcard-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
    flex-shrink: 0;
}
.tcard-author { display: flex; flex-direction: column; }
.tcard-verified { color: #25D366; font-size: 13px; margin-left: 4px; }
.tcard-name { display: inline-flex; align-items: center; }
.tcard-city { font-size: 13px; color: #999; }
.tcard-city i { font-size: 11px; margin-right: 4px; }
.testimonial-dots { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.testimonial-dots .tdot, .testimonial-dots .t-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(0,0,0,0.15); border: none; cursor: pointer;
    padding: 0; transition: all 0.3s;
}
.testimonial-dots .tdot.active, .testimonial-dots .t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== FEATURES STRIP UPGRADE ===== */
.feature-card {
    transition: all 0.3s ease;
    padding: 24px;
    border-radius: 12px;
    cursor: default;
    position: relative;
}
.feature-card:hover { background: rgba(201,169,110,0.06); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-glow-15), var(--gold-glow-08));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.feature-icon i { color: var(--gold); font-size: 20px; }
.feature-detail {
    font-size: 12px; color: #999; margin-top: 4px;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; opacity: 0;
}
.feature-card:hover .feature-detail { max-height: 40px; opacity: 1; }

/* ===== NEWSLETTER UPGRADE ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--obsidian), var(--charcoal));
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter-text h2 { color: #fff; }
.newsletter-text p { color: rgba(255,255,255,0.6); }
.newsletter-incentive { color: var(--gold); font-size: 14px; font-weight: 600; margin-top: 8px; }
.newsletter-form input { border-radius: 8px 0 0 8px; border: 2px solid rgba(201,169,110,0.3); background: rgba(255,255,255,0.15); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); outline: none; background: rgba(255,255,255,0.12); }
.newsletter-form .btn-primary { border-radius: 0 8px 8px 0; background: var(--gold); }
.newsletter-privacy { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 8px; position: relative; z-index: 1; }
.newsletter-social-proof { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; position: relative; z-index: 1; }

/* ===== MINI CART UPGRADE ===== */
.cart-shipping-bar { padding: 12px 20px; background: var(--champagne); }
.shipping-bar-text { font-size: 12px; color: #666; margin-bottom: 6px; }
.shipping-bar-text .amount { color: var(--gold); font-weight: 700; }
.shipping-bar-track { height: 4px; background: #e0e0e0; border-radius: 4px; overflow: hidden; }
.shipping-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 4px; transition: width 0.5s ease; }
.cart-empty svg { width: 80px; height: 80px; margin-bottom: 16px; color: #ccc; }
.cart-panel { animation: slideInRight 0.3s ease; }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ===== MOBILE MENU UPGRADE ===== */
.mobile-menu-user {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-user-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.mobile-user-info { flex: 1; }
.mobile-user-info .name { font-weight: 600; font-size: 14px; }
.mobile-user-info .email { font-size: 12px; color: #999; }
.mobile-menu-cta {
    display: flex; gap: 10px; padding: 16px 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-cta-btn {
    flex: 1; padding: 12px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.25s;
}
.mobile-cta-call { background: var(--obsidian); color: #fff; }
.mobile-cta-whatsapp { background: #128C37; color: #fff; }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-has-sub.open .mobile-sub { max-height: 300px; }

/* ===== BACK TO TOP UPGRADE ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--obsidian);
    color: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    z-index: 997;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.back-to-top:hover { background: var(--gold); color: #fff; }
.back-to-top.visible { display: flex; }
.scroll-progress-ring {
    position: absolute;
    top: -3px; left: -3px;
    width: 54px; height: 54px;
    transform: rotate(-90deg);
}
.scroll-progress-ring circle { fill: none; stroke-width: 2; }
.scroll-progress-ring .bg { stroke: rgba(201,169,110,0.2); }
.scroll-progress-ring .progress { stroke: var(--gold); stroke-linecap: round; transition: stroke-dashoffset 0.1s; }

/* ===== AI VISUALIZER — UPGRADED ANIMATED SECTION ===== */

/* --- Section base --- */
.ai-viz-section {
    padding: 60px 0;
    background: linear-gradient(160deg, #0a1628 0%, #132a1c 40%, #1B4332 70%, #0d2818 100%);
    position: relative;
    overflow: hidden;
}

/* --- Animated background orbs --- */
.ai-viz-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ai-viz-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: aivizFloat 12s ease-in-out infinite;
}
.ai-viz-orb-1 { width: 400px; height: 400px; background: #2D6A4F; top: -10%; right: -5%; animation-delay: 0s; }
.ai-viz-orb-2 { width: 300px; height: 300px; background: #C9A96E; bottom: -10%; left: -5%; animation-delay: -4s; }
.ai-viz-orb-3 { width: 250px; height: 250px; background: #52B788; top: 50%; left: 40%; animation-delay: -8s; }

@keyframes aivizFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid lines overlay */
.ai-viz-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(82,183,136,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,183,136,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: aivizGridDrift 20s linear infinite;
}
@keyframes aivizGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* --- Layout --- */
.ai-viz-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- Left content --- */
.ai-viz-content { max-width: 520px; }

/* Badge */
.ai-viz-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(82,183,136,0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    color: #52B788;
    margin-bottom: 28px;
    border: 1px solid rgba(82,183,136,0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.ai-viz-badge-dot {
    width: 8px; height: 8px;
    background: #52B788;
    border-radius: 50%;
    animation: aivizPulse 2s ease-in-out infinite;
}
@keyframes aivizPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Heading */
.ai-viz-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.ai-viz-heading-highlight {
    background: linear-gradient(135deg, #C9A96E, #E2C992, #C9A96E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Description */
.ai-viz-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 460px;
}

/* --- Animated step flow --- */
.ai-viz-flow {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 44px;
}
.ai-viz-flow-step {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; flex: 1; text-align: center;
    opacity: 0;
    animation: aivizStepIn 0.6s ease forwards;
}
.ai-viz-flow-step[data-step="1"] { animation-delay: 0.3s; }
.ai-viz-flow-step[data-step="2"] { animation-delay: 0.6s; }
.ai-viz-flow-step[data-step="3"] { animation-delay: 0.9s; }

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

.ai-viz-flow-icon {
    position: relative;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    color: #52B788; font-size: 1.3rem;
}
.ai-viz-ring {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.ai-viz-ring circle {
    fill: none;
    stroke: rgba(82,183,136,0.25);
    stroke-width: 2;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    stroke-linecap: round;
    animation: aivizRingDraw 1.5s ease forwards;
    transform-origin: center;
    transform: rotate(-90deg);
}
.ai-viz-flow-step[data-step="1"] .ai-viz-ring circle { animation-delay: 0.5s; }
.ai-viz-flow-step[data-step="2"] .ai-viz-ring circle { animation-delay: 0.8s; }
.ai-viz-flow-step[data-step="3"] .ai-viz-ring circle { animation-delay: 1.1s; stroke: rgba(201,169,110,0.5); }

@keyframes aivizRingDraw {
    to { stroke-dashoffset: 0; }
}

.ai-viz-flow-connector {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    padding-top: 20px;
}

.ai-viz-flow-num {
    display: block;
    font-size: 0.65rem; font-weight: 700;
    color: rgba(82,183,136,0.5);
    letter-spacing: 2px;
}
.ai-viz-flow-label {
    display: block;
    font-size: 0.82rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* --- CTA button --- */
.ai-viz-cta-group {
    display: flex; flex-direction: column; gap: 12px;
}
.ai-viz-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #52B788, #40916C);
    color: #fff;
    border-radius: 14px;
    font-size: 1.05rem; font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 25px rgba(82,183,136,0.35);
}
.ai-viz-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(82,183,136,0.5);
}
.ai-viz-cta-btn:hover .ai-viz-cta-arrow {
    transform: translateX(5px);
}
.ai-viz-cta-arrow {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}
.ai-viz-cta-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: aivizShine 4s ease-in-out infinite;
}
@keyframes aivizShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.ai-viz-cta-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    padding-left: 4px;
}

/* --- Right: Animated room demo --- */
.ai-viz-demo {
    position: relative;
}

.ai-viz-demo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #e8e0d4 0%, #d4cbbf 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ============================================================
   REAL-IMAGE BEFORE/AFTER — AI Visualizer
   ============================================================ */

/* Before & After room photos */
.ai-viz-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.ai-viz-photo-before { z-index: 1; }
.ai-viz-photo-after  { z-index: 0; }

/* Cross-fade: before fades out to reveal after */
.ai-viz-animate .ai-viz-photo-before {
    animation: aivizBeforeFade 1.5s ease forwards;
    animation-delay: 3s;
}
@keyframes aivizBeforeFade {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

/* State badge — "Your Room" → "AI Furnished" */
.ai-viz-state-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(0,0,0,0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    z-index: 15;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}
.ai-viz-state-badge i { color: #C9A96E; font-size: 0.75rem; }
.ai-viz-state-badge.ai-viz-badge-done {
    background: rgba(82,183,136,0.2);
    border-color: rgba(82,183,136,0.4);
}
.ai-viz-state-badge.ai-viz-badge-done i { color: #52B788; }

/* ============================================================
   AI SCANNING OVERLAYS
   ============================================================ */

/* Scan line */
.ai-viz-scan-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #52B788, #C9A96E, #52B788, transparent);
    opacity: 0; z-index: 10;
    box-shadow: 0 0 20px rgba(82,183,136,0.5), 0 0 40px rgba(82,183,136,0.2);
}
.ai-viz-animate .ai-viz-scan-line {
    animation: aivizScan 2.5s ease-in-out forwards;
    animation-delay: 0.3s;
}
@keyframes aivizScan {
    0%   { top: 0; opacity: 0; }
    8%   { opacity: 1; }
    85%  { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

/* Scan grid overlay */
.ai-viz-scan-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(82,183,136,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,183,136,0.06) 1px, transparent 1px);
    background-size: 12% 12%;
    opacity: 0; pointer-events: none; z-index: 8;
}
.ai-viz-animate .ai-viz-scan-grid {
    animation: aivizGridFade 3s ease forwards;
    animation-delay: 0.5s;
}
@keyframes aivizGridFade {
    0%   { opacity: 0; }
    20%  { opacity: 1; }
    70%  { opacity: 0.6; }
    100% { opacity: 0; }
}

/* Measurement dots */
.ai-viz-measure-dots {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 9;
}
.ai-viz-mdot {
    position: absolute;
    width: 8px; height: 8px;
    border: 2px solid rgba(82,183,136,0.7);
    border-radius: 50%;
    opacity: 0;
}
.ai-viz-mdot::after {
    content: '';
    position: absolute; inset: -4px;
    border: 1px solid rgba(82,183,136,0.3);
    border-radius: 50%;
    opacity: 0;
}
.ai-viz-animate .ai-viz-mdot {
    animation: aivizDotPing 2s ease forwards;
    animation-delay: 1s;
}
.ai-viz-animate .ai-viz-mdot::after {
    animation: aivizDotRing 1.5s ease-out forwards;
    animation-delay: 1.2s;
}
@keyframes aivizDotPing {
    0%   { opacity: 0; transform: scale(0); }
    30%  { opacity: 1; transform: scale(1.2); }
    50%  { transform: scale(1); }
    80%  { opacity: 0.7; }
    100% { opacity: 0; }
}
@keyframes aivizDotRing {
    0%   { opacity: 0; transform: scale(0.5); }
    30%  { opacity: 0.6; }
    100% { opacity: 0; transform: scale(2.5); }
}

/* ---- Phased status labels ---- */
.ai-viz-demo-label {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(82,183,136,0.3);
    z-index: 12;
}
.ai-viz-demo-label i { color: #C9A96E; font-size: 0.8rem; }

/* Phase 1: Scan */
.ai-viz-animate .ai-viz-label-1 {
    animation: aivizLabelPhase 1.2s ease forwards;
    animation-delay: 0.5s;
}
/* Phase 2: Analyze */
.ai-viz-animate .ai-viz-label-2 {
    animation: aivizLabelPhase 1.2s ease forwards;
    animation-delay: 1.5s;
}
/* Phase 3: Place */
.ai-viz-animate .ai-viz-label-3 {
    animation: aivizLabelPhase 1.2s ease forwards;
    animation-delay: 2.5s;
}
/* Phase Done — stays visible */
.ai-viz-animate .ai-viz-label-done {
    animation: aivizLabelDone 0.6s ease forwards;
    animation-delay: 4.2s;
}
.ai-viz-label-done i { color: #52B788; }

@keyframes aivizLabelPhase {
    0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
    15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    75%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-6px); }
}
@keyframes aivizLabelDone {
    0%   { opacity: 0; transform: translateX(-50%) translateY(10px) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* ---- Viewfinder corners ---- */
.ai-viz-viewfinder {
    position: absolute; inset: 12px;
    pointer-events: none;
    z-index: 11; opacity: 0;
}
.ai-viz-animate .ai-viz-viewfinder {
    animation: aivizVFIn 2.5s ease forwards;
    animation-delay: 0.3s;
}
@keyframes aivizVFIn {
    0%   { opacity: 0; }
    15%  { opacity: 0.8; }
    70%  { opacity: 0.5; }
    100% { opacity: 0; }
}
.ai-viz-vf-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: rgba(82,183,136,0.6);
    border-style: solid;
    border-width: 0;
}
.ai-viz-vf-tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.ai-viz-vf-tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-radius: 0 4px 0 0; }
.ai-viz-vf-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 4px; }
.ai-viz-vf-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }

/* ---- Sparkle particles ---- */
.ai-viz-sparkles {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 13;
}
.ai-viz-sparkles span {
    position: absolute;
    width: 5px; height: 5px;
    background: #C9A96E;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(201,169,110,0.6);
}
.ai-viz-sparkles span:nth-child(1) { top: 20%; left: 25%; }
.ai-viz-sparkles span:nth-child(2) { top: 35%; right: 20%; }
.ai-viz-sparkles span:nth-child(3) { bottom: 25%; left: 15%; }
.ai-viz-sparkles span:nth-child(4) { top: 15%; right: 35%; }
.ai-viz-sparkles span:nth-child(5) { bottom: 15%; right: 25%; }
.ai-viz-sparkles span:nth-child(6) { top: 50%; left: 40%; }
.ai-viz-sparkles span:nth-child(7) { top: 40%; right: 40%; }
.ai-viz-sparkles span:nth-child(8) { bottom: 35%; left: 50%; }
.ai-viz-animate .ai-viz-sparkles span { animation: aivizSparkle 1.8s ease-in-out forwards; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(1) { animation-delay: 3.2s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(2) { animation-delay: 3.35s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(3) { animation-delay: 3.5s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(4) { animation-delay: 3.65s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(5) { animation-delay: 3.8s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(6) { animation-delay: 3.95s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(7) { animation-delay: 4.1s; }
.ai-viz-animate .ai-viz-sparkles span:nth-child(8) { animation-delay: 4.25s; }
@keyframes aivizSparkle {
    0%   { opacity: 0; transform: scale(0) rotate(0); }
    25%  { opacity: 1; transform: scale(1.6) rotate(90deg); }
    50%  { opacity: 0.7; transform: scale(0.8) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

/* ============================================================
   ROOM STYLE SELECTOR
   ============================================================ */
.ai-viz-selector {
    display: flex; gap: 10px;
    margin-top: 16px;
    justify-content: center;
}
.ai-viz-selector-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ai-viz-selector-item:hover,
.ai-viz-selector-item.active {
    background: rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.3);
    color: #C9A96E;
}
.ai-viz-color-dot {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ai-viz-selector-item.active .ai-viz-color-dot {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 8px rgba(201,169,110,0.4);
}

/* ============================================================
   RESPONSIVE — AI Visualizer room
   ============================================================ */
@media (max-width: 992px) {
    .ai-viz-layout { grid-template-columns: 1fr; gap: 50px; }
    .ai-viz-content { max-width: 100%; text-align: center; }
    .ai-viz-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .ai-viz-flow { justify-content: center; }
    .ai-viz-cta-group { align-items: center; }
    .ai-viz-heading { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .ai-viz-section { padding: 45px 0; }
    .ai-viz-heading { font-size: 1.9rem; }
    .ai-viz-flow { flex-wrap: wrap; gap: 8px; }
    .ai-viz-flow-connector { display: none; }
    .ai-viz-flow-step { flex: 0 0 30%; }
    .ai-viz-selector-item { padding: 8px 12px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
    .ai-viz-section { padding: 36px 0; }
    .ai-viz-heading { font-size: 1.6rem; }
    .ai-viz-desc { font-size: 0.95rem; }
    .ai-viz-flow-step { flex: 0 0 100%; }
    .ai-viz-cta-btn { padding: 16px 28px; font-size: 0.95rem; }
    .ai-viz-selector { flex-wrap: wrap; }
    .ai-viz-vf-corner { width: 14px; height: 14px; }
    .ai-viz-demo-label { font-size: 0.68rem; padding: 8px 14px; }
    .ai-viz-state-badge { font-size: 0.62rem; padding: 5px 10px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .ai-viz-orb,
    .ai-viz-scan-line,
    .ai-viz-scan-grid,
    .ai-viz-sparkles span,
    .ai-viz-flow-step,
    .ai-viz-ring circle,
    .ai-viz-badge-dot,
    .ai-viz-viewfinder,
    .ai-viz-mdot,
    .ai-viz-demo-label,
    .ai-viz-photo-before,
    .ai-viz-grid-lines { animation: none !important; }
    .ai-viz-photo-before { opacity: 0 !important; }
    .ai-viz-flow-step { opacity: 1; }
    .ai-viz-label-done { opacity: 1; animation: none !important; }
    .ai-viz-label-1, .ai-viz-label-2, .ai-viz-label-3 { display: none; }
    .ai-viz-ring circle { stroke-dashoffset: 0; }
    .ai-viz-scan-line, .ai-viz-scan-grid, .ai-viz-viewfinder { display: none; }
    .ai-viz-sparkles { display: none; }
    .ai-viz-measure-dots { display: none; }
}

/* ===== EXCLUSIVE OFFERS UPGRADE ===== */
.offer-stock-badge {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(255,60,60,0.9); color: #fff;
    font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px; z-index: 2;
}
.offer-countdown { font-size: 11px; color: #999; margin-top: 6px; }
.offers-view-more { text-align: center; margin-top: 28px; }

/* ===== PRELOADER UPGRADE ===== */
.preloader-logo-img { height: 50px; width: auto; margin-bottom: 24px; opacity: 0; animation: preloaderFadeIn 1s ease 0.2s forwards; }

/* ===== RESPONSIVE PATCHES ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
        right: calc(24px + env(safe-area-inset-right, 0px)) !important;
    }

    .store-toast {
        bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
        right: calc(20px + env(safe-area-inset-right, 0px)) !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
        right: calc(16px + env(safe-area-inset-right, 0px)) !important;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

/* ===== ACCESSIBILITY: PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .luxury-preloader {
        display: none !important;
    }
    .luxury-cursor, .luxury-cursor-ring {
        display: none !important;
    }
    .gold-particles {
        display: none !important;
    }
}
