@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --sidebar-bg: #000000;
    --gold: #BC9859;
    --gold-light: #d4af6e;
    --gold-bright: #f0d080;
    --gold-hover: #d4ae6d;
    --gold-dim: #8a6b35;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --font-serif: 'Playfair Display', serif;
    --font-cormorant: 'Cormorant Garamond', serif;
    --font-cinzel: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --sidebar-width: 250px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-gold: 0 0 20px rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.1);
    --glow-gold-intense: 0 0 30px rgba(201, 168, 76, 0.5), 0 0 60px rgba(201, 168, 76, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(188, 152, 89, 0.15);
    --border-gold-subtle: 1px solid rgba(188, 152, 89, 0.2);
    --border-gold: 1px solid rgba(188, 152, 89, 0.4);
    --border-gold-bright: 1px solid #c9a84c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: rgba(188, 152, 89, 0.4);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(188, 152, 89, 0.7);
}

/* ═══════════════════════════════════════
   SIDEBAR NAVIGATION
═══════════════════════════════════════ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #050505 0%, #000000 100%);
    border-right: 1px solid rgba(188, 152, 89, 0.15);
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.active {
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.8), 2px 0 12px rgba(188, 152, 89, 0.08);
}

.sidebar-logo {
    padding: 1rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.sidebar-logo h2 {
    font-family: var(--font-cinzel);
    color: var(--gold);
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(188, 152, 89, 0.3);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.3rem;
    position: relative;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(188, 152, 89, 0.12), transparent);
    transition: width 0.3s ease;
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
    width: 100%;
}

.sidebar-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-nav a:hover::after,
.sidebar-nav a.active::after {
    opacity: 1;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--gold-light);
    opacity: 1;
    padding-left: 2.5rem;
}

.sidebar-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition);
    margin-top: 1rem;
}

.sidebar-footer-item:hover {
    color: var(--gold);
    opacity: 1;
}

/* ═══════════════════════════════════════
   MAIN CONTENT AREA
═══════════════════════════════════════ */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    width: calc(100% - var(--sidebar-width));
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero-series {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(ellipse at center top, #1a1005 0%, #0a0602 40%, #000 100%);
    position: relative;
    overflow: hidden;
}

.hero-series::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(188, 152, 89, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gold-serif {
    font-family: var(--font-cinzel);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-series h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-series h1 {
    font-size: 4.5rem;
    max-width: 800px;
    line-height: 1;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-gold {
    background: linear-gradient(135deg, #bc9859 0%, #d4af6e 50%, #c9a84c 100%);
    color: #060606;
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-cinzel);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-gold:hover {
    background: linear-gradient(135deg, #d4af6e 0%, #f0d080 50%, #d4af6e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 152, 89, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   LUXURY INTRO OVERLAY
═══════════════════════════════════════ */
.luxury-intro {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
}

.luxury-intro.hidden {
    transform: translateY(-100%);
}

.intro-content {
    max-width: 600px;
    text-align: center;
}

.intro-title {
    font-family: var(--font-cinzel);
    font-size: 5rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: 6px;
}

/* ═══════════════════════════════════════
   PRODUCT GRID & CARDS
═══════════════════════════════════════ */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.luxury-card {
    background: linear-gradient(145deg, #0f0f0f 0%, #0a0a0a 50%, #080808 100%);
    border: 1px solid rgba(188, 152, 89, 0.18);
    border-radius: 14px;
    padding: 1.75rem;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(188, 152, 89, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.luxury-card:hover {
    transform: translateY(-6px);
    border-color: rgba(188, 152, 89, 0.45);
    box-shadow: var(--shadow-card-hover);
}

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

.luxury-card .card-title {
    font-family: var(--font-cormorant);
    font-size: 1.4rem;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.luxury-card .btn-gold,
.luxury-card button {
    max-width: 100%;
}

/* Card Image */
.luxury-card .card-image-wrap {
    width: 100%;
    margin: 0 auto 1.25rem;
    background: #0a0a0a;
    border: 1px solid rgba(188, 152, 89, 0.25);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.luxury-card .card-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover .card-image-wrap img {
    transform: scale(1.04);
}

.luxury-card .card-image-wrap .card-image-placeholder {
    color: #bc9859;
    font-style: italic;
    font-size: 0.9rem;
}

.card-img-uniform {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(188, 152, 89, 0.25);
    background: #0a0a0a;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover .card-img-uniform {
    transform: scale(1.04);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
}

.card-actions .card-btn-cart {
    flex: 1;
    padding: 11px 8px;
    background: rgba(188, 152, 89, 0.1);
    border: 1.5px solid rgba(188, 152, 89, 0.5);
    color: var(--gold-light);
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.card-actions .card-btn-cart::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(188, 152, 89, 0.15), transparent);
    transition: left 0.4s ease;
}

.card-actions .card-btn-cart:hover::before {
    left: 100%;
}

.card-actions .card-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(188, 152, 89, 0.25);
    background: rgba(188, 152, 89, 0.2);
    border-color: #bc9859;
    color: #f0d080;
}

.card-actions .card-btn-share {
    flex: 1;
    padding: 11px 8px;
    background: rgba(188, 152, 89, 0.06);
    border: 1.5px solid rgba(188, 152, 89, 0.3);
    color: rgba(188, 152, 89, 0.8);
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    gap: 5px;
}

.card-actions .card-btn-share:hover {
    background: rgba(188, 152, 89, 0.12);
    border-color: rgba(188, 152, 89, 0.5);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Also target inline card-btn-cart and card-btn-share (from welcome.html styles) */
.card-btn-cart {
    flex: 1;
    padding: 11px 8px;
    background: rgba(188, 152, 89, 0.1);
    border: 1.5px solid rgba(188, 152, 89, 0.5);
    color: var(--gold-light);
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.card-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(188, 152, 89, 0.25);
    background: rgba(188, 152, 89, 0.2);
    border-color: #bc9859;
    color: #f0d080;
}

.card-btn-share {
    flex: 1;
    padding: 11px 8px;
    background: rgba(188, 152, 89, 0.06);
    border: 1.5px solid rgba(188, 152, 89, 0.3);
    color: rgba(188, 152, 89, 0.8);
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.card-btn-share:hover {
    background: rgba(188, 152, 89, 0.12);
    border-color: rgba(188, 152, 89, 0.5);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Card subtitle */
.card-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-cinzel);
}

/* Card number */
.card-num {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--gold-dim);
}

/* ═══════════════════════════════════════
   SECTION CONTAINMENT
═══════════════════════════════════════ */
.product-section {
    overflow: hidden;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes goldPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100%; }
}

/* ═══════════════════════════════════════
   DECORATIVE DIVIDERS
═══════════════════════════════════════ */
.gold-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.gold-divider-wide {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* ═══════════════════════════════════════
   SCENT GALLERY
═══════════════════════════════════════ */
.scent-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scent-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.025) 0%, rgba(188,152,89,0.03) 100%);
    border: 1px solid rgba(188, 152, 89, 0.18);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scent-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(188, 152, 89, 0.06), transparent);
    transition: left 0.5s ease;
}

.scent-card:hover::after {
    left: 150%;
}

.scent-card:hover {
    border-color: rgba(188, 152, 89, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 2px 8px rgba(188,152,89,0.12);
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(188,152,89,0.06) 100%);
}

.scent-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-cinzel);
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.scent-desc {
    color: rgba(201, 168, 76, 0.85);
    font-size: 1.3rem;
    font-family: var(--font-cormorant);
    line-height: 1.4;
}

.inspired-gallery .scent-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.06) 0%, rgba(0,0,0,0) 100%);
}

.inspired-badge {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    font-family: var(--font-cinzel);
    color: var(--gold-dim);
}

/* ═══════════════════════════════════════
   VARIANT & ADDITIVE BUTTONS
═══════════════════════════════════════ */
.variant-btn,
.additive-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(188, 152, 89, 0.2);
    color: #888;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-cinzel);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.variant-btn.active,
.additive-btn.active {
    background: rgba(188, 152, 89, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
}

.variant-btn:hover,
.additive-btn:hover {
    border-color: rgba(188, 152, 89, 0.5);
    color: var(--gold-light);
}

/* ═══════════════════════════════════════
   ABOUT / LANDING SECTIONS
═══════════════════════════════════════ */
.about-landing {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ═══════════════════════════════════════
   CATEGORY CARDS
═══════════════════════════════════════ */
.category-card {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.category-card:hover {
    background: rgba(188, 152, 89, 0.12) !important;
    border-color: rgba(188, 152, 89, 0.6) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 2px 8px rgba(188,152,89,0.12);
}

.category-card h3 {
    color: var(--gold);
    font-family: var(--font-cinzel);
}

/* ═══════════════════════════════════════
   BACK / NAVIGATION BUTTONS
═══════════════════════════════════════ */
.back-btn:hover {
    background: rgba(188, 152, 89, 0.08) !important;
    border-color: rgba(188, 152, 89, 0.6) !important;
}

/* Shop Collections Divider */
.shop-collections-divider {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

.shop-collections-btn {
    padding: 1rem 3rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    background: #0d0d0d !important;
    border: 1.5px solid #c9a84c !important;
    color: #c9a84c !important;
    font-family: var(--font-cinzel) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border-radius: 6px !important;
}

.shop-collections-btn:hover {
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)) !important;
    color: var(--gold-bright) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(188,152,89,0.2) !important;
}

/* ═══════════════════════════════════════
   POLICY ACCORDION
═══════════════════════════════════════ */
.policy-accordion summary::-webkit-details-marker {
    display: none;
}

.policy-accordion[open] summary span:last-child {
    transform: rotate(180deg);
    display: inline-block;
}

.policy-accordion summary:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.policy-accordion summary {
    transition: background 0.2s ease;
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
#reviews-track::-webkit-scrollbar {
    height: 4px;
}

#reviews-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
}

#reviews-track::-webkit-scrollbar-thumb {
    background: rgba(188, 152, 89, 0.35);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   STAR RATINGS
═══════════════════════════════════════ */
.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin: 0.3rem 0;
    min-height: 1.2rem;
}

.star-rating .sr-star {
    color: #d4af6e;
    font-size: 0.85rem;
}

.star-rating .sr-empty {
    color: #333;
    font-size: 0.85rem;
}

.star-rating .sr-count {
    color: #666;
    font-size: 0.75rem;
    margin-left: 4px;
}

/* ═══════════════════════════════════════
   FLASH MESSAGES
═══════════════════════════════════════ */
.flash-messages {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2100;
}

.flash {
    background: #0d0d0d;
    color: var(--gold);
    border: 1px solid rgba(188,152,89,0.4);
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: var(--font-cinzel);
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(188,152,89,0.1);
    border-radius: 6px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
   PRODUCT IMAGES
═══════════════════════════════════════ */
.luxury-card .card-image-wrap .card-image-placeholder {
    color: #bc9859;
    font-style: italic;
    font-size: 0.9rem;
}

.card-image-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid rgba(188, 152, 89, 0.2);
}

.card-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* All product images */
.luxury-card img, .card-image-wrap img, .product-image img, .card-img-uniform {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    background-color: #0a0a0a;
}

/* Product detail page - show full image */
.pd-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.luxury-footer {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #030303 0%, #000 100%);
    border-top: 1px solid rgba(188, 152, 89, 0.1);
    text-align: center;
    position: relative;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(188,152,89,0.3), transparent);
}

.footer-logo {
    font-family: var(--font-cinzel);
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(188,152,89,0.2);
}

.footer-copy {
    color: #333;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-cinzel);
}

/* ═══════════════════════════════════════
   SCROLL SNAPPING
═══════════════════════════════════════ */
.product-section, .luxury-footer, .luxury-header, .shop-collections-divider {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* ═══════════════════════════════════════
   LANGUAGE COVER
═══════════════════════════════════════ */
.language-cover {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.language-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.1rem;
    font-family: var(--font-cinzel);
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    color: var(--gold);
    font-weight: bold;
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-divider {
    color: #333;
}

/* ═══════════════════════════════════════
   INPUTS & FORMS
═══════════════════════════════════════ */
input, textarea, select {
    font-family: var(--font-sans);
}

.aao-footer-input {
    background: rgba(10, 10, 10, 0.9) !important;
    border: 1px solid rgba(188, 152, 89, 0.3) !important;
    color: #f0e6d3 !important;
    padding: 0.8rem 1rem !important;
    border-radius: 6px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.aao-footer-input:focus {
    outline: none !important;
    border-color: rgba(188, 152, 89, 0.6) !important;
    box-shadow: 0 0 12px rgba(188, 152, 89, 0.1) !important;
}

/* ═══════════════════════════════════════
   TABLET ADJUSTMENTS
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        transform: translateX(-100%);
        width: 280px;
        z-index: 2000;
        top: 0;
        left: 0;
        height: 100vh;
    }

    .sidebar.active {
        transform: translateX(0);
        box-shadow: 8px 0 40px rgba(0,0,0,0.8), 2px 0 12px rgba(188,152,89,0.08);
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    #mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 10001;
        background: rgba(8,8,8,0.95);
        border: 1px solid rgba(188,152,89,0.35);
        color: #bc9859;
        width: 46px;
        height: 46px;
        border-radius: 8px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    #mobile-menu-toggle:hover {
        background: rgba(20,20,20,0.98);
        border-color: rgba(188,152,89,0.6);
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }

    .sidebar-logo h2 {
        font-size: 1.4rem;
    }

    .sidebar-nav a {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }

    .hero-series h1 {
        font-size: 3.5rem;
    }

    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-card {
        overflow: visible;
        word-wrap: break-word;
        min-height: auto;
    }

    .luxury-card .card-image-wrap {
        height: 220px;
        overflow: hidden;
    }

    .luxury-card .card-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .card-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .main-content {
        overflow-x: hidden;
    }

    .luxury-card p, .luxury-card .card-subtitle {
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════
   MOBILE ADJUSTMENTS
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 2000;
    }

    .sidebar.active {
        transform: translateX(0);
        box-shadow: 8px 0 40px rgba(0,0,0,0.8);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    #mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1999;
        background: rgba(8,8,8,0.95);
        border: 1px solid rgba(188,152,89,0.4);
        color: var(--gold);
        width: 46px;
        height: 46px;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
    }

    .sidebar-logo {
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sidebar-logo h2 {
        font-size: 1.3rem;
    }

    .sidebar-nav a {
        padding: 0.7rem 1.5rem;
        font-size: 0.82rem;
    }

    .sidebar-footer {
        padding: 1rem 1.5rem;
    }

    .sidebar-footer-item {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }

    .hero-series {
        height: auto;
        min-height: 60vh;
        padding: 4rem 1.5rem;
    }

    .hero-series h3 {
        font-size: 1rem;
    }

    .hero-series h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .luxury-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .luxury-card {
        aspect-ratio: auto;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .card-num {
        font-size: 1.2rem;
    }

    .btn-gold {
        padding: 0.8rem 1.5rem;
        font-size: 0.82rem;
    }

    .flash-messages {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .flash {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }

    .luxury-footer {
        padding: 2.5rem 1rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .scent-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    section {
        overflow-x: hidden !important;
    }

    section h2 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .luxury-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }

    .about-landing {
        min-height: auto !important;
        padding: 4rem 1rem !important;
    }

    .about-landing h2 {
        font-size: 2.2rem !important;
    }

    .founder-credentials {
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    select {
        max-width: 100% !important;
        font-size: 0.85rem !important;
    }

    .shop-collections-btn {
        padding: 0.85rem 2rem !important;
        font-size: 0.82rem !important;
    }
}

/* ═══════════════════════════════════════
   EXTRA SMALL MOBILE
═══════════════════════════════════════ */
@media (max-width: 480px) {
    #mobile-menu-toggle {
        top: 0.8rem;
        left: 0.8rem;
        width: 42px;
        height: 42px;
    }

    .hero-series h1 {
        font-size: 1.8rem;
    }

    .hero-series h3 {
        font-size: 0.85rem;
    }

    .luxury-card {
        padding: 1.2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .btn-gold {
        padding: 0.7rem 1.2rem;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .scent-gallery {
        grid-template-columns: 1fr;
    }
}
