:root {
    --dark: #2b0a05;
    --gold: #d4a017;
    --gold-light: #f4d078;
    --cream: #fdfaf5;
    --white: #ffffff;
    --text-muted: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 160, 23, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll Progress */
#progress {
    position: fixed;
    top: 0;
    height: 3px;
    background: var(--gold);
    width: 0;
    z-index: 1000;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 900;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img { width: 35px; }
.logo span {
    font-size: 18px;
    letter-spacing: 1px;
}
.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}
.menu a:hover { color: var(--gold); }
.nav-cta {
    border: 1px solid var(--gold);
    padding: 8px 18px;
    border-radius: 4px;
}

/* Hero Section (No Background Image) */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dark);
    color: var(--white);
    padding: 0 20px;
}
.hero-inner { max-width: 800px; }
.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 25px;
}
.text-gold { color: var(--gold); }
.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 600px;
    margin-inline: auto;
}
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.3); color: white; }
.btn-secondary:hover { background: white; color: var(--dark); }

/* General Sections */
.section { padding: 100px 25px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-subtitle { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; }
.title { font-family: 'Playfair Display'; font-size: 42px; margin-top: 10px; margin-bottom: 50px; }

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.card-img img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 30px; }
.card-body h3 { margin-top: 0; font-family: 'Playfair Display'; font-size: 24px; }
.card-body p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.card-link { color: var(--gold); font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }

/* About Section */
.about { background: var(--dark); color: white; padding: 100px 25px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img { width: 100%; max-width: 400px; filter: grayscale(0.2); }
.about-text h2 { font-family: 'Playfair Display'; font-size: 36px; margin: 15px 0; }
.about-text p { color: #aaa; margin-bottom: 20px; }

/* Contact Section */
.bg-light { background: #f9f9f9; text-align: center; }
.contact-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.contact-item small { color: var(--gold); text-transform: uppercase; font-weight: 700; }
.contact-item p { font-size: 20px; font-weight: 500; margin-top: 5px; }

/* Footer */
footer {
    padding: 40px 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* Mobile Optimization */
@media (max-width: 768px) {
    .menu { display: none; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 40px; }
    .hero-btns { flex-direction: column; }
}