:root {
    --maroon: #6B1D1D;
    --maroon-dark: #4A1212;
    --gold: #C9A227;
    --gold-light: #E8C547;
    --cream: #FFF8E7;
    --cream-dark: #F5E6C8;
    --turmeric: #E8A317;
    --green: #1B4332;
    --green-light: #2D6A4F;
    --text-dark: #2C1810;
}

* { box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
}

h1, h2, h3, h4, h5, .brand-text, .section-title {
    font-family: 'Cormorant Garamond', serif;
}

.text-gold { color: var(--gold) !important; }
.text-cream-muted { color: rgba(255,248,231,0.75); }
.bg-maroon { background-color: var(--maroon) !important; }
.bg-green { background-color: var(--green) !important; }

.btn-maroon {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}
.btn-maroon:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--turmeric));
    border: none;
    color: var(--maroon-dark);
    font-weight: 600;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-dark);
}

.btn-outline-maroon {
    border-color: var(--maroon);
    color: var(--maroon);
}
.btn-outline-maroon:hover {
    background: var(--maroon);
    color: #fff;
}

/* Navbar */
.site-navbar {
    background: linear-gradient(90deg, var(--maroon-dark), var(--maroon));
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}
.brand-logo { border-radius: 50%; object-fit: cover; }
.navbar-dark .nav-link { color: rgba(255,255,255,0.9); font-weight: 500; }
.navbar-dark .nav-link:hover { color: var(--gold-light); }
.cart-badge {
    position: absolute;
    top: -2px;
    right: -8px;
    background: var(--turmeric);
    color: var(--maroon-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 40%, var(--green) 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.1;
}
.hero-subtitle { font-size: 1.15rem; opacity: 0.9; max-width: 540px; }
.hero-badge {
    display: inline-block;
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Sections */
.section-title {
    font-size: 2.25rem;
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-subtitle { color: #666; margin-bottom: 2rem; }

/* Category cards */
.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(107,29,29,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107,29,29,0.15);
    border-color: var(--gold);
    color: inherit;
}
.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--maroon);
    margin: 0 auto 1rem;
}

/* Product cards */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(201,162,39,0.2);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(107,29,29,0.12);
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.product-card-body { padding: 1.25rem; }
.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    font-weight: 600;
}
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 0.25rem 0;
}
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--turmeric);
}

/* Offer banner */
.offer-banner {
    background: linear-gradient(90deg, var(--turmeric), var(--gold));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--maroon-dark);
}
.offer-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
}

/* Footer */
.site-footer {
    background: var(--green);
    color: var(--cream);
}
.site-footer .footer-top {
    background: var(--green);
}
.footer-title {
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1rem;
}
.site-footer .text-cream-muted {
    color: rgba(255, 248, 231, 0.75);
}
.site-footer .text-gold {
    color: var(--gold) !important;
}
.footer-links a {
    color: rgba(255, 248, 231, 0.85);
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--gold-light);
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.site-footer p,
.site-footer .small:not(.text-muted) {
    color: rgba(255, 248, 231, 0.85);
}
.footer-bottom {
    background: var(--maroon-dark);
    color: rgba(255, 248, 231, 0.65);
    border-top: 1px solid rgba(201, 162, 39, 0.25);
}
.footer-bottom small {
    color: rgba(255, 248, 231, 0.65);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Product detail */
.product-gallery img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.variant-btn {
    border: 2px solid var(--cream-dark);
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.variant-btn.active, .variant-btn:hover {
    border-color: var(--maroon);
    background: var(--cream);
    color: var(--maroon);
    font-weight: 600;
}

/* Cart & Checkout */
.cart-table img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.order-summary {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--cream-dark);
    position: sticky;
    top: 100px;
}
.breadcrumb-nav {
    background: var(--cream-dark);
    padding: 0.75rem 0;
}

/* Track order */
.status-timeline .step {
    padding: 1rem;
    border-left: 3px solid var(--cream-dark);
    margin-left: 1rem;
    position: relative;
}
.status-timeline .step.active { border-color: var(--gold); }
.status-timeline .step.done { border-color: var(--green); }
.status-timeline .step::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--cream-dark);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 1.25rem;
}
.status-timeline .step.active::before { background: var(--gold); }
.status-timeline .step.done::before { background: var(--green); }

@media (max-width: 768px) {
    .hero-section { padding: 3rem 0; }
    .order-summary { position: static; margin-top: 1.5rem; }
}
