:root {
    --sindhoor: #E87722;
    --sandhya-gold: #F59E0B;
    --glow: rgba(232, 119, 34, 0.15);
    --slate-50: #FFFCFA;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--slate-50);
    color: var(--sindhoor);
    overflow-x: hidden;
}

/* NAVIGATION */
.navbar {
    padding: 15px 60px;
    background-color: var(--sindhoor);
}

.logo-link {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 1.5rem;
    color: #FFFFFF !important;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-btn {
    background-color: white;
    color: var(--sindhoor);
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* HERO & MANTRA */
.hero-section {
    padding: 160px 60px 60px;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
}

.hero-title {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.mantra-box {
    background: linear-gradient(90deg, #FFF6F0 0%, #FFFFFF 100%);
    border-left: 6px solid var(--sindhoor);
    padding: 30px;
    border-radius: 0 24px 24px 0;
    margin-bottom: 40px;
}

/* SHOPPING ELEMENTS */
.shop-card {
    background: white;
    border: 1px solid var(--glow);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

    .shop-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--glow);
    }

.shop-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sindhoor);
}

/* SHARED UTILS */
.shiva-image-container {
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid var(--sandhya-gold);
    box-shadow: 0 40px 80px rgba(232, 119, 34, 0.2);
    position: relative;
}

.btn-sacred {
    background: var(--sindhoor);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-sacred:hover {
        background: #d1661b;
        color: white;
        transform: scale(1.05);
    }

#audio-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--sindhoor);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    border: 2px solid var(--sandhya-gold);
    cursor: pointer;
}

.footer-card-container {
    padding: 40px 60px;
}

.footer-card {
    background-color: var(--sindhoor);
    border-radius: 20px;
    padding: 20px;
    color: white;
    text-align: center;
}
