/*
  futuristic.css — Premium Light Theme Override
  Sivakasi Crackers — Clean, Warm, Professional
*/

:root {
    --svk-neon-primary: #e63012;
    --svk-neon-secondary: #f59e0b;
    --svk-neon-accent: #0ea5e9;
    --svk-light-bg: #fffdf9;
    --svk-card-bg: #ffffff;
    --svk-border: rgba(0, 0, 0, 0.07);
    --svk-text-main: #1e293b;
    --svk-text-muted: #64748b;
    --svk-shadow-light: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ── Body ─────────────────────────────────────────────────── */
body.futuristic-theme {
    background-color: var(--svk-light-bg);
    color: var(--svk-text-main);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(230, 48, 18, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    font-family: 'Poppins', sans-serif;
}

/* ── Header ───────────────────────────────────────────────── */
.glass-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto !important;
    padding: 0.75rem 5% !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.glass-header .logo a {
    background: linear-gradient(135deg, #e63012, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-spark {
    font-size: 1.35rem;
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
        filter: drop-shadow(0 0 4px #f59e0b);
    }
}

.glass-header #mainNav ul li a {
    color: #334155;
    transition: all 0.22s ease;
}

.glass-header #mainNav ul li a:hover,
.glass-header #mainNav ul li a.active {
    color: #e63012 !important;
    background: rgba(230, 48, 18, 0.07) !important;
    text-shadow: none !important;
}

/* Header Actions & Desktop Auth */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.glass-header .svk-nav-cart-icon {
    color: #1e293b !important;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.25s ease;
    margin: 0;
}

.glass-header .svk-nav-cart-icon:hover {
    background: rgba(230, 48, 18, 0.08) !important;
    border-color: rgba(230, 48, 18, 0.2);
    color: #e63012 !important;
    transform: translateY(-1px);
}

.glass-header .svk-cart-badge {
    background: linear-gradient(135deg, #e63012, #f59e0b) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    top: -2px !important;
    right: -2px !important;
    font-size: 0.65rem !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 4px !important;
    box-shadow: 0 2px 6px rgba(230, 48, 18, 0.3);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-auth-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.desktop-auth-group a {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.desktop-auth-group .nav-login-btn {
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
}

.desktop-auth-group .nav-login-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.desktop-auth-group .nav-register-btn {
    background: linear-gradient(135deg, #e63012, #f59e0b);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(230, 48, 18, 0.2);
}

.desktop-auth-group .nav-register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230, 48, 18, 0.3);
}

.desktop-auth-group .nav-dash-btn {
    background: rgba(230, 48, 18, 0.05);
    color: #e63012;
    border: 1px solid rgba(230, 48, 18, 0.15);
}

.desktop-auth-group .nav-dash-btn:hover {
    background: #e63012;
    color: #fff;
}

.desktop-auth-group .nav-logout-btn {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.desktop-auth-group .nav-logout-btn:hover {
    background: #ef4444;
    color: #fff;
}

/* Mobile Drawer Overlay Backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Responsive Main Nav rules */
@media (min-width: 769px) {
    #mainNav {
        display: block !important;
        margin: 0 auto 0 2rem;
    }

    .hide-on-desktop {
        display: none !important;
    }

    .svk-nav-cart-li {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}



/* ── Hero Section ─────────────────────────────────────────── */

.futuristic-hero {
    position: relative;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #fff5f3 0%, #fffbf0 50%, #f0f9ff 100%) !important;
}

/* .hero-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vw;
    max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, rgba(230,48,18,0.07) 0%, rgba(245,158,11,0.05) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
} */

.neon-text {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #e63012, #f59e0b, #e63012);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 2rem;
    }

    .futuristic-hero {
        padding: 3.5rem 1rem 3rem;
    }
}

/* ── Countdown ────────────────────────────────────────────── */
.svk-countdown-v2 {
    background: #fff;
    backdrop-filter: none;
    border: 1px solid rgba(230, 48, 18, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(230, 48, 18, 0.08);
}

.svk-timer-box {
    background: linear-gradient(135deg, #fff5f3, #fffbf0);
    border: 1px solid rgba(230, 48, 18, 0.15);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    min-width: 64px;
}

.svk-timer-box .val {
    color: #e63012;
    text-shadow: none;
    font-weight: 800;
    font-size: 1.8rem;
}

.svk-timer-box .unit {
    color: #64748b;
    font-size: 0.62rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    background: linear-gradient(135deg, #e63012, #b82309) !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(230, 48, 18, 0.25) !important;
    color: #fff !important;
    transition: all 0.25s ease !important;
    border-radius: 10px !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(230, 48, 18, 0.35) !important;
}

/* ── Product Cards ────────────────────────────────────────── */
.product-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    color: #1e293b !important;
    transition: all 0.28s ease !important;
    border-radius: 14px !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(230, 48, 18, 0.15) !important;
    box-shadow: 0 12px 32px rgba(230, 48, 18, 0.1) !important;
}

.product-card h3 {
    color: #1e293b !important;
}

.product-card .price .sale {
    color: #e63012 !important;
    text-shadow: none !important;
}

/* ── Qty Stepper ──────────────────────────────────────────── */
.svk-qty-stepper {
    background: #f8fafc !important;
    border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
}

.svk-qty-input {
    background: transparent !important;
    color: #1e293b !important;
}

.qty-btn {
    color: #64748b !important;
}

.qty-btn:hover {
    background: #e63012 !important;
    color: #fff !important;
}

/* ── Dashboard / Panels ───────────────────────────────────── */
.svk-checkout-panel,
.dashboard-container .stat-card,
.member-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07) !important;
    color: #1e293b !important;
    border-radius: 14px !important;
}

.dashboard-container h1,
.svk-checkout-panel h3 {
    color: #1e293b !important;
}

.stat-card h3 {
    color: #64748b !important;
}

.stat-card .value {
    color: #1e293b !important;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-control {
    background: #f8fafc !important;
    border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
    color: #1e293b !important;
    border-radius: 8px !important;
}

.form-control:focus {
    border-color: #e63012 !important;
    box-shadow: 0 0 0 3px rgba(230, 48, 18, 0.1) !important;
    background: #fff !important;
}

.form-group label {
    color: #334155 !important;
}

/* ── Tables ───────────────────────────────────────────────── */
.premium-table {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.premium-table thead {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
}

.premium-table th {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: none !important;
}

.premium-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    color: #1e293b !important;
}

.premium-table tr:hover td {
    background: rgba(230, 48, 18, 0.02) !important;
}

/* ── Auth Cards ───────────────────────────────────────────── */
.auth-card,
.auth-wrapper {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
}

/* ── Trust Section ────────────────────────────────────────── */
#svk-trust {
    background: #f8fafc !important;
}

.trust-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
}

.trust-card h3 {
    color: #1e293b !important;
}

.trust-card p {
    color: #64748b !important;
}

/* ── SVK Products Table Header ────────────────────────────── */
.svk-products-table thead tr {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
}

.svk-products-table th {
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 2px solid #e63012 !important;
}

/* ── Mobile Bottom Cart ───────────────────────────────────── */
.svk-bottom-cart {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 2px solid #e63012 !important;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.1) !important;
}

#svkBottomCartCount {
    color: #64748b !important;
}

#svkBottomCartTotal {
    color: #1e293b !important;
}

.svk-btn-cart-view {
    background: #e63012 !important;
    box-shadow: 0 4px 12px rgba(230, 48, 18, 0.25) !important;
}

/* ── Mobile Navigation Drawer ─────────────────────────────── */
nav.open {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

nav.open ul li a {
    color: #1e293b !important;
    font-size: 1rem !important;
}

nav.open ul li a:hover,
nav.open ul li a.active {
    color: #e63012 !important;
    background: rgba(230, 48, 18, 0.07) !important;
}

nav.open .nav-auth-group {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ── Toast ────────────────────────────────────────────────── */
.svk-toast {
    background: #1e293b !important;
    color: #fff !important;
    border-left: 4px solid #e63012 !important;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #e63012;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b82309;
}

/* ── Section headings ─────────────────────────────────────── */
section h2 {
    color: #1e293b;
}

section h2::after {
    background: linear-gradient(90deg, #e63012, #f59e0b);
}

/* ── Mobile Navigation Drawer Overrides ───────────────────── */
@media (max-width: 768px) {
    .nav-toggle {
        z-index: 2100 !important;
    }

    #mainNav {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        /* Full height drawer */
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        width: 290px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 2rem 1.5rem !important;
        padding-bottom: 200px !important;
        z-index: 2000 !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
        border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-top: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Add "Menu" header spacing to match standard app drawers */
    #mainNav::before {
        content: "Menu 🎆";
        display: block;
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: #1e293b;
        border-bottom: 2px solid #e63012;
        padding-bottom: 0.5rem;
        width: 100%;
    }

    #mainNav.open {
        transform: translateX(0) !important;
        left: auto !important;
        right: 0 !important;
        display: flex !important;
    }

    /* Force style1.css's conflicting full-screen overlay to match the drawer */
    nav.open {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        width: 290px !important;
        height: 100vh !important;
        bottom: auto !important;
        border-top: none !important;
        transform: translateX(0) !important;
    }

    #mainNav ul {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.85rem !important;
        align-items: flex-start !important;
    }

    #mainNav ul li {
        width: 100% !important;
    }

    #mainNav ul li a {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        border-bottom: none !important;
        border-radius: 10px !important;
        transition: all 0.22s ease !important;
    }

    #mainNav ul li a:hover,
    #mainNav ul li a.active {
        color: #e63012 !important;
        background: rgba(230, 48, 18, 0.08) !important;
        transform: translateX(5px);
    }

    .nav-icon {
        font-size: 1.25rem;
        display: inline-block;
    }

    .nav-auth-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.85rem !important;
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .nav-auth-group a {
        display: block !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        text-align: center !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
    }

    .nav-login {
        background: #f1f5f9 !important;
        color: #475569 !important;
        border: 1px solid #cbd5e1 !important;
    }

    .nav-login:hover {
        background: #e2e8f0 !important;
    }

    .nav-register {
        background: linear-gradient(135deg, #e63012, #f59e0b) !important;
        color: #ffffff !important;
        border: none !important;
    }

    .nav-register:hover {
        opacity: 0.95 !important;
    }
}

/* ── Premium Footer Redesign Styling ── */
.site-footer {
    background: #0f172a !important;
    /* Premium Midnight Dark */
    color: #94a3b8 !important;
    padding: 5rem 5% 2.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-top: 5rem !important;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e63012, #f59e0b, #e63012, transparent);
    background-size: 200% 100%;
}

.site-footer .footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 3rem !important;
    max-width: 1240px;
    margin: 0 auto 4rem !important;
}

.site-footer .footer-section h4 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 1.75rem !important;
    position: relative;
    display: inline-block;
}

.site-footer .footer-section h4::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #e63012, #f59e0b);
    border-radius: 1px;
    margin-top: 0.5rem;
}

.site-footer .brand-column h4 {
    background: linear-gradient(135deg, #ff6b47, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
}

.site-footer .brand-column h4::after {
    background: linear-gradient(90deg, #ff6b47, #fcd34d) !important;
}

.site-footer .brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.site-footer .social-row .wa-link {
    display: inline-flex;
    align-items: center;
    background: #16a34a;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
    transition: all 0.25s ease;
}

.site-footer .social-row .wa-link:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.site-footer .footer-section p a {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    transition: all 0.22s ease !important;
    display: inline-block;
    padding: 2px 0;
}

.site-footer .footer-section p a:hover {
    color: #ff6b47 !important;
    transform: translateX(4px);
}

.site-footer .contact-column .contact-item {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.site-footer .contact-column .contact-item strong {
    color: #e2e8f0;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 2.5rem !important;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-copyright-info {
    text-align: left;
}

.footer-copyright-info p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-copyright-info p strong {
    color: #cbd5e1;
}

.footer-admin-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-admin-row a {
    color: #64748b !important;
    font-size: 0.8rem !important;
    transition: color 0.22s ease !important;
}

.footer-admin-row a:hover {
    color: #ff6b47 !important;
}

.footer-admin-row .divider {
    color: rgba(255, 255, 255, 0.1);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.payment-title {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.payment-badges .pay-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: all 0.22s ease;
}

.payment-badges .pay-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ── Responsive Footers & Header ── */
@media (max-width: 1024px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1.25rem 2rem !important;
        margin-top: 4rem !important;
    }

    .site-footer .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-copyright-info {
        text-align: center;
    }

    .footer-admin-row {
        justify-content: center;
    }

    .payment-methods {
        align-items: center;
    }
}

/* ============================================================
   LIGHT THEME — SECTION ENHANCEMENTS
   Sivakasi Crackers — Premium Improvements
   ============================================================ */

/* ── CSS Custom Property Additions ─────────────────────────── */
:root {
    --svk-warm-gradient: linear-gradient(135deg, #fff5f3 0%, #fffdf9 50%, #fff8f0 100%);
    --svk-card-hover-shadow: 0 16px 40px rgba(230, 48, 18, 0.12);
    --svk-glow-primary: 0 0 24px rgba(230, 48, 18, 0.15);
    --svk-section-bg-alt: #f8fafc;
    --svk-border-warm: rgba(230, 48, 18, 0.10);
}

/* ── Body ambient glow upgrade ─────────────────────────────── */
body.futuristic-theme {
    background-image:
        radial-gradient(ellipse at 15% 10%, rgba(230, 48, 18, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 80%) !important;
}

/* ── Hero Section — Premium Light ──────────────────────────── */
.futuristic-hero {
    padding: 5.5rem 5% 4.5rem !important;
    text-align: center;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(230, 48, 18, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(245, 158, 11, 0.06) 0%, transparent 55%),
        linear-gradient(160deg, #fff5f3 0%, #fffdf9 40%, #fffbf0 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Decorative ring behind hero */
.futuristic-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 48, 18, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.futuristic-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

/* ── Hero Headline ──────────────────────────────────────────── */
.neon-text {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    background: linear-gradient(135deg, #c8230e 0%, #e63012 35%, #f59e0b 70%, #e63012 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.15 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -1.5px !important;
    filter: drop-shadow(0 2px 12px rgba(230, 48, 18, 0.18));
}

/* Hero subtext */
.futuristic-hero .hero-content>p {
    font-size: 1.1rem !important;
    color: #475569 !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
    max-width: 540px;
    margin: 0 auto 2rem !important;
}

/* ── Diwali Countdown Card ──────────────────────────────────── */
#countdown-wrap {
    margin: 2rem auto !important;
    display: flex;
    justify-content: center;
}

.svk-countdown-v2 {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border: 1.5px solid rgba(230, 48, 18, 0.12) !important;
    border-radius: 20px !important;
    padding: 1.5rem 2rem !important;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(230, 48, 18, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.svk-countdown-v2 .label {
    color: #e63012 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    margin-bottom: 1rem !important;
    display: block;
}

.svk-timer-grid {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.svk-timer-box {
    background: linear-gradient(145deg, #fff5f3, #fffbf0) !important;
    border: 1.5px solid rgba(230, 48, 18, 0.13) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    min-width: 70px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 2px 8px rgba(230, 48, 18, 0.06);
}

.svk-timer-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 48, 18, 0.1);
}

.svk-timer-box .val {
    color: #e63012 !important;
    text-shadow: none !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    font-variant-numeric: tabular-nums;
}

.svk-timer-box .unit {
    color: #64748b !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

/* ── Hero CTA Row ───────────────────────────────────────────── */
.svk-hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Override inline styles on hero buttons */
.svk-hero-cta-row .btn-primary {
    background: linear-gradient(135deg, #e63012, #b82309) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(230, 48, 18, 0.3) !important;
    color: #fff !important;
    padding: 0.9rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
}

.svk-hero-cta-row .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(230, 48, 18, 0.35) !important;
}

.svk-hero-cta-row .btn-secondary {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.9rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.28) !important;
    transition: all 0.25s ease !important;
}

.svk-hero-cta-row .btn-secondary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.36) !important;
}

/* ── Heritage Banner ────────────────────────────────────────── */
.heritage {
    background: linear-gradient(135deg, #fff5f3 0%, #fffbf0 50%, #f0fdf4 100%) !important;
    border-top: 1px solid rgba(230, 48, 18, 0.08) !important;
    border-bottom: 1px solid rgba(230, 48, 18, 0.08) !important;
    padding: 4rem 5% !important;
    text-align: center;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.heritage::before {
    content: '🎆';
    position: absolute;
    font-size: 8rem;
    opacity: 0.04;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    pointer-events: none;
}

.heritage::after {
    content: '🪔';
    position: absolute;
    font-size: 8rem;
    opacity: 0.04;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
}

.heritage .container {
    position: relative;
    z-index: 2;
}

.heritage h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    color: #e63012 !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
}

.heritage h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #e63012, #f59e0b);
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

.heritage p {
    color: #475569 !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    max-width: 640px;
    margin: 0 auto !important;
}

/* ── Category Strip ─────────────────────────────────────────── */
.categories {
    background: #ffffff;
    padding: 2rem 5% !important;
}

.categories h2 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1.25rem !important;
}

.category-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(230, 48, 18, 0.3) transparent;
}

.category-strip::-webkit-scrollbar {
    height: 4px;
}

.category-strip::-webkit-scrollbar-track {
    background: transparent;
}

.category-strip::-webkit-scrollbar-thumb {
    background: rgba(230, 48, 18, 0.25);
    border-radius: 4px;
}

.category-item {
    flex: 0 0 auto !important;
    padding: 0.55rem 1.25rem !important;
    background: #ffffff !important;
    border-radius: 50px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    text-decoration: none !important;
    transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    white-space: nowrap;
}

.category-item:hover,
.category-item.active {
    background: linear-gradient(135deg, #e63012, #f59e0b) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(230, 48, 18, 0.22) !important;
    transform: translateY(-2px) scale(1.04) !important;
}

/* ── Featured Products Section ──────────────────────────────── */
.featured {
    padding: 3rem 5% !important;
    background: var(--svk-section-bg-alt);
}

.featured>h2 {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 2rem !important;
    display: inline-block;
    position: relative;
}

.featured>h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e63012, #f59e0b);
    border-radius: 2px;
    margin-top: 0.5rem;
}

/* Product card overrides for landing page */
.svk-featured-grid .product-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.svk-featured-grid .product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--svk-card-hover-shadow) !important;
    border-color: rgba(230, 48, 18, 0.12) !important;
}

/* Product image hover zoom */
.svk-prod-thumb {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: transform 0.35s ease !important;
}

.product-card:hover .svk-prod-thumb {
    transform: scale(1.05) !important;
}

/* Product name */
.product-card h3 {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}

/* Price badge */
.product-card .price .sale {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #e63012 !important;
}

.product-card .price .mrp {
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
}

.product-card .price .save {
    color: #16a34a !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    background: rgba(22, 163, 74, 0.08) !important;
    padding: 0.15rem 0.45rem !important;
    border-radius: 4px !important;
    display: inline-block !important;
}

/* Qty Stepper improvements */
.svk-qty-stepper {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.qty-btn {
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
}

.qty-btn:hover {
    background: linear-gradient(135deg, #e63012, #f59e0b) !important;
    color: #ffffff !important;
}

.svk-qty-input {
    background: transparent !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-align: center;
    border: none !important;
    width: 34px !important;
}

/* Add to cart button */
.svk-btn-atc {
    background: linear-gradient(135deg, #e63012, #b82309) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    padding: 0.55rem !important;
    cursor: pointer;
    transition: all 0.22s ease !important;
    box-shadow: 0 3px 10px rgba(230, 48, 18, 0.2) !important;
}

.svk-btn-atc:hover:not(:disabled) {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(230, 48, 18, 0.3) !important;
}

.svk-btn-atc:disabled {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* View Details link */
.product-card a[href*="product.php"] {
    color: #64748b !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.product-card a[href*="product.php"]:hover {
    color: #e63012 !important;
}

/* ── Trust & Referral Section ───────────────────────────────── */
#svk-trust {
    background: linear-gradient(160deg, #f8fafc 0%, #fff5f3 50%, #f8fafc 100%) !important;
    padding: 5rem 5% !important;
}

#svk-trust>.container>div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px !important;
    padding: 2.5rem 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) !important;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63012, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(230, 48, 18, 0.10) !important;
    border-color: rgba(230, 48, 18, 0.10) !important;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card>div[style*="font-size:3rem"] {
    font-size: 3.5rem !important;
    margin-bottom: 1.25rem !important;
    display: block;
    transition: transform 0.3s ease;
}

.trust-card:hover>div[style*="font-size:3rem"] {
    transform: scale(1.12) rotate(-3deg);
}

.trust-card h3 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
}

.trust-card p {
    color: #64748b !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

.trust-card a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin-top: 1.25rem !important;
    color: #e63012 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: gap 0.22s ease, color 0.22s ease !important;
}

.trust-card a:hover {
    gap: 0.7rem !important;
    color: #b82309 !important;
}

/* ── Section CTA — "Explore All Products" button ───────────── */
.featured>div[style*="text-align:center"] .btn-secondary,
.featured>div[style*="text-align: center"] .btn-secondary {
    background: transparent !important;
    color: #e63012 !important;
    border: 2px solid #e63012 !important;
    font-size: 0.9rem !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
}

.featured>div[style*="text-align:center"] .btn-secondary:hover,
.featured>div[style*="text-align: center"] .btn-secondary:hover {
    background: #e63012 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(230, 48, 18, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* ── Mobile Light Theme Responsiveness ──────────────────────── */
@media (max-width: 768px) {
    .futuristic-hero {
        padding: 4rem 1.25rem 3.5rem !important;
    }

    .futuristic-hero::before {
        width: 400px;
        height: 400px;
        top: -80px;
    }

    .neon-text {
        font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
        letter-spacing: -0.5px !important;
    }

    .svk-hero-cta-row {
        gap: 0.75rem;
    }

    .svk-hero-cta-row .btn-primary,
    .svk-hero-cta-row .btn-secondary {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.88rem !important;
        width: 100%;
        justify-content: center;
    }

    .svk-countdown-v2 {
        padding: 1.25rem 1rem !important;
    }

    .svk-timer-grid {
        gap: 0.5rem;
    }

    .svk-timer-box {
        padding: 0.6rem 0.75rem !important;
        min-width: 62px !important;
    }

    .svk-timer-box .val {
        font-size: 1.5rem !important;
    }

    .heritage {
        padding: 3rem 1.25rem !important;
    }

    .categories {
        padding: 1.5rem 1.25rem !important;
    }

    .featured {
        padding: 2rem 1.25rem !important;
    }

    #svk-trust {
        padding: 3rem 1.25rem !important;
    }

    .trust-card {
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
    }

    .svk-featured-grid .product-card {
        border-radius: 12px !important;
    }
}

/* ============================================================
   NEW SEMANTIC CLASS RULES (replacing inline styles)
   ============================================================ */

/* ── Price Row ──────────────────────────────────────────────── */
.price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0.75rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── Product Grid ───────────────────────────────────────────── */
.svk-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 1.1rem;
}

/* ── Product card internal layout ──────────────────────────── */
.product-card {
    padding: 0.85rem !important;
    display: flex;
    flex-direction: column;
}

.svk-card-qty-row {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    margin-top: auto;
}

.svk-qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* ── View Details Link ──────────────────────────────────────── */
.view-details-link {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    margin-top: 0.65rem;
    color: #64748b !important;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.view-details-link:hover {
    color: #e63012 !important;
}

/* ── No Products Message ────────────────────────────────────── */
.no-products-msg {
    color: #94a3b8;
    text-align: center;
    padding: 3rem;
    font-size: 0.95rem;
}

/* ── Featured CTA Wrapper ───────────────────────────────────── */
.featured-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.featured-cta-wrap .btn-secondary {
    background: transparent !important;
    color: #e63012 !important;
    border: 2px solid #e63012 !important;
    padding: 0.8rem 2.25rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
    display: inline-block;
}

.featured-cta-wrap .btn-secondary:hover {
    background: #e63012 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(230, 48, 18, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* ── Trust Grid ─────────────────────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Trust Icon ─────────────────────────────────────────────── */
.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.12) rotate(-3deg);
}

/* ── Section section-level heading fix ──────────────────────── */
.categories h2::after {
    display: none;
    /* category section uses a smaller heading; suppress underline bar */
}

/* ── Responsive grid adjustments ────────────────────────────── */
@media (max-width: 480px) {
    .svk-featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .trust-grid {
        grid-template-columns: 1fr !important;
    }

    .qty-btn {
        width: 15px !important;
        height: 15px !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
    }




}

@media (max-width: 360px) {
    .svk-featured-grid {
        grid-template-columns: 1fr !important;
    }
}