:root {
    --primary-red: #8b0000;
    --primary-red-hover: #5c0000;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    --dark-custom: #1a110a;
    --dark-brown: #3e2723;
    --cream: #fdfaf6;
    --cream-dark: #f5eedf;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-brown);
}

.text-primary-red { color: var(--primary-red) !important; }
.text-gold { color: var(--gold) !important; }
.text-dark-brown { color: var(--dark-brown) !important; }
.bg-dark-custom { background-color: var(--dark-custom) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-cream-dark { background-color: var(--cream-dark) !important; }
.bg-primary-red { background-color: var(--primary-red) !important; }
.bg-gradient-cream { background: linear-gradient(to bottom, #fdfaf6 0%, #f5eedf 100%) !important; }

.btn-primary-red {
    background: linear-gradient(to bottom, #a01010 0%, #600000 100%);
    border: 1px solid #4a0000;
    color: white;
}
.btn-primary-red:hover {
    background: linear-gradient(to bottom, #7a0000 0%, #400000 100%);
    color: white;
}

.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    padding-bottom: 0.35rem;
    letter-spacing: 0.5px;
}
.nav-link.active {
    color: var(--gold) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.hero-section {
    background: radial-gradient(ellipse at center, #ffffff 0%, #ecdcb9 100%);
    min-height: 550px;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

.fs-7 { font-size: 0.9rem; }

.categories-section {
    background: linear-gradient(to bottom, #fdfbf7 0%, #f3e8d2 100%);
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.bg-gold-banner {
    background: linear-gradient(90deg, #e4c995 0%, #c19b52 50%, #e4c995 100%);
}

.text-pink { color: #e895c1; }

.border-gold { border-color: var(--gold) !important; }
.border-gold-light { border-color: var(--gold-light) !important; }
.border-gold-dark { border-color: rgba(212, 175, 55, 0.3) !important; }

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(212, 175, 55, 0.3) !important;
    }
}

.footer {
    background: linear-gradient(to bottom, #2d1d11 0%, #000000 100%);
}
