/* ============================================
   AURELIA - Ultra-Premium Perfume E-Commerce
   Luxury Black, Charcoal & Gold Theme
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2a2a2a;
    --color-gold: #c9a962;
    --color-gold-light: #e8d5a3;
    --color-gold-dark: #9a7b3d;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.3);
    
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(201, 169, 98, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    margin-bottom: 2rem;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--color-charcoal-light);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    animation: loadingProgress 2.5s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-gold-light);
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-icon {
    color: var(--color-gray-300);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-icon:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    animation: smokeMove 20s ease-in-out infinite;
}

@keyframes smokeMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, -2%) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    max-width: 450px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
}

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

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

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray-600);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-add-cart {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 1px solid var(--color-gray-700);
    color: var(--color-white);
    font-size: 0.7rem;
    margin-top: 1rem;
}

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

/* Hero 3D Container */
.hero-3d-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#perfumeCanvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero-light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: lightPulse 4s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray-500);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtitle {
    color: var(--color-gray-500);
    font-size: 1rem;
}

/* Featured Collection */
.featured {
    background: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-black) 100%);
}

.featured-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal-light);
    transition: all var(--transition-medium);
}

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

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-xl);
}

.featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.featured-card.large .featured-image {
    aspect-ratio: 3/5;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}

.featured-card:hover .featured-overlay {
    opacity: 0.9;
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.featured-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.featured-desc {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.featured-price {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 500;
}

/* Best Sellers */
.bestsellers {
    background: var(--color-black);
}

.products-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-medium);
}

.product-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal-light);
    transition: all var(--transition-medium);
}

.product-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-medium);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-btn {
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--color-gray-700);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.product-details {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.product-type {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-bottom: 0.75rem;
}

.product-notes {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-notes span {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-charcoal-light);
    color: var(--color-gray-400);
    border-radius: 2px;
}

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

.product-price {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* 3D Experience */
.experience {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-black) 100%);
    overflow: hidden;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content {
    padding-right: 2rem;
}

.experience-text {
    color: var(--color-gray-400);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.experience-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-medium);
}

.feature-item:hover .feature-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-5px);
}

.feature-item span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-400);
}

.experience-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-container {
    position: relative;
    width: 300px;
    height: 400px;
    perspective: 1000px;
}

.bottle-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.bottle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(201, 169, 98, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px 10px 40px 40px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 60px rgba(201, 169, 98, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(180deg,
        rgba(201, 169, 98, 0.3) 0%,
        rgba(154, 123, 61, 0.5) 100%);
    border-radius: 0 0 35px 35px;
}

.bottle-reflection {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 60%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(5px);
}

.bottle-cap {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg,
        var(--color-gold-light) 0%,
        var(--color-gold) 50%,
        var(--color-gold-dark) 100%);
    border-radius: 5px 5px 15px 15px;
    box-shadow: 
        0 5px 20px rgba(201, 169, 98, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.bottle-cap::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%);
    border-radius: 50%;
}

.bottle-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.experience-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Fragrance Notes */
.notes {
    background: var(--color-black);
}

.notes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.notes-bottle {
    display: flex;
    justify-content: center;
}

.bottle-silhouette {
    position: relative;
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg,
        rgba(201, 169, 98, 0.1) 0%,
        rgba(201, 169, 98, 0.05) 100%);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 20px 20px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2rem 1rem;
}

.note-layer {
    position: relative;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.note-layer:hover,
.note-layer.active {
    background: rgba(201, 169, 98, 0.1);
}

.note-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.note-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotFloat 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 1; }
}

.notes-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.note-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 10px;
    opacity: 0.5;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.note-card.active {
    opacity: 1;
    border-color: var(--color-gold);
    background: rgba(201, 169, 98, 0.05);
}

.note-card:hover {
    opacity: 1;
}

.note-icon {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.note-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.note-card p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.note-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.note-ingredients li {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: var(--color-charcoal-light);
    color: var(--color-gray-300);
    border-radius: 20px;
}

/* Gallery */
.gallery {
    padding: 0;
    background: var(--color-charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 50vh);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* About */
.about {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-gold);
    border-radius: 10px;
    pointer-events: none;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-charcoal-light);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

/* Reviews */
.reviews {
    background: var(--color-black);
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-medium);
}

.review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 10px;
    transition: all var(--transition-medium);
}

.review-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-gray-300);
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 500;
    color: var(--color-white);
}

.review-location {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-black) 100%);
    padding: 6rem 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.newsletter-text {
    color: var(--color-gray-400);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-input::placeholder {
    color: var(--color-gray-600);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    cursor: pointer;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-charcoal-light);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-charcoal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
}

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

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    transition: color var(--transition-fast);
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--color-charcoal);
    border-left: 1px solid var(--color-charcoal-light);
    z-index: 2000;
    transition: right var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

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

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.cart-close {
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.cart-close:hover {
    color: var(--color-white);
}

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

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

.cart-empty p {
    margin-bottom: 1.5rem;
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--color-charcoal-light);
}

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

#cartTotal {
    color: var(--color-gold);
    font-weight: 600;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
    
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-3d-container {
        order: 1;
        height: 400px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card.large {
        grid-row: span 1;
    }
    
    .experience-container,
    .about-container,
    .notes-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-visual {
        order: -1;
        height: 400px;
    }
    
    .about-image {
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 40vh);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: var(--color-charcoal);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 50vh);
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-card {
        flex: 0 0 100%;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-charcoal-light);
    border-radius: 4px;
}

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

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}