
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #070708;
    --surface-dark: #111113;
    --card-dark: #18181c;
    --gold-accent: #D4AF37;
    --gold-light: #FBF5B7;
    --red-accent: #b81d1d;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --border-subtle: rgba(212, 175, 55, 0.2);
    --font-head: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* Navbar */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(7, 7, 8, 0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo-box { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo-icon {
    width: 42px; height: 42px; border: 2px solid var(--gold-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #000;
}
.logo-text h1 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 2px; color: var(--gold-accent); line-height: 1; }
.logo-text span { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-light); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-accent); }

.btn-cart-trigger {
    background: rgba(212, 175, 55, 0.12); border: 1px solid var(--gold-accent);
    color: var(--gold-light); padding: 8px 16px; border-radius: 4px;
    cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.cart-badge {
    background: var(--red-accent); color: #fff; font-size: 0.75rem;
    width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Sections & Layout */
.section-padding { padding: 6rem 1.5rem; }
.bg-surface { background-color: var(--surface-dark); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--gold-accent); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.gold-subtitle { color: var(--gold-accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 2px; display: block; margin-bottom: 0.5rem; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

/* Video Widget Portrait Aspect Ratio */
.video-widget {
    position: relative;
    background: var(--card-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.15);
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    padding: 1.5rem;
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.video-placeholder:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

/* Cards */
.feature-card {
    background: var(--card-dark); border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem; border-radius: 8px; transition: transform 0.3s;
}
.feature-card:hover { border-color: var(--gold-accent); transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; color: var(--gold-accent); margin-bottom: 1.5rem; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 1rem; color: #fff; }

/* Buttons */
.btn-primary {
    background: var(--gold-accent); color: #000; border: none; padding: 14px 28px;
    border-radius: 4px; font-weight: 700; cursor: pointer; display: inline-flex;
    align-items: center; gap: 8px; text-decoration: none; transition: background 0.3s;
}
.btn-primary:hover { background: #fff; }

/* Footer */
footer { background: #040405; border-top: 1px solid var(--border-subtle); padding: 4rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--gold-accent); margin-bottom: 1.2rem; font-size: 1rem; }
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.6rem; list-style: none; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }

/* Cart Drawer */
.cart-drawer {
    position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px; height: 100vh;
    background: #0b0b0d; border-left: 1px solid var(--border-subtle); z-index: 2000;
    box-shadow: -15px 0 40px rgba(0,0,0,0.8); transition: right 0.4s ease; padding: 2rem; display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 1999; display: none; }
.cart-overlay.active { display: block; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.cart-header h3 { font-family: var(--font-head); color: var(--gold-accent); }
.close-drawer { background: none; border: none; color: var(--text-muted); font-size: 1.6rem; cursor: pointer; }
.cart-list { flex-grow: 1; overflow-y: auto; }
.cart-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 1rem; border-radius: 6px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.cart-item h4 { font-size: 0.95rem; color: #fff; }
.cart-item span { font-size: 0.8rem; color: var(--gold-accent); }
.btn-remove { background: none; border: none; color: var(--red-accent); cursor: pointer; font-size: 1.2rem;}
.btn-submit-wa { background: #25D366; color: white; text-align: center; padding: 14px; border-radius: 4px; font-weight: 700; text-decoration: none; display: flex; justify-content: center; gap: 10px; margin-top: auto; }
.empty-text { color: var(--text-muted); text-align: center; margin-top: 3rem; }

/* Floating WA */
.wa-floating { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; padding: 14px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 10px 25px rgba(37,211,102,0.4); z-index: 999; }

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
