:root {
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --neon-green: #39ff14;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif; /* Setup in header */
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, #b8860b, var(--gold), #b8860b);
    color: #000;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(45deg, var(--gold), #ffd700, var(--gold));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-silver {
    border: 1px solid var(--silver);
    color: var(--silver);
    transition: all 0.3s;
}

.btn-outline-silver:hover {
    background: var(--silver);
    color: #000;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

/* Navbar */
.navbar {
    background-color: rgba(15, 15, 15, 0.95) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold) !important;
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Footer */
footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 3rem 0;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold);
}

/* Utilities */
.text-gold { color: var(--gold) !important; }
.text-silver { color: var(--silver) !important; }
.bg-card { background-color: var(--card-bg); }
.border-gold { border-color: var(--gold) !important; }

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.text-muted2 {color:#ffffff;}
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
#hero-video2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    
}
.hero-content2{
    position: relative;
    z-index: 2;
    text-align: center;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Price Widget */
.price-widget {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.price-item {
    border-bottom: 1px solid #333;
    padding: 0.5rem 0;
}

.price-item:last-child { border-bottom: none; }

.price-up { color: var(--neon-green); }
.price-down { color: red; }

/* Shop Cards */
.product-card {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}
