:root {
    --primary: #166534;
    --primary-dark: #0f3d20;
    --primary-light: #22c55e;
    --primary-subtle: #f0fdf4;
    --amber: #d97706;
    --amber-dark: #b45309;
    --amber-light: #fef3c7;
    --dark: #0f172a;
    --dark-muted: #475569;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 20px 25px -5px rgba(22, 101, 52, 0.1), 0 10px 10px -5px rgba(22, 101, 52, 0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background-color: #fbfbfb;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: linear-gradient(90deg, #092613 0%, #0d381c 50%, #092613 100%);
    color: #e2f2e5;
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.top-info span i {
    color: #4ade80;
}

.top-info .divider {
    color: rgba(255, 255, 255, 0.25);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-actions a {
    color: #e2f2e5;
    font-weight: 500;
}

.top-actions a:hover {
    color: #fef08a;
    text-decoration: none;
}

.whatsapp-badge {
    background: #25D366;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 11.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.whatsapp-badge:hover {
    background: #1eb956;
    transform: translateY(-1px);
}

.admin-link {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
}

.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    background: var(--primary-subtle);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #dcfce7;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 26px;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--primary-dark);
}

.brand-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--amber-dark);
    margin-top: 2px;
}

.header-search {
    flex: 1;
    max-width: 380px;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrap .search-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
}

.search-input-wrap input {
    width: 100%;
    padding: 10px 85px 10px 38px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    background: #f8fafc;
}

.search-input-wrap input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
}

.search-input-wrap button {
    position: absolute;
    right: 4px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-input-wrap button:hover {
    background: var(--primary-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    padding: 6px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-subtle);
    border: 1px solid #bbf7d0;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
}

.cart-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.cart-btn:hover .cart-count {
    background: #ffffff;
    color: var(--primary);
}

.cart-count {
    background: var(--primary);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
}

/* Mobile Nav Drawer Styles */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

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

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #0d381c;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.drawer-close:hover {
    background: #ef4444;
}

.drawer-links {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.drawer-links a i {
    width: 22px;
    color: #166534;
    font-size: 16px;
}

.drawer-links a:hover {
    background: #f0fdf4;
    color: #166534;
    padding-left: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3);
}

.btn-secondary {
    background: var(--amber);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--amber-dark);
}

.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-outline-danger {
    border-color: #ef4444;
    color: #ef4444;
    background: transparent;
}

.btn-outline-danger:hover {
    background: #ef4444;
    color: #ffffff;
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #1eb956;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

/* ==========================================================================
   WIDESCREEN AUTO-SLIDING HERO CAROUSEL
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #072312;
    min-height: 520px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 35, 18, 0.96) 0%, rgba(7, 35, 18, 0.88) 45%, rgba(7, 35, 18, 0.4) 80%, rgba(7, 35, 18, 0.1) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    color: #ffffff;
    padding: 40px 0;
}

.hero-slide .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fef08a;
    margin-bottom: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.hero-slide.active .hero-pill {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide .hero-title {
    font-size: 44px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.6s ease 0.35s;
}

.hero-slide.active .hero-title {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide .hero-subtitle {
    font-size: 15px;
    color: #e2f2e5;
    line-height: 1.6;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.6s ease 0.5s;
}

.hero-slide.active .hero-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide .hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.6s ease 0.65s;
}

.hero-slide.active .hero-btn-group {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls: Arrows & Dots */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.slider-arrow:hover {
    background: #d97706;
    border-color: #fef08a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.5);
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

.slider-dots-wrap {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    width: 34px;
    background: #d97706;
    border-color: #fef08a;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.6);
}

/* Slider Progress Bar */
.slider-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d97706, #22c55e);
    transition: width 0.1s linear;
}

@media (max-width: 992px) {
    .hero-slider-container {
        height: 580px;
    }
    .hero-slide .hero-title {
        font-size: 34px;
    }
    .hero-slide-overlay {
        background: linear-gradient(90deg, rgba(7, 35, 18, 0.95) 0%, rgba(7, 35, 18, 0.9) 70%, rgba(7, 35, 18, 0.7) 100%);
    }
}

@media (max-width: 600px) {
    .hero-slider-container {
        height: 520px;
    }
    .hero-slide .hero-title {
        font-size: 26px;
    }
    .hero-slide .hero-subtitle {
        font-size: 13px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0d381c 0%, #166534 50%, #15803d 100%);
    color: #ffffff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-title {
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 16px;
    color: #d1fae5;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #fef08a;
}

.stat-label {
    font-size: 12px;
    color: #a7f3d0;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card-floating {
    background: #ffffff;
    color: var(--dark);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 360px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spice-showcase-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #0f172a;
    color: #fef08a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.spice-hero-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 14px;
    margin: 12px 0 20px;
}

.cardamom-hero-art {
    font-size: 72px;
}

.hero-card-details h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.hero-card-origin {
    font-size: 12px;
    color: var(--dark-muted);
    margin-bottom: 12px;
}

.hero-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.price-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-mrp {
    font-size: 14px;
    text-decoration: line-through;
    color: #94a3b8;
}

.badge-save {
    background: #fef2f2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.section {
    padding: 70px 0;
}

.bg-light-grain {
    background: #f4f6f5;
}

.bg-dark-green {
    background: #0d381c;
}

.section-heading {
    margin-bottom: 44px;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--dark-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.category-card {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary);
}

.cat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--dark-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cat-cta {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: #cbd5e1;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-featured {
    background: var(--amber);
    color: #ffffff;
}

.badge-paid {
    background: #dcfce7;
    color: #15803d;
}

.badge-pending {
    background: #fef3c7;
    color: #b45309;
}

.product-thumb-wrap {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.product-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #ffffff;
    transition: transform 0.35s ease;
}

.product-card:hover .product-thumb-img {
    transform: scale(1.06);
}

.product-avatar-art {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bg-art-cardamom   { background: #e8f5e9; }
.bg-art-nutmeg     { background: #fbe9e7; }
.bg-art-cloves     { background: #fce4ec; }
.bg-art-pepper     { background: #eceff1; }
.bg-art-cinnamon   { background: #efebe9; }
.bg-art-star-anise { background: #fff8e1; }
.bg-art-cashews    { background: #fffde7; }
.bg-art-almonds    { background: #fff3e0; }
.bg-art-raisins    { background: #f1f8e9; }
.bg-art-pistachios { background: #e0f2f1; }
.bg-art-walnuts    { background: #efebe9; }
.bg-art-gift-box   { background: #ede7f6; }

.product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--dark-muted);
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 6px;
}

.product-name a:hover {
    color: var(--primary);
}

.product-subtitle {
    font-size: 12px;
    color: var(--dark-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-weight-badge {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 14px;
    color: #475569;
}

.grade-tag {
    font-weight: 600;
    color: var(--primary-dark);
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-mrp {
    font-size: 12px;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 6px;
}

.btn-quick-add {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-quick-add:hover {
    background: var(--primary-dark);
}

.promo-banner-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 48px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge {
    background: var(--amber);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 12px;
}

.promo-banner-card h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 12px;
}

.promo-banner-card p {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.promo-pricing {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.promo-price {
    font-size: 32px;
    font-weight: 800;
    color: #fef08a;
}

.promo-mrp {
    font-size: 18px;
    text-decoration: line-through;
    color: #94a3b8;
}

.promo-save {
    background: #22c55e;
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.promo-actions {
    display: flex;
    gap: 12px;
}

.giftbox-mockup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-box-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.promo-box-card:hover {
    transform: translateY(-4px);
}

.promo-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
}

.jar-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.jar-icon span {
    font-size: 36px;
}

.jar-icon small {
    font-size: 11px;
    font-weight: 600;
    color: #e2e8f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.06);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    color: #fef08a;
    margin-bottom: 16px;
}

.feature-box h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 13px;
    color: #d1fae5;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.review-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 11px;
    color: #64748b;
}

.page-banner {
    background: linear-gradient(135deg, #0d381c 0%, #166534 100%);
    color: #ffffff;
    padding: 40px 0;
}

.breadcrumb {
    font-size: 12px;
    color: #a7f3d0;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: underline;
}

.page-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 14px;
    color: #d1fae5;
}

.shop-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.pill:hover,
.pill.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.shop-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.shop-sort-wrap select {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 13px;
    background: #ffffff;
    outline: none;
}

.product-detail-page {
    padding: 40px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.product-main-visual {
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-color);
    background: #ffffff;
    overflow: hidden;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    background: #ffffff;
    transition: transform 0.35s ease;
}

.product-main-visual:hover .product-detail-img {
    transform: scale(1.04);
}

.detail-art-emoji {
    font-size: 110px;
}

.fssai-stamp {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.guarantee-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.guarantee-pill {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-category-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 6px 0 8px;
}

.product-detail-sub {
    font-size: 15px;
    color: var(--dark-muted);
    margin-bottom: 16px;
}

.detail-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.detail-price-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.currency-symbol {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
}

.mrp-amount {
    font-size: 18px;
    text-decoration: line-through;
    color: #94a3b8;
}

.discount-badge {
    background: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.tax-info {
    font-size: 12px;
    color: var(--dark-muted);
}

.weight-selection-box {
    margin-bottom: 24px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.variant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-chip {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.variant-chip:hover {
    border-color: #94a3b8;
}

.variant-chip.active {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.chip-weight {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.chip-price {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 800;
}

.purchase-actions-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 44px;
    cursor: pointer;
    font-size: 13px;
}

.quantity-picker input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 15px;
    outline: none;
}

.whatsapp-order-box {
    margin-bottom: 30px;
}

.btn-whatsapp-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
}

.btn-whatsapp-order:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.detail-highlights {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.highlight-item p,
.highlight-item ul {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.highlight-item ul {
    padding-left: 18px;
}

.free-shipping-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.shipping-msg {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-bar-wrap {
    height: 8px;
    background: #dcfce7;
    border-radius: 4px;
    overflow: hidden;
}

.shipping-bar-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
    align-items: start;
}

.cart-table-wrap {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: #f8fafc;
    padding: 14px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    border-bottom: 1px solid var(--border-color);
}

.cart-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    vertical-align: middle;
}

.cart-prod-name {
    font-weight: 700;
    color: var(--dark);
}

.badge-weight {
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.qty-picker-small {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 2px 6px;
    gap: 8px;
}

.btn-qty-mod {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    padding: 4px;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

.btn-remove-item:hover {
    color: #ef4444;
}

.cart-actions-row {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
}

.order-summary-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 24px;
}

.summary-title {
    font-size: 20px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: #334155;
}

.total-row {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 16px 0 6px;
}

.total-amount {
    font-size: 22px;
    color: var(--primary-dark);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 14px 0;
}

.summary-tax-note {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 20px;
}

.summary-trust-badges {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: #475569;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
}

.form-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 28px;
    margin-bottom: 24px;
}

.form-card-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.col-12 { flex: 0 0 100%; }
.col-6  { flex: 0 0 calc(50% - 8px); }
.col-4  { flex: 0 0 calc(33.333% - 11px); }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #334155;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
}

.payment-method-selector {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-opt-card {
    display: block;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.payment-opt-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.payment-opt-card.active {
    border-color: var(--primary);
    background: #f8fdf9;
    box-shadow: 0 4px 14px rgba(22, 101, 52, 0.08);
}

.payment-opt-radio-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.payment-opt-radio-row input[type="radio"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.payment-opt-content {
    flex: 1;
}

.payment-method-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5e1;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.upi-checkout-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.upi-id-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.upi-label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.upi-copy-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.upi-address {
    font-size: 14px;
    color: var(--primary);
    font-family: monospace;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.btn-copy-upi, .btn-copy-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-upi:hover, .btn-copy-sm:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.upi-payee-note {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.upi-instructions-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #334155;
    background: #f0fdf4;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
    line-height: 1.4;
}

.upi-qr-card {
    text-align: center;
    background: #ffffff;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.upi-checkout-qr-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
    border-radius: 4px;
}

.qr-scan-hint {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 2px;
}

.qr-amt-hint {
    display: block;
    font-size: 12px;
    color: var(--primary);
}

.bank-checkout-box {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.bank-info-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}

.bank-info-table th {
    width: 35%;
    text-align: left;
    padding: 6px 0;
    color: #64748b;
    font-weight: 500;
}

.bank-info-table td {
    padding: 6px 0;
    color: #1e293b;
}

.copy-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.badge-upi, .badge-gpay, .badge-phonepe, .badge-cards {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.opt-desc {
    font-size: 12px;
    color: #475569;
    margin-top: 4px;
}

.checkout-items-list {
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 14px;
}

.checkout-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-item-thumb-col {
    flex: 0 0 46px;
    height: 46px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name-weight {
    flex: 1;
}

.item-title {
    font-size: 13px;
    color: #1e293b;
    display: block;
    line-height: 1.3;
}

.item-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
    font-size: 12px;
    color: #64748b;
}

.badge-weight {
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.item-calc {
    font-size: 12px;
}

.item-cost {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

.checkout-security-notice {
    margin-top: 16px;
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Order Confirmation Payment Action Cards */
.confirmation-payment-box {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid;
}

.confirmation-upi-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.confirmation-bank-box {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.pay-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pay-box-header i {
    font-size: 26px;
}

.pay-box-header h4 {
    font-size: 17px;
    margin: 0 0 3px 0;
    color: #0f172a;
}

.pay-box-header p {
    font-size: 13px;
    margin: 0;
    color: #475569;
}

.pay-box-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pay-upi-meta {
    flex: 1;
}

.upi-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
}

.copy-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirmation-qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px;
    background: #ffffff;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-notes {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    color: #334155;
    display: inline-block;
}

.invoice-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.invoice-brand {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.invoice-company {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.invoice-meta h3 {
    font-size: 20px;
    margin: 8px 0 4px;
}

.invoice-date, .invoice-pay-id {
    font-size: 12px;
    color: #64748b;
}

.invoice-divider {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

.invoice-customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-size: 13px;
    margin-bottom: 24px;
}

.invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.invoice-items-table th {
    background: #f8fafc;
    padding: 10px 14px;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.invoice-items-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.grand-total-row td {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    border-top: 2px solid var(--border-color);
}

.invoice-actions-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.whatsapp-direct-card {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    align-items: center;
}

.whatsapp-direct-card i {
    font-size: 36px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.faq-item {
    background: #ffffff;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.lead-p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.slogan-card {
    background: var(--primary-subtle);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 24px;
}

.slogan-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.slogan-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--amber-dark);
}

.story-values-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    box-shadow: var(--card-shadow);
}

.v-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 12px;
    color: #64748b;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.detail-box {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.d-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bg-green-light  { background: #dcfce7; }
.bg-blue-light   { background: #dbeafe; }
.bg-amber-light  { background: #fef3c7; }
.bg-purple-light { background: #f3e8ff; }

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.admin-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.admin-card-header {
    padding: 18px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    vertical-align: middle;
}

.code-sm {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.status-select {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    background: #ffffff;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inquiries-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 16px;
}

.inquiry-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
}

.inq-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.inq-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #64748b;
    margin: 4px 0 8px;
}

.inq-message {
    font-size: 13px;
    color: #334155;
    background: #f8fafc;
    padding: 10px;
    border-radius: 6px;
}

.admin-card-body {
    padding: 20px;
}

.setting-item {
    margin-bottom: 16px;
}

.setting-item label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
}

.setting-val {
    font-size: 14px;
}

.main-footer {
    background: #092613;
    color: #e2f2e5;
    margin-top: 60px;
}

.footer-badges {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-card i {
    font-size: 28px;
    color: #fef08a;
}

.badge-card h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.badge-card p {
    font-size: 12px;
    color: #a7f3d0;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.brand-desc {
    font-size: 13px;
    color: #a7f3d0;
    line-height: 1.6;
    margin: 16px 0 20px;
}

.fssai-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.fssai-badge-text {
    font-size: 12px;
    color: #fef08a;
    display: block;
}

.fssai-sub {
    font-size: 11px;
    color: #a7f3d0;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-light);
    color: #092613;
}

.col-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--amber);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #a7f3d0;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #a7f3d0;
}

.contact-item i {
    color: #fef08a;
    font-size: 16px;
    margin-top: 4px;
}

.contact-item strong {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #a7f3d0;
}

.payment-partners {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.developed-by-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: #e2f2e5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fairsit-link {
    color: #fef08a;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

.fairsit-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(254, 240, 138, 0.6);
}

.pay-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 11px;
}

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--primary-light);
}

.toast-success { border-left-color: #22c55e; }
.toast-error   { border-left-color: #ef4444; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Homepage Quick UPI QR Payment Section */
.home-qr-section {
    background: linear-gradient(135deg, #092613 0%, #14532d 100%);
    color: #ffffff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.home-qr-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.home-qr-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.qr-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 240, 138, 0.15);
    border: 1px solid rgba(254, 240, 138, 0.3);
    color: #fef08a;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.qr-main-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
}
.qr-sub-desc {
    font-size: 14px;
    color: #d1fae5;
    line-height: 1.6;
    margin-bottom: 24px;
}
.merchant-vpa-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.vpa-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #a7f3d0;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.vpa-value-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.vpa-id {
    font-size: 18px;
    font-weight: 800;
    color: #fef08a;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.btn-copy-vpa {
    background: var(--amber);
    color: #092613;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-copy-vpa:hover {
    background: #ffffff;
    color: var(--primary-dark);
}
.vpa-merchant-name {
    font-size: 12px;
    color: #e2f2e5;
}
.supported-upi-apps {
    margin-bottom: 20px;
}
.upi-apps-label {
    display: block;
    font-size: 12px;
    color: #a7f3d0;
    margin-bottom: 8px;
}
.upi-app-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.app-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.qr-instructions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #d1fae5;
}
.q-step {
    display: flex;
    align-items: center;
    gap: 10px;
}
.q-step i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(254, 240, 138, 0.2);
    color: #fef08a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
.btn-whatsapp-direct {
    background: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}
.btn-whatsapp-direct:hover {
    background: #1ebc59;
    color: #ffffff;
    transform: translateY(-2px);
}
.home-qr-visual {
    display: flex;
    justify-content: center;
}
.qr-scanner-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 4px solid rgba(254, 240, 138, 0.4);
}
.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}
.scan-dots {
    display: flex;
    gap: 4px;
}
.scan-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}
.scan-dots span:nth-child(1) { background: #ef4444; }
.scan-dots span:nth-child(2) { background: #f59e0b; }
.scan-dots span:nth-child(3) { background: #10b981; }
.scan-title {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}
.qr-frame {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
    border: 2px solid #e2e8f0;
    margin-bottom: 16px;
    display: inline-block;
}
.home-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}
.qr-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #166534;
}
.scanner-footer strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
    margin-bottom: 2px;
}
.scanner-footer span {
    font-size: 11px;
    color: #64748b;
}

@media (max-width: 992px) {
    .home-qr-wrapper {
        grid-template-columns: 1fr;
    }
    .home-qr-visual {
        margin-top: 20px;
    }
    .hero-content, .product-detail-grid, .cart-layout-grid, .checkout-grid, .contact-grid, .story-grid, .promo-banner-card {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .header-search {
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .header-search {
        display: none;
    }
    .hero-title {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .col-6, .col-4 {
        flex: 0 0 100%;
    }
    .upi-checkout-box, .pay-box-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .invoice-customer-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Custom Logo */
.footer-custom-logo {
    max-height: 52px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Enhanced Mobile Responsiveness & Alignment */
@media (max-width: 768px) {
    .promo-banner-card {
        grid-template-columns: 1fr !important;
        padding: 24px 18px !important;
        gap: 20px !important;
        text-align: center;
    }
    .promo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .promo-banner-card h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .promo-banner-card p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }
    .promo-pricing {
        justify-content: center;
        margin-bottom: 20px !important;
    }
    .promo-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .promo-actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .promo-visual {
        width: 100%;
    }
    .promo-box-card {
        max-width: 100% !important;
        padding: 12px !important;
    }
    .promo-img {
        height: auto !important;
        max-height: 240px !important;
        width: 100% !important;
    }
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .category-card {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .promo-banner-card {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }
    .promo-banner-card h2 {
        font-size: 20px !important;
    }
    .promo-price {
        font-size: 26px !important;
    }
}

