/* --- PREMIUM RESET & SYSTEM SYSTEM --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
:root {
    --luxury-dark: #0f0f11;
    --luxury-mid: #1c1c1f;
    --luxury-gold: #c5a880;
    --luxury-light: #f4f4f6;
    --luxury-border: #e2e2e6;
    --text-dark: #222224;
    --text-muted: #6c6c72;
}
body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-size: 14px;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* --- UTILITY TOP BAR --- */
.top-utility-bar {
    background-color: var(--luxury-dark);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 10px 6%;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
}
.top-utility-bar a { margin-left: 20px; color: #b5b5ba; }
.top-utility-bar a:hover, .location-select:hover { color: var(--luxury-gold); cursor: pointer; }

/* --- NAVIGATION & MEGA DROPDOWN --- */
.luxury-header {
    background: #ffffff;
    border-bottom: 1px solid var(--luxury-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 6%;
}
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.mega-nav .main-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.main-menu > li > a { font-weight: 500; text-transform: uppercase; letter-spacing: 1px; padding: 10px 0; font-size: 12px; }
.main-menu > li > a:hover { color: var(--luxury-gold); }
.highlight-link { color: var(--luxury-gold) !important; font-weight: 600 !important; }

/* Mega Dropdown System */
.has-dropdown { position: relative; }
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 450px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--luxury-border);
    padding: 25px;
    display: none;
    gap: 30px;
    margin-top: 15px;
}
.has-dropdown:hover .dropdown-panel { display: flex; }
.dropdown-col { flex: 1; }
.dropdown-col h4 { text-transform: uppercase; font-size: 11px; letter-spacing: 1.5px; margin-bottom: 12px; color: var(--luxury-gold); font-weight: 600; }
.dropdown-col a { display: block; padding: 6px 0; color: var(--text-muted); font-size: 13px; }
.dropdown-col a:hover { color: var(--luxury-dark); padding-left: 5px; }

/* Brand Logo Typography */
.brand-logo { text-align: center; }
.brand-logo h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 28px; letter-spacing: 4px; color: var(--luxury-dark); line-height: 1; }
.brand-logo span { font-size: 9px; letter-spacing: 5px; color: var(--luxury-gold); display: block; margin-top: 5px; font-weight: 600; }

/* Actions Menu Hooks */
.header-actions { display: flex; gap: 20px; align-items: center; font-size: 13px; }
.header-actions a:hover { color: var(--luxury-gold); }
.header-actions i { font-size: 18px; }

/* Account Interactive Dropdown Menu */
.account-menu-trigger { position: relative; padding: 10px 0; cursor: pointer; }
.account-dropdown {
    position: absolute; 
    right: 0; 
    top: 100%; 
    background: #0f0f11; /* Luxury Black Theme Background */
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    border: 1px solid var(--luxury-gold); /* Premium Gold Border */
    padding: 15px; 
    display: none; /* Controlled via JS */
    flex-direction: column; 
    gap: 4px;
    margin-top: 15px;
    z-index: 5000;
}
.account-dropdown a { 
    font-size: 11px; 
    color: #ffffff !important; 
    padding: 8px 12px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease;
}
.account-dropdown a i { font-size: 14px; color: var(--luxury-gold); width: 20px; }
.account-dropdown a:hover { 
    background: var(--luxury-gold); 
    color: var(--luxury-dark) !important; 
}
.account-dropdown a:hover i { color: var(--luxury-dark); }

/* Dynamic Class Triggered by JavaScript */
.account-dropdown.active-menu {
    display: flex !important;
}

/* Little dynamic arrow on top of dropdown panel */
.account-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: #0f0f11;
    transform: rotate(45deg);
    border-top: 1px solid var(--luxury-gold);
    border-left: 1px solid var(--luxury-gold);
}

.cart-icon { position: relative; }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--luxury-dark); color: #fff; font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }

/* --- HERO CORE COMPONENT --- */
.luxury-hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('https://images.unsplash.com/photo-1593032465175-481ac7f401a0?q=80&w=1920') no-repeat center center/cover;
    height: 85vh; display: flex; align-items: center; padding: 0 8%; color: #ffffff;
}
.hero-overlay-content { max-width: 650px; }
.hero-overlay-content h5 { color: var(--luxury-gold); font-weight: 500; letter-spacing: 3px; font-size: 12px; margin-bottom: 15px; }
.hero-overlay-content h2 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 400; line-height: 1.2; margin-bottom: 20px; }
.hero-overlay-content p { font-weight: 300; font-size: 15px; line-height: 1.7; color: #e2e2e6; margin-bottom: 35px; }
.hero-cta-group a { padding: 15px 30px; font-size: 12px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; border-radius: 0px; display: inline-block; margin-right: 15px; }
.btn-luxury-dark { background: var(--luxury-gold); color: var(--luxury-dark); }
.btn-luxury-dark:hover { background: #ffffff; color: var(--luxury-dark); }
.btn-luxury-light { border: 1px solid #ffffff; color: #ffffff; }
.btn-luxury-light:hover { background: #ffffff; color: var(--luxury-dark); }

/* --- PROMO SECTION BANNERS --- */
.collection-promo-section { padding: 80px 6%; background: #ffffff; }
.promo-grid { display: flex; gap: 30px; }
.promo-card { flex: 1; height: 450px; display: flex; align-items: flex-end; padding: 40px; position: relative; background-size: cover; background-position: center; }
.spec-1 { background-image: linear-gradient(transparent, rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1594932224828-94e005ca7965?q=80&w=800'); }
.spec-2 { background-image: linear-gradient(transparent, rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=800'); }
.promo-meta { color: #ffffff; }
.promo-meta h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 10px; font-weight: 400; }
.promo-meta p { font-size: 13px; font-weight: 300; color: #ccc; margin-bottom: 15px; }
.underline-link { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--luxury-gold); border-bottom: 1px solid var(--luxury-gold); padding-bottom: 4px; }

/* --- HOW IT WORKS GRID --- */
.experience-flow { padding: 80px 6%; background: var(--luxury-light); }
.section-header-centered { text-align: center; max-width: 500px; margin: 0 auto 50px; }
.section-header-centered h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; margin-bottom: 15px; }
.section-header-centered p { color: var(--text-muted); }
.flow-container { display: flex; gap: 40px; }
.flow-step { flex: 1; background: #ffffff; padding: 45px 35px; border: 1px solid var(--luxury-border); position: relative; }
.step-num { font-family: 'Playfair Display', serif; font-size: 48px; color: #ececed; display: block; line-height: 1; margin-bottom: 15px; font-weight: 600; }
.flow-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.flow-step p { color: var(--text-muted); line-height: 1.6; font-size: 13px; }

/* STORE SYSTEM GENERIC STYLES */
.store-container { padding: 60px 6%; }
.product-grid-view { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }
.product-retail-card { border: 1px solid var(--luxury-border); background: #fff; padding: 15px; text-align: center; transition: 0.3s; }
.product-retail-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.product-retail-card img { width: 100%; height: 280px; object-fit: cover; margin-bottom: 15px; }
.product-retail-card h4 { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.price-tag { color: var(--luxury-gold); font-weight: 600; font-size: 15px; }

footer { background: var(--luxury-dark); color: #666; text-align: center; padding: 40px 20px; font-size: 12px; border-top: 1px solid #222; letter-spacing: 0.5px; }