:root {
    --bg-black: #050505; --card-bg: #0f0f0f;
    --gold: #FFD700; --gold-light: #FFF8DC; --gold-dark: #B8860B;
    --text-main: #F5F5F5; --text-muted: #AAAAAA;
    --border-gold: rgba(255, 215, 0, 0.4);
    --accent-red: #FF4500;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-black); color: var(--text-main); font-family: 'Playfair Display', serif; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold); z-index: 1000;
    display: flex; justify-content: space-between; align-items: center; padding: 15px 40px;
}
.header-logo img { height: 55px; width: auto; }
nav a { margin-left: 25px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-main); transition: 0.3s; }
nav a:hover { color: var(--gold); }

.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0;
    background-color: rgba(5, 5, 5, 0.98); min-width: 220px;
    border: 1px solid var(--border-gold); border-top: none; z-index: 1001;
}
.dropdown-content a { padding: 15px 20px; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-content a:hover { background-color: #111; color: var(--gold); }
.dropdown:hover .dropdown-content { display: block; }

.btn-gold {
    display: inline-block; padding: 14px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    font-size: 13px; border: none; cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); transition: 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }

.hero-slider {
    height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px;
    background-size: cover; background-position: center;
    animation: bgSlide 12s infinite;
}
@keyframes bgSlide {
    0%, 45% { background-image: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9)), url('../img/slider1.jpg'); }
    50%, 100% { background-image: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9)), url('../img/slider2.jpg'); }
}

.hero-slider h1 { font-size: 50px; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 5px; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.hero-slider p { font-size: 18px; color: var(--text-muted); max-width: 750px; margin-bottom: 40px; font-family: Arial; }

.blinking-badge {
    background: rgba(255, 69, 0, 0.15); border: 1px solid var(--accent-red); padding: 12px 28px;
    font-size: 14px; letter-spacing: 3px; color: #ff8c66; margin-bottom: 30px;
    text-transform: uppercase; font-weight: bold; animation: pulseGlow 1.5s infinite alternate;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255,69,0,0.2); border-color: rgba(255,69,0,0.4); }
    100% { box-shadow: 0 0 25px rgba(255,69,0,0.8); border-color: #FF4500; }
}

.badge-gold-text { color: #FFD700; font-weight: bold; }
.badge-silver-text { color: #C0C0C0; font-weight: bold; }
.badge-stock-red { color: #FF4500; font-weight: bold; }

section { padding: 100px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.section-title { text-align: center; font-size: 38px; color: var(--gold); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 3px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 60px; font-family: Arial; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.product-card { background: var(--card-bg); border: 1px solid var(--border-gold); padding: 40px; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255,215,0,0.15); }
.product-card h3 { font-size: 28px; color: var(--gold); margin-bottom: 10px; }
.product-price { font-size: 26px; color: #fff; margin-bottom: 20px; font-weight: bold; }
.product-features { list-style: none; margin-bottom: 30px; font-family: Arial; font-size: 14px; color: var(--text-muted); }
.product-features li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.product-features li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

footer { padding: 60px 0; text-align: center; background: #030303; border-top: 1px solid var(--border-gold); font-size: 14px; color: var(--text-muted); line-height: 2; }
footer a { color: var(--gold); }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25D366; color: white;
    border-radius: 50px; padding: 12px 25px;
    font-family: Arial; font-weight: bold; font-size: 15px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(37, 211, 102, 0.7); }


/* --- Mobile Responsive Enhancements --- */
@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
        position: relative;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    nav a, .dropdown {
        margin-left: 0 !important;
        font-size: 11px;
        letter-spacing: 1px;
    }
    .hero-slider h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .hero-slider p {
        font-size: 14px;
    }
    .blinking-badge {
        font-size: 11px;
        padding: 8px 15px;
        letter-spacing: 1px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        padding: 20px;
    }
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}