@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #d32f2f;
    /* Festive Red */
    --primary-dark: #b71c1c;
    --secondary: #fbc02d;
    /* Bright Yellow/Gold */
    --secondary-dark: #f9a825;
    --bg-color: #fdfbf7;
    /* Off-white warm background */
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(211, 47, 47, 0.15);
    --radius: 12px;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Modern Header */
header {
    background: linear-gradient(135deg, #110404 0%, #290808 50%, #150303 100%);
    color: var(--white);
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(251, 192, 45, 0.3);
}

.header-brand h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-brand h1 span {
    background: linear-gradient(45deg, #fbc02d, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

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

.language-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(251, 192, 45, 0.45);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.language-option {
    min-width: 34px;
    padding: 4px 7px;
    border: 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px !important;
    font-weight: 700 !important;
}

.language-option.active {
    background: var(--secondary);
    color: var(--primary-dark);
}

.order-date-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 20px;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.order-date-filter label {
    font-size: 14px;
    font-weight: 700;
}

.order-date-filter input {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
    color: var(--text-main);
}

.order-date-filter .btn {
    flex: 0 0 auto;
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
}

.header-actions a,
.header-actions button {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.manager-login-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(251, 192, 45, 0.4);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.manager-login-btn:hover {
    background: var(--secondary);
    color: #000 !important;
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.4);
}

.cart-btn {
    position: relative;
    font-size: 16px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 520px;
    padding: 60px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 3, 3, 0.45) 0%, rgba(10, 2, 2, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 860px;
    width: 100%;
    padding: 36px 28px;
    background: rgba(20, 5, 5, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 192, 45, 0.3);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(251, 192, 45, 0.08);
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 192, 45, 0.15);
    border: 1px solid rgba(251, 192, 45, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fbc02d;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(251, 192, 45, 0.2);
}

.hero-pill-logo {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 4px 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(211, 47, 47, 0.3);
    letter-spacing: -0.5px;
}

.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 235, 59, 0.6);
    box-shadow: 0 4px 18px rgba(211, 47, 47, 0.5), 0 0 12px rgba(251, 192, 45, 0.3);
    letter-spacing: 0.5px;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 18px rgba(211, 47, 47, 0.5), 0 0 12px rgba(251, 192, 45, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 24px rgba(211, 47, 47, 0.7), 0 0 20px rgba(251, 192, 45, 0.5);
    }
}

.hero-bullets {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    margin: 4px 0 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 6px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
    color: #110404;
    border: 1px solid #ffeb3b;
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.6);
    background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
}

.hero-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: 1px solid #4ade80;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.hero-btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item i {
    color: #4ade80;
    font-size: 14px;
}

.hero-trust-divider {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 28px 12px;
    }

    .hero-content {
        padding: 20px 14px;
        border-radius: 18px;
        gap: 10px;
        max-width: 100%;
    }

    .hero-logo-img {
        width: 75px;
        height: 75px;
        border-width: 2.5px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.25;
        margin: 2px 0;
    }

    .hero-brand-pill {
        font-size: 11px;
        padding: 4px 12px;
        gap: 6px;
    }

    .hero-pill-logo {
        width: 18px;
        height: 18px;
    }

    .hero-offer-badge {
        font-size: 13px;
        padding: 5px 14px;
    }

    .hero-bullets {
        font-size: 13px;
        margin: 2px 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        font-size: 13.5px;
        padding: 10px 14px;
        border-radius: 18px;
    }

    .hero-trust-strip {
        gap: 6px;
        font-size: 11.5px;
        padding: 6px 10px;
        width: 100%;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-trust-item {
        width: 100%;
        justify-content: center;
    }
}

/* Container & Products */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary);
}

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

/* Product Card */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card .badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.card-img-wrap {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: transform 0.3s ease;
}

.clean-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c0505 0%, #3d0a0a 50%, #150303 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.clean-card-placeholder img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(251, 192, 45, 0.4));
    transition: transform 0.4s ease;
}

.card:hover .clean-card-placeholder img {
    transform: scale(1.1);
}

.card:hover img {
    transform: scale(1.08);
}

.card .body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
}

.stars {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.price-wrap .mrp-row {
    font-size: 12px;
    color: #7b7b7b;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.price-wrap .mrp {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
}

.price-wrap .selling-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-wrap .selling-row .price {
    font-weight: 900;
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
}

.price-wrap .discount-inline-badge {
    background: #ffebee;
    color: #c62828;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #ffcdd2;
}

.you-save-row {
    font-size: 12px;
    font-weight: 700;
    color: #1b5e20;
    background: #e8f5e9;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #a5d6a7;
}

.stock {
    font-size: 13px;
    color: #27ae60;
    margin-bottom: 15px;
    font-weight: 700;
}

.stock.out {
    color: var(--primary);
}

.action-row {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.add-to-cart-btn {
    flex: 1;
    min-height: 38px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
}

.qty-input {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Outfit';
    font-weight: 600;
    text-align: center;
}

.btn {
    background: var(--primary);
    color: var(--white);
    border: 0;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit';
    flex: 1;
    transition: background 0.2s;
    text-align: center;
}

.btn:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn.secondary {
    background: var(--text-muted);
}

.btn.secondary:hover {
    background: #636e72;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff9ea 0%, #fffaf0 100%);
}

.cart-header-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
}

.cart-header-total {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 60px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.cart-item-details {
    flex: 1;
    padding-right: 15px;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-actions {
    text-align: right;
}

.cart-item-total {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.cart-total {
    font-size: 20px;
    font-weight: 800;
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid #eee;
    color: var(--primary);
}

.order-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.order-form h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Outfit';
    background-color: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-tab {
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-main);
    font-family: 'Outfit';
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Category Badges */
.badge-category {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #ffe0b2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

footer p {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

/* Utilities */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.alert.success {
    background: #eafaf1;
    border: 1px solid #2ecc71;
    color: #27ae60;
}

.alert.error {
    background: #fdecea;
    border: 1px solid #e74c3c;
    color: #c0392b;
}

#notice {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.empty {
    color: var(--text-muted);
    padding: 40px 0;
    text-align: center;
    font-size: 18px;
}

.hidden {
    display: none !important;
}

/* Admin specifics */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.tabs button {
    padding: 10px 20px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Outfit';
    transition: 0.2s;
}

.tabs button.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Order Status Tabs */
.order-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.order-tab-btn {
    padding: 12px 18px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Outfit';
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.order-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.login-box {
    max-width: 400px;
    margin: 100px auto;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.login-box h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
}

table th {
    background: #f4f6f7;
    font-weight: 700;
    color: var(--text-main);
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
}

.badge.pending {
    background: #f39c12;
}

.badge.verified {
    background: #3498db;
}

.badge.shipped {
    background: #9b59b6;
}

.badge.delivered {
    background: #2ecc71;
}

.badge.cancelled {
    background: #95a5a6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust & Marketing Section */
.trust-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 24px;
    color: var(--primary);
}

.trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.trust-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Store Layout & Desktop Cart Overlay */
.store-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .store-layout {
        grid-template-columns: 1fr 360px;
    }
}

.desktop-cart-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
    height: fit-content;
    display: none;
}

@media (min-width: 992px) {
    .desktop-cart-panel {
        display: block;
    }
}

.desktop-cart-panel h3 {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quantity Stepper (-) qty (+) */
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fdfdfd;
}

.qty-stepper button {
    background: #f4f6f7;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper button:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.qty-stepper button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-stepper span {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

/* Line-by-Line Category Accordion Dropdowns */
.category-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-accordion-card {
    background: var(--white);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.category-accordion-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.12);
}

.category-accordion-header {
    background: linear-gradient(135deg, #230808 0%, #441010 50%, #290808 100%);
    color: var(--white);
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
    border-left: 6px solid var(--secondary);
}

.category-accordion-header:hover {
    background: linear-gradient(135deg, #330b0b 0%, #591515 50%, #3a0c0c 100%);
}

.category-accordion-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}

.category-accordion-title i {
    color: var(--secondary);
    font-size: 18px;
}

.category-accordion-badge {
    background: rgba(251, 192, 45, 0.2);
    color: var(--secondary);
    border: 1px solid rgba(251, 192, 45, 0.4);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 4px;
}

.category-accordion-chevron {
    font-size: 16px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.category-accordion-card.collapsed .category-accordion-chevron {
    transform: rotate(-90deg);
}

.category-accordion-body {
    padding: 24px;
    background: var(--bg-color);
    transition: all 0.3s ease;
}

.category-accordion-card.collapsed .category-accordion-body {
    display: none;
}

/* Category Controls Top Bar */
.accordion-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.accordion-ctrl-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.accordion-ctrl-btn {
    background: #f4f6f7;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Outfit';
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.accordion-ctrl-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.category-jump-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-jump-select {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-family: 'Outfit';
    font-size: 13px;
    font-weight: 600;
    background: var(--white);
    color: var(--text-main);
    cursor: pointer;
}


.category-line-item.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
}

.category-line-item .count-badge {
    background: #f0f0f0;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.category-line-item.active .count-badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

/* Modal Login Window */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-muted);
}

/* Success Modal Styling */
.success-modal {
    text-align: center;
    max-width: 450px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.success-message {
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-details {
    background: linear-gradient(135deg, #f5f5f5, #fafafa);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.detail-value {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
}

.success-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: var(--white) !important;
    border: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Logo Styling across Site */
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    height: 46px;
    width: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 0 18px rgba(251, 192, 45, 0.8);
}

.hero-logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 25px rgba(251, 192, 45, 0.6), 0 0 50px rgba(211, 47, 47, 0.3);
    margin-bottom: 10px;
    animation: heroLogoPulse 3s ease-in-out infinite alternate;
    flex-shrink: 0;
}

@keyframes heroLogoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(251, 192, 45, 0.5), 0 0 40px rgba(211, 47, 47, 0.3);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(251, 192, 45, 0.85), 0 0 65px rgba(211, 47, 47, 0.5);
    }
}

.modal-logo-img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 50%;
    border: 2.5px solid var(--secondary);
    box-shadow: 0 0 15px rgba(251, 192, 45, 0.4);
    margin: 0 auto 15px;
    display: block;
}

.admin-login-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 22px rgba(251, 192, 45, 0.4);
    display: inline-block;
    transition: transform 0.3s;
}

.admin-login-logo:hover {
    transform: scale(1.05);
}

footer {
    background: linear-gradient(180deg, #180505 0%, #0d0202 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 5% 25px;
    text-align: center;
    border-top: 1px solid rgba(251, 192, 45, 0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.4);
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-contact {
    margin: 24px auto 0;
    max-width: 620px;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 192, 45, 0.25);
}

.footer-contact h4 {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-contact p,
.footer-trust-copy {
    line-height: 1.7;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 14px;
}

.footer-contact-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-links a:hover {
    color: var(--secondary);
}

.footer-trust-copy {
    margin-top: 22px !important;
    max-width: 800px !important;
    color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* User Google Auth & Profile Header Menu */
.google-login-btn {
    background: #ffffff;
    color: #333333 !important;
    border: 1px solid #e0e0e0;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.google-login-btn i {
    color: #4285F4;
    font-size: 15px;
}

.google-login-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.4);
}

.user-profile-menu {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(251, 192, 45, 0.5);
    color: #ffffff !important;
    padding: 4px 12px 4px 5px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-profile-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.5);
}

.user-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--secondary);
}

.user-display-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    color: var(--text-main);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 1000;
    display: none;
    animation: fadeInDown 0.2s ease-out;
}

.user-dropdown-menu.active {
    display: block;
}

.user-dropdown-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #eeeeee;
}

.user-dropdown-header strong {
    display: block;
    font-size: 14px;
    color: var(--text-main);
}

.user-dropdown-menu button {
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
}

.user-dropdown-menu button:hover {
    background: #f4f6f7;
    color: var(--primary);
}

.user-dropdown-divider {
    height: 1px;
    background: #eeeeee;
    margin: 4px 0;
}

.user-dropdown-menu button.logout-item {
    color: #d32f2f;
}

.user-dropdown-menu button.logout-item:hover {
    background: #ffebee;
}

/* My Orders Modal & Tracking Status */
.orders-modal-box {
    max-width: 700px;
    width: 92%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.orders-modal-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #110404, #290808);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--secondary);
}

.orders-modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
}

.orders-modal-header .modal-close {
    color: #ffffff;
    top: 18px;
    right: 20px;
}

.orders-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    background: #f9fafb;
}

.user-order-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.user-order-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.order-id-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.order-date {
    font-size: 12px;
    color: var(--text-muted);
}

.status-pill {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pill.pending {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
}

.status-pill.verified {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.status-pill.shipped {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #ce93d8;
}

.status-pill.delivered {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.status-pill.cancelled {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.order-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 18px 0 14px;
    padding: 0 10px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 25px;
    right: 25px;
    height: 3px;
    background: #e5e7eb;
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d1d5db;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin: 0 auto 6px;
    transition: all 0.3s;
}

.timeline-step.completed .timeline-dot {
    background: #4caf50;
    border-color: #4caf50;
    color: #ffffff;
}

.timeline-step.active .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.4);
}

.timeline-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline-step.completed .timeline-label,
.timeline-step.active .timeline-label {
    color: var(--text-main);
    font-weight: 700;
}

.order-items-summary {
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 13px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: #4b5563;
}

.order-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
    font-size: 13px;
}

.order-total-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

/* Direct WhatsApp contact */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 998;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* App Mobile & Screen Floating Cart Bar */
.mobile-app-cart-bar {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    background: linear-gradient(135deg, #1b0303 0%, #2e0808 50%, #150303 100%);
    border: 2px solid #fbc02d;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 12px rgba(251, 192, 45, 0.3);
    user-select: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-app-cart-bar.drawer-open-hidden,
.cart-drawer.active~.mobile-app-cart-bar,
.cart-overlay.active~.mobile-app-cart-bar {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.mobile-app-cart-bar:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(251, 192, 45, 0.6);
}

.mobile-app-cart-bar:active {
    transform: translateY(0) scale(0.98);
}

.mobile-app-cart-bar.has-items {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 50%, #880e4f 100%);
    animation: appCartPulse 2s infinite alternate;
}

@keyframes appCartPulse {
    0% {
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5), 0 0 0 0 rgba(251, 192, 45, 0.7);
    }

    100% {
        box-shadow: 0 12px 35px rgba(211, 47, 47, 0.8), 0 0 0 14px rgba(251, 192, 45, 0);
    }
}

.app-cart-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-cart-icon-box {
    position: relative;
    width: 38px;
    height: 38px;
    background: rgba(251, 192, 45, 0.2);
    border: 1px solid rgba(251, 192, 45, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbc02d;
    font-size: 17px;
}

.app-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fbc02d;
    color: #b71c1c;
    font-size: 11px;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.app-cart-info {
    display: flex;
    flex-direction: column;
}

.app-cart-count-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.app-cart-total-price {
    font-size: 16px;
    font-weight: 800;
    color: #fbc02d;
    line-height: 1.1;
}

.app-cart-right {
    background: #fbc02d;
    color: #b71c1c;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Overhaul & Mobile Screen Fit */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        margin: 20px auto;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-logo-img {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .header-brand {
        min-width: 0;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-brand h1 {
        font-size: 14px;
        line-height: 1.15;
        font-weight: 800;
        white-space: normal;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-brand h1 span {
        display: block;
    }

    .hero-logo-img {
        width: 75px;
        height: 75px;
        margin-bottom: 6px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
        gap: 10px;
        max-width: 100%;
    }

    .card-img-wrap {
        height: 120px;
    }

    .card .body {
        padding: 8px;
    }

    .card h3 {
        font-size: 14px;
    }

    .price {
        font-size: 15px;
    }

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

    header {
        padding: 10px 12px;
        max-width: 100%;
        overflow: visible;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-logo-img {
        width: 42px;
        height: 42px;
    }

    .user-display-name {
        max-width: 60px;
    }

    .order-timeline::before {
        left: 15px;
        right: 15px;
    }

    .category-accordion-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .category-accordion-header {
        padding: 12px 14px;
        max-width: 100%;
    }

    .category-accordion-title {
        font-size: 14px;
        gap: 6px;
        max-width: 85%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .category-accordion-body {
        padding: 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .accordion-controls {
        padding: 10px 12px;
        gap: 8px;
        max-width: 100%;
    }

    .accordion-ctrl-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .category-jump-select {
        padding: 6px 10px;
        font-size: 12px;
        max-width: 140px;
    }

    /* Mobile Sticky Bottom App Cart Bar */
    .mobile-app-cart-bar {
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 14px;
        padding: 8px 10px;
        gap: 8px;
    }

    .app-cart-icon-box {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .app-cart-total-price {
        font-size: 13px;
    }

    .app-cart-right {
        padding: 5px 8px;
        font-size: 9px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .order-date-filter {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .order-date-filter input {
        flex: 1;
        min-width: 150px;
    }

    header {
        padding: 8px 10px;
        gap: 4px;
    }

    .header-brand {
        gap: 6px;
        min-width: 0;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .header-brand h1 {
        font-size: 11.5px;
        line-height: 1.15;
        letter-spacing: 0;
        white-space: normal;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-brand h1 span {
        display: block;
        font-size: 10.5px;
    }

    .header-logo-img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .header-actions {
        gap: 4px;
        flex-shrink: 0;
    }

    .language-toggle {
        padding: 2px;
        gap: 1px;
    }

    .language-option {
        min-width: 26px;
        padding: 3px 5px;
        font-size: 10px !important;
    }

    .google-login-btn {
        padding: 4px 6px;
        font-size: 10.5px;
        gap: 3px;
    }

    .user-profile-btn {
        padding: 3px 5px 3px 3px;
        font-size: 10.5px;
        gap: 3px;
    }

    .user-avatar-img {
        width: 22px;
        height: 22px;
    }

    .user-display-name {
        max-width: 40px;
    }

    .user-dropdown-menu {
        right: -10px;
        min-width: 190px;
        max-width: calc(100vw - 20px);
    }

    .hero {
        padding: 16px 10px;
    }

    .hero-content {
        padding: 16px 12px;
        gap: 8px;
        border-radius: 16px;
    }

    .hero-logo-img {
        width: 62px;
        height: 62px;
        border-width: 2px;
        margin-bottom: 4px;
    }

    .hero-brand-pill {
        font-size: 10px;
        padding: 3px 10px;
        gap: 5px;
    }

    .hero-pill-logo {
        width: 16px;
        height: 16px;
    }

    .hero-title {
        font-size: 18px;
        line-height: 1.28;
        font-weight: 800;
        margin: 2px 0;
    }

    .hero-offer-badge {
        font-size: 11.5px;
        padding: 4px 12px;
    }

    .hero-bullets {
        font-size: 11.5px;
        margin: 0 0 2px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 7px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        font-size: 12.5px;
        padding: 8px 12px;
        border-radius: 14px;
        justify-content: center;
    }

    .hero-trust-strip {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
        padding: 6px 8px;
        font-size: 10px;
        width: 100%;
    }

    .hero-trust-item {
        width: auto;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .trust-bar {
        padding: 10px 8px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
    }

    .trust-item {
        gap: 6px;
    }

    .trust-item i {
        font-size: 16px;
    }

    .trust-item h4 {
        font-size: 11px;
    }

    .trust-item p {
        font-size: 9.5px;
    }

    .accordion-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .accordion-ctrl-btns {
        justify-content: space-between;
    }

    .category-jump-wrap {
        justify-content: space-between;
        width: 100%;
    }

    .category-jump-select {
        flex: 1;
        max-width: none;
    }
}

/* ==========================================
   TRANSPARENT VIDEO OVERLAY (MIX-BLEND-MODE)
   ========================================== */
.video-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none !important;
    z-index: 99999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    mix-blend-mode: screen !important;
    transition: opacity 0.3s ease;
}

.video-overlay-container.hidden {
    display: none !important;
}

.video-overlay-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen !important;
    background: transparent !important;
    pointer-events: none !important;
    filter: contrast(130%) brightness(130%) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transition: transform 0.4s ease;
}

/* Day Sun Rising Animation Position Lift */
.video-overlay-container.mode-day video {
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.35) translateY(-22vh);
    transform-origin: center bottom;
    animation: sunRisingRise 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes sunRisingRise {
    0% {
        transform: scale(1.15) translateY(2vh);
        filter: contrast(120%) brightness(120%);
    }

    100% {
        transform: scale(1.4) translateY(-24vh);
        filter: contrast(135%) brightness(135%) drop-shadow(0 0 25px rgba(255, 180, 0, 0.8));
    }
}

.video-overlay-container.mode-night video {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.1);
}

.video-overlay-container.mode-both video {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.2) translateY(-8vh);
}

/* ==========================================
   DYNAMIC BACKGROUND THEMES (DAY / NIGHT / BOTH)
   ========================================== */
body {
    transition: background 0.5s ease, color 0.5s ease;
}

/* ☀️ DAY THEME (Sunny Golden Glow) */
body.theme-day {
    background: linear-gradient(180deg, #fffde7 0%, #fff8e1 40%, #ffe0b2 100%) !important;
    color: #3e2723;
}

body.theme-day .section-title {
    color: #e65100;
    text-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

body.theme-day .type-filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%);
    border-color: #ffb74d;
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.25);
}

body.theme-day .card {
    background: #ffffff;
    border: 1px solid #ffe0b2;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.1);
}

body.theme-day .card h3 {
    color: #212121;
}

body.theme-day .category-accordion-card {
    border: 1px solid #ffe0b2;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.12);
}

body.theme-day .desktop-cart-panel {
    background: #ffffff;
    border: 1px solid #ffe0b2;
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.12);
}

/* 🌙 NIGHT THEME (Midnight Sky Dark Mode) */
body.theme-night {
    background: linear-gradient(180deg, #090c15 0%, #0f172a 40%, #1e1b4b 100%) !important;
    color: #f8fafc;
}

body.theme-night .section-title {
    color: #93c5fd;
    text-shadow: 0 0 15px rgba(147, 197, 253, 0.5);
}

body.theme-night .type-filter-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-color: #4338ca;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

body.theme-night .type-filter-label {
    color: #e2e8f0;
}

body.theme-night .accordion-controls {
    background: #1e1b4b;
    border: 1px solid #3730a3;
    color: #f1f5f9;
}

body.theme-night .accordion-ctrl-btn {
    background: #312e81;
    color: #fff;
    border-color: #4338ca;
}

body.theme-night .category-jump-select {
    background: #0f172a;
    color: #f8fafc;
    border-color: #4338ca;
}

body.theme-night .category-accordion-card {
    background: #0f172a;
    border: 1px solid #312e81;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.theme-night .category-accordion-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #ffffff;
}

body.theme-night .card {
    background: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.theme-night .card h3 {
    color: #f8fafc;
}

body.theme-night .card .price {
    color: #fbc02d;
}

body.theme-night .desktop-cart-panel {
    background: #0f172a;
    border: 1px solid #312e81;
    color: #f8fafc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.theme-night .desktop-cart-panel h3 {
    color: #f8fafc;
}

body.theme-night .qty-stepper span,
body.theme-both .qty-stepper span {
    color: #1f2937;
}

/* ☀️🌙 BOTH THEME (Twilight Sunset / Dusk Dual Glow) */
body.theme-both {
    background: linear-gradient(180deg, #180b28 0%, #2a0845 40%, #4a154b 100%) !important;
    color: #fcf4ff;
}

body.theme-both .section-title {
    color: #f472b6;
    text-shadow: 0 0 15px rgba(244, 114, 182, 0.5);
}

body.theme-both .type-filter-section {
    background: linear-gradient(135deg, #2e104d 0%, #1f0738 100%);
    border-color: #8b5cf6;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

body.theme-both .type-filter-label {
    color: #f5d0fe;
}

body.theme-both .accordion-controls {
    background: #2e104d;
    border: 1px solid #6b21a8;
    color: #fae8ff;
}

body.theme-both .accordion-ctrl-btn {
    background: #581c87;
    color: #fff;
    border-color: #8b5cf6;
}

body.theme-both .category-jump-select {
    background: #1f0738;
    color: #fae8ff;
    border-color: #8b5cf6;
}

body.theme-both .category-accordion-card {
    background: #1f0738;
    border: 1px solid #581c87;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.theme-both .category-accordion-header {
    background: linear-gradient(135deg, #581c87 0%, #7e22ce 100%);
    color: #ffffff;
}

body.theme-both .card {
    background: #28113c;
    border: 1px solid #4c1d95;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

body.theme-both .card h3 {
    color: #fae8ff;
}

body.theme-both .card .price {
    color: #fde047;
}

body.theme-both .desktop-cart-panel {
    background: #1f0738;
    border: 1px solid #581c87;
    color: #fae8ff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.theme-both .desktop-cart-panel h3 {
    color: #fae8ff;
}

/* ==========================================
   CRACKER TYPE FILTER & ANIMATION SELECTOR
   ========================================== */
.type-filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff8e7 100%);
    border: 2px solid #ffe082;
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.type-filter-label {
    font-weight: 800;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-filter-label i {
    color: var(--primary);
    font-size: 18px;
}

.type-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.type-filter-btn {
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #444;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.type-filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
}

.type-filter-btn.day-btn.active {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    border-color: #f57c00;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 124, 0, 0.4);
}

.type-filter-btn.night-btn.active {
    background: linear-gradient(135deg, #303f9f 0%, #1a237e 100%);
    border-color: #303f9f;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(48, 63, 159, 0.4);
}

.type-filter-btn.both-btn.active {
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
    border-color: #7b1fa2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(123, 31, 162, 0.4);
}

/* Cracker Type Badges on Cards */
.cracker-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.cracker-type-badge.day {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

.cracker-type-badge.night {
    background: #e8eaf6;
    color: #1a237e;
    border: 1px solid #c5cae9;
}

.cracker-type-badge.both {
    background: #f3e5f5;
    color: #4a148c;
    border: 1px solid #e1bee7;
}

@media (max-width: 768px) {
    .type-filter-section {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
    }

    .type-filter-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .type-filter-btn {
        justify-content: center;
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* ==========================================
   PRODUCT CARDS & PRICING UPGRADES
   ========================================== */
.card-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 5;
}

.card-badge-container .badge-discount {
    position: static;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.4);
}

.card-badge-container .badge-popular {
    background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
    color: #110404;
    font-weight: 800;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(251, 192, 45, 0.4);
}

.card-img-wrap {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 4, 4, 0.55);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(2px);
}

.card-img-wrap:hover .card-quick-view-overlay {
    opacity: 1;
}

.card-title-clickable {
    cursor: pointer;
    transition: color 0.2s;
}

.card-title-clickable:hover {
    color: var(--primary);
}

.price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.price-wrap .mrp-row {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.price-wrap .mrp {
    text-decoration: line-through;
    color: #999;
}

.price-wrap .selling-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-wrap .selling-row .price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}

.price-wrap .discount-inline-badge {
    background: #ffebee;
    color: #c62828;
    font-weight: 800;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #ffcdd2;
}

/* ==========================================
   PRODUCT DETAIL MODAL
   ========================================== */
.product-modal-box {
    max-width: 760px;
    width: 92%;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 0 24px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
    overflow-y: auto;
    padding-bottom: 16px;
    padding-right: 4px;
    flex: 1;
}

.product-modal-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #fdfbf7;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.03);
}

.product-modal-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 8px;
}

.product-modal-img-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-modal-note {
    padding: 9px 12px;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 10px;
    font-size: 11.5px;
    color: #78350f;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.08);
}

.product-modal-note i {
    color: #d97706;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-modal-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.product-modal-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.25;
}

.product-modal-price-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.modal-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
}

.modal-mrp {
    font-size: 15px;
    color: #888;
    text-decoration: line-through;
}

.modal-discount-pill {
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
}

.modal-savings-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #a5d6a7;
    width: fit-content;
}

.product-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary);
}

.stock-in {
    color: #2e7d32;
}

.stock-out {
    color: var(--primary);
}

.product-modal-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.45;
}

.product-modal-action-row {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 24px;
    margin: 0 -24px 0 -24px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    flex-shrink: 0;
    z-index: 10;
}

.modal-stepper {
    height: 44px;
}

.modal-add-btn {
    height: 44px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
}

.close-modal-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--primary);
}

/* ==========================================
   CART SAVINGS & SUBMIT ORDER CTA
   ========================================== */
.cart-summary-box {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-savings-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #81c784;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.submit-order-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.35);
    transition: all 0.25s ease;
}

.submit-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

@media (max-width: 768px) {
    .product-modal-box {
        padding: 18px 16px 0 16px;
        max-height: 88vh;
        width: 94%;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        overflow-y: auto;
        flex: 1;
        padding-bottom: 14px;
    }

    .product-modal-img-wrap {
        height: 250px;
        padding: 8px;
    }

    .product-modal-action-row {
        padding: 12px 16px 14px;
        margin: 0 -16px 0 -16px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .product-modal-title {
        font-size: 19px;
    }
}