:root {
    --gold: #d4af37;
    --gold-dark: #b5952f;
    --bg-main: #0a0a0a;
    --bg-card: rgba(30, 30, 30, 0.6);
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

.luxury-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 0%, #2a220c 0%, #0a0a0a 60%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}
.wa-nav {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero */
.hero { padding: 80px 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.gold-badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.price-box {
    margin-bottom: 30px;
}
.mrp { font-size: 2.5rem; font-family: var(--font-heading); color: var(--gold); font-weight: 700; }
.weight { color: var(--text-muted); font-size: 1.2rem; margin-left: 10px; }

.action-buttons {
    display: flex;
    gap: 20px;
}
.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: #fff;
}
.btn-outline:hover { border-color: #25d366; color: #25d366; }

.hero-image { position: relative; }
.image-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: var(--gold);
    filter: blur(80px);
    opacity: 0.15;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.product-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: block;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Sections */
.details-section, .checkout-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 15px auto 0; }

.box-glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.details-grid h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 25px; color: #fff; }

.ingredient-list { list-style: none; display: grid; gap: 15px; }
.ingredient-list li { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; color: var(--text-muted); }
.ingredient-list i { color: var(--gold); }

.usage-item { display: flex; gap: 20px; margin-bottom: 30px; }
.gold-icon {
    width: 50px; height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
}
.usage-item h4 { font-size: 1.2rem; margin-bottom: 5px; }
.usage-item p { color: var(--text-muted); }

/* Form */
.checkout-box { max-width: 800px; margin: 0 auto; border-top: 3px solid var(--gold); }
.checkout-header { text-align: center; margin-bottom: 40px; }
.checkout-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); margin-bottom: 10px; }

.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.input-group.full-width { grid-column: 1 / -1; }
.input-group label { display: block; margin-bottom: 8px; color: #ccc; font-weight: 500; }
.input-group input, .input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.8); }

.submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000; font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 700;
    padding: 18px; border: none; border-radius: 8px;
    cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { background: #e0bb40; transform: translateY(-2px); }

.alert {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid #25d366;
    color: #25d366;
    padding: 15px; border-radius: 8px;
    margin-bottom: 30px; text-align: center; font-weight: 500;
}

footer { text-align: center; padding: 30px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .details-grid, .order-form { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .action-buttons { justify-content: center; flex-direction: column; }
    .hero-text h1 { font-size: 2.8rem; }
    .price-box { justify-content: center; display: flex; }
}
