:root {
    --bg-color: #000000;
    --bento-bg: #0c0c0c;
    --bento-border: #1f1f1f;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --gold-primary: #D4AF37;
    --gold-hover: #F3E5AB;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    padding: 24px;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

/* Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 0 12px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-btn {
    color: var(--bg-color);
    background-color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--gold-primary);
}

/* Bento Grid */
.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-card {
    background-color: var(--bento-bg);
    border: 1px solid var(--bento-border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Hero Card */
.hero-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

@media (min-width: 768px) {
    .hero-card {
        flex-direction: row;
        align-items: center;
    }
    .hero-content {
        max-width: 50%;
    }
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.badge {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-graphic {
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Product Grid inside Bento Container */
.product-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .product-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.youtube-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #000;
    border: 1px solid var(--bento-border);
}

.youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold-primary);
    white-space: nowrap;
    margin-left: 12px;
}

.price-subtext {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: right;
}

.product-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Buttons */
.btn-outline-gold {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--bg-color);
}

.btn-solid-gold {
    display: inline-block;
    padding: 14px 24px;
    background: var(--gold-primary);
    color: var(--bg-color);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-solid-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* Utility */
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; text-align: center; }

/* Footer Card */
.footer-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-info h3 {
    margin-bottom: 16px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-meta {
        text-align: right;
    }
}

.legal-links {
    display: flex;
    gap: 16px;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 400px;
    width: 100%;
    position: relative;
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid var(--bento-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
}
