:root {
    --bg-dark: #2A171A;
    --bg-card: #3D2226;
    --gold-primary: #F4511E;
    --gold-dark: #D84315;
    --gold-light: #FFCA28;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    --border-color: rgba(244, 81, 30, 0.2);
    --marquee-bg: #F4511E;
    --marquee-text: #FFFFFF;
}

.light-storefront {
    --bg-dark: #FFFDE7;
    --bg-card: #FFF8E1;
    --gold-primary: #F4511E;
    --gold-dark: #D84315;
    --gold-light: #FFB300;
    --text-light: #212529;
    --text-dark: #FAF9F6;
    --border-color: rgba(244, 81, 30, 0.15);
    --marquee-bg: #2A171A;
    --marquee-text: #FFFDE7;
}

.horizontal-scroll-2-rows {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-2-rows::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll-2-rows::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.horizontal-scroll-2-rows::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#shopApp {
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    transition: background-color 0.3s, color 0.3s;
    padding-bottom: 80px;
}

.top-marquee-bar {
    background-color: var(--marquee-bg);
    color: var(--marquee-text);
    padding: 8px 0;
    font-size: 0.825rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gold-primary);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 50%;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.marquee-item {
    margin-right: 50px;
    display: inline-block;
}

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

.navbar-custom {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    transition: all 0.3s;
    z-index: 1030 !important;
}

.navbar-brand {
    font-weight: 800;
    color: var(--text-light) !important;
    letter-spacing: 1px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--gold-primary);
}

.navbar-logo-img {
    max-height: 52px;
    margin-right: 0px;
    object-fit: contain;
}

.nav-menu-center {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-menu-link:hover,
.nav-menu-link.active {
    color: var(--gold-primary);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-item {
    color: var(--text-light);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
    background-color: var(--gold-primary);
    color: #1A1813 !important;
}

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

.header-action-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.header-action-btn:hover {
    color: var(--gold-primary);
}

.cart-widget {
    position: fixed;
    top: 10px;
    right: 25px;
    z-index: 1050;
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    padding: 6px 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.cart-widget-icon {
    font-size: 1.1rem;
    margin-right: 8px;
    color: var(--gold-primary);
    position: relative;
}

.cart-widget-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #E63946;
    color: white;
    font-size: 0.65rem;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-widget-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.cart-widget-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cart-widget-val {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Floating Bottom Checkout Bar */
.floating-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 2px solid var(--gold-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
    z-index: 1050;
}

.hero-fullscreen-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-bottom: 2px solid var(--gold-primary);
    background-color: #0A0A0B;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 1.2s ease-in-out, opacity 0.8s ease-in-out;
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 11, 0.4), rgba(10, 10, 11, 0.85));
    z-index: 3;
    display: flex;
    align-items: center;
}

.light-storefront .slide-overlay {
    background: linear-gradient(rgba(245, 245, 247, 0.4), rgba(245, 245, 247, 0.85));
}

.slide-content-box {
    max-width: 650px;
    padding: 30px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.light-storefront .slide-content-box {
    color: #1D1D1F;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-gold-grad {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: none;
    color: #1A1813 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.light-storefront .btn-gold-grad {
    color: #FFFFFF !important;
}

.btn-gold-grad:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.trust-banner {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

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

.trust-icon-box {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.trust-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
}

.trust-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.floating-social-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.floating-social-link:hover {
    background-color: var(--gold-primary);
    color: #1A1813;
    transform: scale(1.1);
}

.floating-offer-balloon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px;
    z-index: 1010;
    animation: slideUp 0.5s ease-out;
}

.light-storefront .floating-offer-balloon {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-offer-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--gold-primary);
    color: #1A1813;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.close-offer-btn:hover {
    transform: scale(1.1);
}

.brand-logo-card {
    background-color: transparent !important;
    border: none !important;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.brand-logo-img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    mix-blend-mode: multiply;
    transition: all 0.3s;
}

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

.hover-gold:hover {
    color: var(--gold-primary) !important;
    transition: color 0.25s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-card);
    color: var(--text-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 2px solid var(--gold-primary);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.cart-item-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-footer {
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 15px));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .navbar-brand {
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        width: auto !important;
    }

    .navbar-toggler {
        position: absolute;
        left: 15px;
        top: 18px;
        z-index: 1050;
        border-color: rgba(255, 255, 255, 0.25) !important;
    }

    .navbar-toggler-icon {
        filter: invert(1) !important;
    }

    .light-storefront .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.15) !important;
    }

    .light-storefront .navbar-toggler-icon {
        filter: none !important;
    }
}

/* Compact Flipkart Style Grid Cards on Homepage */
.top-product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-product-card:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
}

.featured-highlight {
    border: 2px solid var(--gold-primary) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: gold-glow-pulse 2s infinite ease-in-out;
}

@keyframes gold-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
        border-color: rgba(212, 175, 55, 1);
    }
}

.top-product-img-box {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.top-product-img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}

.top-product-title {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-light);
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.2;
}

.top-product-unit-info {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.top-product-actual-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #E63946 !important;
    font-weight: 700;
}

.top-product-discount {
    color: #E63946;
    font-weight: 700;
    font-size: 0.725rem;
}

.top-product-price {
    font-size: 0.8rem;
    font-weight: 800;
    color: #2A9D8F;
}

.card-qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
    border-top: 1px solid var(--border-color);
    padding-top: 4px;
}

.card-qty-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-qty-input {
    width: 45px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    font-weight: 800;
    padding: 1px 3px;
    border-radius: 4px;
    font-size: 0.725rem;
}

.light-storefront .card-qty-input {
    background-color: #FAF6EE;
    color: #1A1813;
}

.qty-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0px 8px;
    cursor: pointer;
    transition: all 0.2s;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
}

.qty-btn:hover {
    background-color: var(--gold-primary);
    color: #1A1813;
}

@media (max-width: 991.98px) {
    .header-actions {
        display: none !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-card);
        border-right: 2px solid var(--gold-primary);
        z-index: 1045;
        transition: left 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding: 110px 20px 20px;
        display: block !important;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
    }

    .navbar-collapse.show {
        left: 0;
    }

    .nav-menu-center {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    .nav-menu-link {
        font-size: 0.95rem !important;
    }
}

/* White Container overrides for featured grid */
.white-container-bg {
    background-color: #FFFFFF !important;
    color: #1A1813 !important;
}

.white-container-bg .top-product-card {
    background-color: #F8F9FA !important;
    border: 1px solid #E2E8F0 !important;
}

.white-container-bg .top-product-title {
    color: #1A1813 !important;
}

.white-container-bg .text-muted {
    color: #4A5568 !important;
}

.white-container-bg .card-qty-label {
    color: #718096 !important;
}

.white-container-bg .card-qty-input {
    background-color: #FFFFFF !important;
    color: #1A1813 !important;
    border: 1px solid var(--gold-primary) !important;
}

.category-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--gold-primary) !important;
}

.card-badge-container {
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 5;
}

.card-badge-featured {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #1A1813;
    font-weight: 800;
    font-size: 0.55rem;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1150;
    backdrop-filter: blur(3px);
}

.modal-content-store {
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    color: var(--text-light);
}

.form-control-store {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 6px;
    padding: 10px;
}

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    max-height: 70px;
    margin-bottom: 20px;
    animation: pulse-logo 1.5s infinite ease-in-out;
}

.loader-spinner {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold-primary);
    animation: spin-loader 1s ease-in-out infinite;
}

@keyframes spin-loader {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-logo {

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

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Sticky Red Marquee Banner */
.sticky-red-marquee {
    position: sticky;
    top: 72px;
    /* right below sticky navbar */
    z-index: 1020;
    background-color: #D32F2F;
    color: #FFFFFF;
    padding: 6px 0;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold-primary);
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
}

.marquee-inner {
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-right: 50px;
}

.marquee-logo {
    height: 24px;
    width: auto;
}

.marquee-firecart {
    height: 24px;
    width: auto;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sticky Top Category Scroll Bar */
.category-scroll-bar {
    position: sticky;
    top: 112px;
    /* sits right below red marquee */
    z-index: 999;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 10px;
    margin-bottom: 12px;
    background-color: var(--bg-card);
    border-bottom: 2px solid var(--gold-primary);
    scroll-behavior: smooth;
}

.category-scroll-bar::-webkit-scrollbar {
    height: 6px;
}

.category-scroll-bar::-webkit-scrollbar-thumb {
    background-color: var(--gold-primary);
    border-radius: 10px;
}

.category-scroll-item {
    flex: 0 0 90px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.category-scroll-item:hover {
    transform: translateY(-4px);
}

.category-scroll-item.active .category-scroll-img-box {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.category-scroll-item.active .category-scroll-label {
    color: var(--gold-primary);
}

.category-scroll-img-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.category-scroll-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.category-scroll-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.2;
    height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Grouped Category Headers & Products */
.category-banner-header {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #1A1813 !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    position: relative;
}

/* Quick Order Row & Checkout Styles */
.quick-row-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s;
}

.quick-row-card:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
}

.quick-row-img-box {
    width: 55px;
    height: 55px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.quick-row-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.quick-qty-box {
    width: 80px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    font-weight: 800;
}

.light-storefront .quick-qty-box {
    background-color: #FAF6EE;
    color: #1A1813;
}

.btn-quick-add {
    background-color: #00796B;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.btn-quick-add:hover {
    opacity: 0.9;
}

.quick-checkout-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 90px;
}

/* Discount Starburst Flashing Style */
.discount-starburst {
    position: absolute;
    top: -12px;
    right: 15px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #FF0000 0%, #D32F2F 100%);
    color: #FFFFFF !important;
    font-size: 0.9rem;
    font-weight: 900;
    width: 58px;
    height: 58px;
    padding: 3px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    clip-path: polygon(50% 0%, 61% 10%, 75% 5%, 80% 19%, 95% 17%, 92% 31%, 100% 42%, 91% 53%, 95% 67%, 81% 68%, 76% 82%, 63% 80%, 50% 100%, 37% 80%, 24% 82%, 19% 68%, 5% 67%, 9% 53%, 0% 42%, 8% 31%, 5% 17%, 20% 19%, 25% 5%, 39% 10%);
    animation: starburst-flash 1s infinite alternate ease-in-out;
}

@keyframes starburst-flash {
    0% {
        transform: scale(0.95);
        background: radial-gradient(circle, #FF3D3D 0%, #C62828 100%);
        filter: drop-shadow(0 0 2px rgba(255, 61, 61, 0.6));
    }

    100% {
        transform: scale(1.15);
        background: radial-gradient(circle, #FFD700 0%, #FF2E2E 100%);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
    }
}

@media (max-width: 767.98px) {
    .hero-fullscreen-slider {
        height: 250px !important;
    }

    .slide-bg {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    .container-fluid.px-3 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .row {
        --bs-gutter-x: 8px !important;
    }
}

/* Hanging Quick Order Widget */
.hanging-quick-order {
    position: fixed;
    top: 52px;
    /* Hangs right below the cart widget */
    right: 45px;
    /* Aligns with the cart widget */
    z-index: 1045;
    /* just below cart widget */
    transform-origin: top center;
    animation: hanging-swing 2.5s ease-in-out infinite alternate;
    text-decoration: none !important;
    display: block;
}

.hanging-card {
    background: linear-gradient(135deg, #FF3B30 0%, #C40000 100%);
    color: #FFFFFF;
    width: 95px;
    height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 15px;
    /* Space for the string */
    clip-path: polygon(50% 0%, 55% 18%, 67% 12%, 68% 28%, 80% 25%, 77% 40%, 90% 41%, 83% 54%,
            93% 62%, 82% 70%, 88% 82%, 76% 80%, 78% 93%, 65% 87%, 62% 99%, 50% 90%,
            38% 99%, 35% 87%, 22% 93%, 24% 80%, 12% 82%, 18% 70%, 7% 62%, 17% 54%,
            10% 41%, 23% 40%, 20% 25%, 32% 28%, 33% 12%, 45% 18%);
    transition: all 0.3s ease;
    padding: 10px;
}

.hanging-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 2px;
    height: 18px;
    background: #ffffff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    z-index: -1;
}

.hanging-card:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(255, 62, 62, 0.5));
}

.hanging-card .flashing-text {
    font-size: 0.65rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    animation: text-glow 1.5s infinite;
}

@keyframes hanging-swing {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

@keyframes text-glow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        color: #FFFFFF;
    }

    50% {
        opacity: 0.85;
        transform: scale(0.95);
        color: #FFE600;
    }
}

/* Mobile & Tablet responsiveness (scale down badge to fit smaller headers) */
@media (max-width: 767.98px) {
    .hanging-quick-order {
        top: 48px;
        right: 48px;
    }

    .hanging-card {
        width: 72px;
        height: 72px;
        padding: 6px;
        margin-top: 10px;
    }

    .hanging-card::before {
        top: -10px;
        height: 12px;
    }

    .hanging-card .flashing-text {
        font-size: 0.52rem;
        letter-spacing: 0px;
    }
}