/* Custom luxury styles for House of Smell */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --color-bg: #FAF9F6;
    --color-charcoal: #1A1A1A;
    --color-gold: #C5A880;
    --color-gold-hover: #B3956D;
}

body {
    background-color: var(--color-bg);
    color: var(--color-charcoal);
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Hide scrollbars but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom minimal scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #FAF9F6;
}
::-webkit-scrollbar-thumb {
    background: #E5E5E5;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C5A880;
}

/* Drawer Transitions */
.drawer-transition {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulsing accent for new features/notifications */
@keyframes gold-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
}
.pulse-gold {
    animation: gold-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Quiz Options style */
.quiz-option {
    transition: all 0.25s ease;
    border: 1px solid #E5E5E5;
}
.quiz-option.selected {
    border-color: var(--color-charcoal);
    background-color: rgba(26, 26, 26, 0.03);
}

/* Lazy Loaded Image Fade-In */
.fade-in-image {
    animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Glassmorphism for modern touches */
.glass-header {
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Carousel/Horizontal Scroll Snapping */
.snap-x {
    scroll-snap-type: x mandatory;
}
.snap-center {
    scroll-snap-align: center;
}

/* ========================================
   HERO LUXURY ANIMATED STYLES & GLOW
   ======================================== */
.hero-luxury-bg {
    background: radial-gradient(circle at 50% 20%, #221233 0%, #150d22 45%, #0d0816 100%);
    position: relative;
}

/* Floating Ambient Aroma Orbs */
.hero-orb-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(197, 168, 128, 0.12) 50%, transparent 70%);
    filter: blur(35px);
    border-radius: 50%;
    animation: floatOrb1 7s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-orb-2 {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, rgba(217, 70, 239, 0.12) 50%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    animation: floatOrb2 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-orb-3 {
    position: absolute;
    top: 45%;
    right: 20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.08) 60%, transparent 75%);
    filter: blur(30px);
    border-radius: 50%;
    animation: floatOrb3 11s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(35px, 30px) scale(1.18); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, -25px) scale(1.22); }
}

@keyframes floatOrb3 {
    0% { transform: translate(0, 0) scale(0.95); }
    100% { transform: translate(20px, -20px) scale(1.12); }
}

/* Shimmering Gold Text Animation */
@keyframes gradient-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-gradient-text {
    background-size: 200% auto;
    animation: gradient-shimmer 4s ease infinite;
}

/* Scent Mist Floating Particles */
.scent-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatUpward linear infinite;
}

.dot-1 {
    width: 4px;
    height: 4px;
    left: 20%;
    bottom: 10px;
    background: rgba(245, 215, 140, 0.6);
    box-shadow: 0 0 8px rgba(245, 215, 140, 0.8);
    animation-duration: 6s;
    animation-delay: 0s;
}

.dot-2 {
    width: 6px;
    height: 6px;
    left: 50%;
    bottom: 5px;
    background: rgba(216, 180, 254, 0.5);
    box-shadow: 0 0 10px rgba(216, 180, 254, 0.7);
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.dot-3 {
    width: 3px;
    height: 3px;
    left: 75%;
    bottom: 15px;
    background: rgba(251, 191, 36, 0.6);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.8);
    animation-duration: 7s;
    animation-delay: 3s;
}

.dot-4 {
    width: 5px;
    height: 5px;
    left: 35%;
    bottom: 8px;
    background: rgba(253, 230, 138, 0.5);
    box-shadow: 0 0 8px rgba(253, 230, 138, 0.7);
    animation-duration: 9s;
    animation-delay: 4.5s;
}

@keyframes floatUpward {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-240px) scale(1.3);
        opacity: 0;
    }
}

/* ========================================
   ESSENCE CLUB LUXURY ANIMATED STYLES
   ======================================== */
.essence-club-bg {
    background: radial-gradient(circle at 50% 0%, #1e132d 0%, #120b1c 55%, #0a0611 100%);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.club-orb-1 {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(197, 168, 128, 0.1) 55%, transparent 70%);
    filter: blur(35px);
    border-radius: 50%;
    animation: floatOrb2 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.club-orb-2 {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(217, 70, 239, 0.08) 60%, transparent 75%);
    filter: blur(40px);
    border-radius: 50%;
    animation: floatOrb1 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.club-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}


