/* --- PREMIUM DESIGN SYSTEM & CSS VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --gold-primary: #B76E79; /* Rose Gold */
    --gold-glow: rgba(183, 110, 121, 0.4);
    --gold-dim: #8C4A55;
    --purple-deep: #1A0820;
    --purple-vibrant: #5B2167;
    --black-base: #050505;
    --black-surface: #101010;
    --black-surface-light: #181818;
    --text-primary: #F5F1E8;
    --text-muted: #A0A0A0;
    
    --glass-bg: rgba(16, 16, 16, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.4);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- GLOBAL RESET & SCROLL OPTIMIZATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    background-color: var(--black-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    line-height: 1.6;
}

::selection {
    background: var(--gold-glow);
    color: var(--text-primary);
}

/* --- TYPOGRAPHY & HEADINGS --- */
.section-padding {
    padding: 100px 6% 80px 6%;
}

.heading-container {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 5%;
}

.heading-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1.3;
    font-weight: 600;
}

.heading-container h2 span { 
    color: var(--gold-primary); 
    display: inline-block;
    position: relative;
}

.heading-container h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.heading-container::after {
    content: '✦';
    display: block;
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-top: 15px;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); text-shadow: 0 0 0 var(--gold-glow); }
    50% { opacity: 1; transform: scale(1.1); text-shadow: 0 0 15px var(--gold-glow); }
}

/* --- GLASSMORPHISM NAVBAR --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 6%;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 15px 6%;
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo span { 
    color: var(--gold-primary); 
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 400;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a:hover { color: var(--gold-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-nav {
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-icon-nav:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--gold-primary);
    color: var(--black-base);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(212,175,55,0.5);
}

.menu-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 6% 60px 6%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.8) 70%, var(--black-base) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero h1 span {
    color: var(--gold-primary);
    display: block;
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-top: 15px;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black-base);
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: #FFE285;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { box-shadow: 0 15px 30px rgba(212,175,55,0.4); transform: translateY(-3px); }

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}


/* --- HORIZONTAL TABS --- */
.product-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 10px 5% 25px 5%;
    margin-bottom: 30px;
    scrollbar-width: none;
}
.product-tabs-wrapper::-webkit-scrollbar { display: none; }

.product-tabs {
    display: flex;
    gap: 15px;
    width: max-content;
    margin: 0 auto;
}

.tab-btn {
    background: var(--black-surface);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold-primary);
    color: var(--black-base);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 15px var(--gold-glow);
}

/* --- PREMIUM PRODUCT GRID --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.1);
}

.product-gallery {
    position: relative;
    width: 100%;
    height: 280px;
    background: radial-gradient(circle at center, var(--purple-deep) 0%, var(--black-surface) 100%);
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.image-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- FIXED IMAGE DISPLAY LAYER --- */
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    opacity: 1; /* Shows the image automatically without waiting for delayed JS flags */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mystical-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold-primary);
    opacity: 0.6;
    z-index: 1; /* Sets fallback directly behind the visible product layer */
    transition: var(--transition-fast);
}

.product-card:hover .mystical-fallback {
    opacity: 1;
    transform: scale(1.05);
}

.mystical-fallback i { font-size: 3rem; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.mystical-fallback span { font-size: 0.75rem; font-family: var(--font-heading); letter-spacing: 2px; }

.view-overlay-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--gold-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 15;
    backdrop-filter: blur(4px);
}

.product-gallery:hover .view-overlay-hint { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1);
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-weight: 300;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px dashed rgba(255,255,255,0.1);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.new-price {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.buy-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.buy-btn:hover { 
    background: var(--gold-primary); 
    color: var(--black-base); 
    box-shadow: 0 5px 15px var(--gold-glow);
}

/* --- CONSULTATION TIER PLANS --- */
.consultation { 
    background: radial-gradient(circle at top, var(--black-surface-light) 0%, var(--black-base) 100%); 
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214,175,55,0.2), transparent);
}

.consultation-container { max-width: 1000px; margin: 0 auto; }
.consultation-p { 
    font-size: 1rem; 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.tier-card {
    background: var(--black-surface);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: var(--transition-smooth);
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.1);
}

.tier-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tier-time {
    font-size: 0.8rem;
    color: var(--gold-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-card.featured { 
    border-color: var(--gold-dim); 
    background: linear-gradient(180deg, rgba(91, 33, 103, 0.2) 0%, var(--black-surface) 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--gold-primary);
}

.tier-badge {
    position: absolute;
    top: 15px; right: -35px;
    background: var(--gold-primary); color: var(--black-base);
    font-size: 0.7rem; font-weight: 700;
    padding: 5px 40px; transform: rotate(45deg);
    letter-spacing: 2px;
    box-shadow: 0 2px 10px var(--gold-glow);
}

.tier-price { 
    font-size: 2.5rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin: 20px 0 30px 0; 
    font-family: var(--font-body); 
}

.tier-btn {
    background: transparent; 
    border: 1px solid var(--text-muted); 
    color: var(--text-primary);
    width: 100%; 
    padding: 14px; 
    border-radius: 6px; 
    font-family: var(--font-heading); 
    font-size: 0.85rem; 
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.tier-btn:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.tier-card.featured .tier-btn { 
    background: var(--gold-primary); 
    border-color: var(--gold-primary); 
    color: var(--black-base); 
    font-weight: 600; 
}

.tier-card.featured .tier-btn:hover {
    background: #FFE285;
}

/* --- TESTIMONIALS --- */
.testimonials { background: var(--black-base); position: relative; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(214,175,55,0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.stars { color: var(--gold-primary); font-size: 0.9rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 30px; }
.reviewer { display: flex; align-items: center; gap: 15px; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 20px; }
.reviewer-avatar { width: 45px; height: 45px; border-radius: 50%; background: rgba(214,175,55,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 1.2rem; }
.reviewer-info h4 { font-family: var(--font-heading); color: var(--text-primary); font-size: 1rem; margin-bottom: 3px; }
.reviewer-info span { font-size: 0.75rem; color: var(--gold-dim); letter-spacing: 1px; text-transform: uppercase; }

/* --- FAQ COMPONENT --- */
.faq { background: var(--black-base); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { 
    background: var(--black-surface); 
    border: 1px solid rgba(255,255,255,0.05); 
    border-radius: 8px; 
    margin-bottom: 15px; 
    overflow: hidden; 
    transition: var(--transition-fast);
}

.faq-item:hover { border-color: rgba(214,175,55,0.3); }

.faq-header { 
    padding: 20px 25px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
}

.faq-header h4 { 
    font-size: 1rem; 
    font-weight: 400; 
    color: var(--text-primary); 
    text-align: left; 
    padding-right: 20px; 
}

.faq-icon { 
    color: var(--gold-primary); 
    font-size: 1rem; 
    transition: var(--transition-smooth); 
}

.faq-body { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out; 
}

.faq-body p { 
    padding: 0 25px 25px 25px; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    text-align: left; 
    font-weight: 300;
}

.faq-item.active {
    border-color: var(--gold-primary);
    background: rgba(214,175,55,0.03);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

/* --- LUXURY EMBED WEB FORMS --- */
.forms-section { 
    background: linear-gradient(180deg, var(--black-base) 0%, var(--black-surface) 100%); 
    text-align: center; 
}

.premium-form-box {
    max-width: 650px; 
    margin: 0 auto 50px auto;
    background: rgba(18, 18, 18, 0.6); 
    padding: 40px;
    border-radius: 12px; 
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.premium-form-box h3 { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    margin-bottom: 15px; 
    color: var(--text-primary); 
    letter-spacing: 1px;
}

.premium-form-box p { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    margin-bottom: 30px; 
    font-weight: 300;
}
        
.luxury-input-group { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    width: 100%; 
}

.luxury-field {
    width: 100%; 
    background: rgba(5,5,5,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px; 
    color: var(--text-primary);
    border-radius: 6px; 
    font-family: var(--font-body); 
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.luxury-field::placeholder { color: #666; }

.luxury-field:focus { 
    outline: none; 
    border-color: var(--gold-primary); 
    background: rgba(10,10,10,0.8);
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
}
        
.luxury-submit-btn {
    background: var(--gold-primary); 
    color: var(--black-base); 
    border: none;
    padding: 16px; 
    border-radius: 6px; 
    font-family: var(--font-heading);
    font-weight: 600; 
    font-size: 0.95rem; 
    cursor: pointer; 
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.luxury-submit-btn:hover {
    background: #FFE285;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

/* --- FOOTER MAIN GRID --- */
footer { 
    border-top: 1px solid rgba(214,175,55,0.2); 
    padding: 80px 8% 30px 8%; 
    background: #030303; 
    position: relative;
}

.footer-main-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 60px; 
    margin-bottom: 60px; 
    text-align: left; 
}

.footer-brand h4 { 
    font-family: var(--font-heading); 
    color: var(--text-primary); 
    font-size: 1.4rem; 
    margin-bottom: 20px; 
    letter-spacing: 2px;
}

.footer-brand p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    max-width: 400px; 
    line-height: 1.8;
    font-weight: 300;
}

.footer-col h5 { 
    font-family: var(--font-heading); 
    color: var(--gold-primary); 
    font-size: 1.1rem; 
    margin-bottom: 25px; 
    letter-spacing: 1px;
}

.footer-col ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.footer-col a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: var(--transition-fast); 
    font-weight: 300;
}

.footer-col a:hover { 
    color: var(--gold-primary); 
    padding-left: 8px; 
}
        
.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
    font-size: 0.8rem; 
    color: #606060; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 30px; 
}

.credit-link { 
    color: var(--gold-dim); 
    text-decoration: none; 
    font-weight: 400; 
    transition: var(--transition-fast);
}

.credit-link:hover { 
    color: var(--gold-primary); 
}

/* --- CART DRAW DRAWER SYSTEM --- */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 199999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 450px; height: 100vh;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 50px rgba(0,0,0,0.8); z-index: 200000;
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-header { 
    padding: 30px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.cart-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.cart-items-container { 
    flex-grow: 1; 
    padding: 30px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.cart-items-container::-webkit-scrollbar {
    width: 6px;
}
.cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(214,175,55,0.3);
    border-radius: 10px;
}

.cart-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px; 
    border-radius: 8px; 
    font-size: 0.9rem; 
}

.cart-item h4 {
    font-weight: 500;
    margin-bottom: 5px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.quantity-btn {
    cursor: pointer;
    color: var(--gold-primary);
    font-weight: bold;
    width: 20px;
    text-align: center;
    user-select: none;
}

.empty-cart-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 50px;
    font-weight: 300;
}

.cart-footer { 
    padding: 30px; 
    background: rgba(10,10,10,0.9); 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

.checkout-btn { 
    width: 100%; 
    background: var(--gold-primary); 
    color: var(--black-base); 
    border: none; 
    padding: 18px; 
    font-family: var(--font-heading); 
    font-size: 1rem;
    font-weight: 600; 
    cursor: pointer; 
    border-radius: 6px; 
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.checkout-btn:hover {
    background: #FFE285;
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 300000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox-content { 
    max-width: 90%; max-height: 85vh; 
    border-radius: 8px; 
    border: 1px solid var(--glass-border); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(212,175,55,0.2); 
    object-fit: contain; 
}
.close-lightbox { 
    position: absolute; top: 30px; right: 40px; 
    color: var(--gold-primary); font-size: 2.5rem; 
    cursor: pointer; transition: var(--transition-fast);
}

.close-lightbox:hover { transform: scale(1.1); color: #FFE285; }

.whatsapp-float { 
    position: fixed; bottom: 30px; right: 30px; 
    background-color: #25D366; color: white; 
    width: 60px; height: 60px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.5); z-index: 999; 
    text-decoration: none; transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- SALES TOAST NOTIFICATION --- */
.sales-toast {
    position: fixed;
    bottom: 30px;
    left: -100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold-primary);
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100000;
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 320px;
}

.sales-toast.show {
    left: 20px;
}

.toast-icon { 
    color: var(--gold-primary); 
    font-size: 1.5rem; 
}

.toast-content p { 
    color: var(--white); 
    font-size: 0.85rem; 
    margin-bottom: 4px; 
    line-height: 1.3; 
    font-weight: 300;
}

.toast-content p strong { 
    color: var(--gold-primary); 
    font-weight: 600;
}

.toast-time { 
    color: #888; 
    font-size: 0.7rem; 
}

@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: rgba(15,15,15,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 40px 30px;
        gap: 25px;
        box-shadow: -10px 10px 40px rgba(0,0,0,0.8);
        border-left: 1px solid var(--glass-border);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links.mobile-open { right: 0; }
    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .footer-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 5% 50px 5%; }
    .hero { padding-top: 140px; }
    .tier-card.featured { transform: none; }
    .tier-card.featured:hover { transform: translateY(-5px); }
    .sales-toast { bottom: 100px; max-width: 280px; }
}
