/* ============================================================
   Blaze Theme — OrderArt (v27)
   Dark fast-food theme: charcoal + yellow + red-orange
   Bootstrap 5 · Alpine.js v2 · Barlow Condensed + Inter
   ============================================================ */

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.blaze-body {
    background: var(--blaze-bg);
    color: var(--blaze-text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--blaze-primary);
    color: #0d0d0d;
}

a { color: inherit; text-decoration: none; transition: color .2s; }

img { max-width: 100%; display: block; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blaze-bg2); }
::-webkit-scrollbar-thumb { background: var(--blaze-border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blaze-primary); }

/* ── Page loader ───────────────────────────────────────────── */
.blaze-loader {
    position: fixed;
    inset: 0;
    background: var(--blaze-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s;
}
.blaze-loader--done { opacity: 0; pointer-events: none; }
.blaze-loader-inner {
    width: 160px;
    height: 3px;
    background: var(--blaze-border);
    border-radius: 2px;
    overflow: hidden;
}
.blaze-loader-bar {
    height: 100%;
    width: 40%;
    background: var(--blaze-primary);
    border-radius: 2px;
    animation: loaderSlide 1s ease-in-out infinite alternate;
}
@keyframes loaderSlide {
    from { transform: translateX(-100%); }
    to   { transform: translateX(300%); }
}

/* ── Flash message ─────────────────────────────────────────── */
.blaze-flash {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    min-width: 320px;
    border-radius: 4px;
    font-size: 14px;
}

/* ── Main content wrapper ──────────────────────────────────── */
.blaze-main { min-height: 60vh; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.blaze-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.blaze-nav {
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0 4px;
    height: auto;
    min-height: 64px;
    overflow: visible;
    transition: background .3s, padding .3s;
}

.blaze-header--scrolled .blaze-nav {
    background: rgba(10, 10, 10, .97);
    border-bottom-color: var(--blaze-border);
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.blaze-nav-inner {
    height: 64px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;   /* centering anchor for .blaze-nav-links */
    overflow: visible;     /* let the oversized logo spill below the bar */
}

/* Logo — large, spilling over the bottom of the header bar (exact values from original) */
.blaze-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}
.blaze-logo img { height: 104px; width: auto; object-fit: contain; margin-top: 48px;}
@media (max-width: 575.98px) {
    .blaze-logo img {
        margin-top: 2px;
    }
}
.blaze-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--blaze-primary);
}

/* Nav links — centered in the header via flex so it reserves its own space and can
   never overlap the logo or the right-side actions (was absolute-centered) */
.blaze-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    flex: 1 1 auto;
    min-width: 0;
}
.blaze-nav-link {
    display: block;
    padding: .375rem .875rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #aaa;
    border-radius: 3px;
    transition: color .2s, background .2s;
}
.blaze-nav-link:hover,
.blaze-nav-link.active { color: #fff; }
.blaze-nav-link.active {
    color: var(--blaze-primary);
    background: rgba(255, 212, 73, .08);
}

/* Right actions */
.blaze-nav-actions {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-left: auto;
    flex-shrink: 0;
}
.blaze-auth-link {
    font-size: 12px;
    color: #888;
    transition: color .2s;
    white-space: nowrap;
}
.blaze-auth-link:hover { color: #fff; }
.blaze-auth-sep { color: var(--blaze-border2); font-size: 11px; }

/* Modal: input field icons */
.rightIconFld { position: relative; }
.rightIconFld .form-control { padding-right: 44px; }
.inputFieldIcon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
}
.fieldIcon { width: 18px; height: 18px; display: block; opacity: 0.45; fill: currentColor; }

/* Cart button */
.blaze-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--blaze-border);
    border-radius: 4px;
    color: #888;
    transition: border-color .2s, color .2s;
}
.blaze-cart-btn:hover { border-color: var(--blaze-primary); color: var(--blaze-primary); }
.blaze-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 16px;
    height: 16px;
    background: var(--blaze-primary);
    color: #0d0d0d;
    font-size: 9px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* Order Now button */
.blaze-order-btn {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    background: var(--blaze-primary);
    color: #0d0d0d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}
.blaze-order-btn:hover {
    background: #ffe066;
    color: #0d0d0d;
    transform: translateY(-1px);
}

/* User dropdown */
.blaze-user-btn {
    background: transparent;
    border: 1px solid var(--blaze-border);
    color: #aaa;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s, color .2s;
    cursor: pointer;
}
.blaze-user-btn:hover,
.blaze-user-btn.show { border-color: var(--blaze-primary); color: #fff; }
.blaze-user-btn::after { display: none; }

/* User dropdown (custom-toggled via .open, mirrors inner-page .blaze-inner-drop) */
.blaze-user-menu { position: relative; }
.blaze-user-drop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #141414;
    border: 1px solid var(--blaze-border);
    border-radius: 4px;
    padding: .5rem 0;
    min-width: 180px;
    box-shadow: 0 16px 40px rgba(0,0,0,.6);
    z-index: 1003;
}
.blaze-user-drop.open { display: block; }
.blaze-user-drop a {
    display: block;
    color: #aaa;
    font-size: 13px;
    padding: .5rem 1.25rem;
    text-decoration: none;
    transition: color .15s, background .15s;
}
.blaze-user-drop a:hover {
    background: var(--blaze-bg3);
    color: var(--blaze-primary);
}

/* Mobile toggler */
.blaze-toggler {
    background: transparent;
    border: 1px solid var(--blaze-border);
    border-radius: 3px;
    padding: 6px 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.blaze-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: #aaa;
    border-radius: 1px;
    transition: background .2s;
}
.blaze-toggler:hover span { background: var(--blaze-primary); }

/* Push actions to the right on desktop */
.blaze-nav-actions { margin-left: auto; }

/* Mobile off-canvas sidebar (matches inner pages + v18/v19) — hidden on desktop */
.blaze-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}
.blaze-nav-backdrop.open { opacity: 1; visibility: visible; }

.blaze-nav-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--blaze-bg2, #111);
    border-right: 1px solid var(--blaze-border, #1e1e1e);
    z-index: 1002;
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    transition: left .3s ease;
}
.blaze-nav-sidebar.open { left: 0; }

.blaze-nav-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    float: right;
    padding: 0;
}
.blaze-nav-close:hover { color: #fff; }

.blaze-nav-sidebar-logo {
    display: block;
    margin: 2.5rem 0 1.5rem;
    clear: both;
}
.blaze-nav-sidebar-logo img { max-height: 48px; width: auto; }

.blaze-nav-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-top: .5rem;
}
.blaze-nav-sidebar-nav a {
    display: block;
    padding: .6rem .75rem;
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background .15s, color .15s;
}
.blaze-nav-sidebar-nav a:hover,
.blaze-nav-sidebar-nav a.active {
    background: rgba(255, 212, 73, .1);
    color: var(--blaze-primary, #FFD449);
}

@media (max-width: 991.98px) {
    .blaze-toggler { display: flex; }
    .blaze-nav-backdrop { display: block; }
    body.blaze-nav-lock { overflow: hidden; }

    /* On scroll, extend the dark header background down to fully cover the
       overhanging logo. Our short mobile hero doesn't stay behind the header
       like the demo's full-viewport hero, so the black must reach the logo's
       bottom (~116px) itself. Logo bottom = 8px pad-top + 64px inner + 44px. */
    .blaze-header--scrolled .blaze-nav { padding-bottom: 48px; }

    /* Match inner-page header: clean borderless icons, evenly spaced */
    .blaze-nav-inner { padding: 0 1rem; }
    .blaze-nav-actions { gap: 1rem; }
    .blaze-user-btn {
        border: none;
        padding: .25rem;
        color: #ccc;
    }
    .blaze-cart-btn {
        border: none;
        width: auto;
        height: auto;
        color: #ccc;
    }
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.blaze-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}

/* Background */
.blaze-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.blaze-hero-bg-default { background: var(--blaze-bg); }
.blaze-hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.blaze-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blaze-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13,13,13,.96) 0%,
        rgba(13,13,13,.88) 50%,
        rgba(13,13,13,.55) 100%
    );
}

/* Diagonal split */
.blaze-hero-split {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46%;
    background: rgba(255,255,255,.02);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.blaze-hero-split::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blaze-primary);
    opacity: .6;
    transform: skewX(-3deg);
}

/* Content */
.blaze-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem;
}
.blaze-hero-row { min-height: calc(100vh - 64px); }

/* Badge */
.blaze-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blaze-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}
.blaze-hero-badge-sep { opacity: 0.5; }
.blaze-pulse-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.7); }
}

/* Title */
.blaze-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(60px, 8vw, 96px);
    font-weight: 900;
    font-style: italic;
    line-height: .92;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem;
    letter-spacing: -1px;
}
.blaze-highlight { color: var(--blaze-primary); }

/* Sub */
.blaze-hero-sub {
    color: #aaa;
    font-size: 15px;
    line-height: 1.65;
    max-width: 380px;
    margin-bottom: 2rem;
}

/* CTAs */
.blaze-hero-ctas { display: flex; gap: .875rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }

.blaze-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--blaze-primary);
    color: #0d0d0d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.blaze-btn-primary:hover {
    background: #ffe066;
    color: #0d0d0d;
    transform: translateY(-2px);
}
.blaze-btn-primary svg { transition: transform .2s; }
.blaze-btn-primary:hover svg { transform: translateX(3px); }

.blaze-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #bbb;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 26px;
    border: 1px solid var(--blaze-border2);
    border-radius: 3px;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}
.blaze-btn-outline:hover { border-color: var(--blaze-primary); color: var(--blaze-primary); }

/* Meta info */
.blaze-hero-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.blaze-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #888;
}
.blaze-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.blaze-meta-dot--green { background: #22c55e; }

/* Feature card (right side) */
.blaze-hero-feature { text-align: center; }
.blaze-hero-ring-outer {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px dashed rgba(255,212,73,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.blaze-hero-ring-inner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--blaze-bg3);
    border: 1px solid var(--blaze-border);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinSlow 30s linear infinite reverse;
}
.blaze-hero-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blaze-hero-price-badge {
    display: inline-block;
    background: var(--blaze-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    margin-top: 1rem;
}
.blaze-hero-feature-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blaze-primary);
    margin-top: .75rem;
    margin-bottom: 0;
}

/* Scroll cue */
.blaze-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.blaze-scroll-cue span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--blaze-primary));
    margin: 0 auto;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   STAT BAR
   ============================================================ */
/* ── Hero centre image ───────────────────────────────────────────────── */
.blaze-hero-centre-img {
    max-height: 340px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: multiply;
    animation: blazeCentreFloat 4s ease-in-out infinite;
}
@keyframes blazeCentreFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ── Category Showcase ───────────────────────────────────────────────── */
.blaze-cats-section { background: #0d0d0d; padding: 0; overflow-x: auto; overflow-y: hidden; position: relative; z-index: 1; scrollbar-width: none; }
.blaze-cats-section::-webkit-scrollbar { display: none; }

.blaze-cats-row {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 420px;
    grid-auto-columns: calc(100vw / 6);
    min-width: max-content;
}

.blaze-cat-card {
    position: relative; overflow: hidden; cursor: pointer;
    background: #0f0f0f; border-right: 1px solid rgba(255,255,255,.06);
    display: flex; flex-direction: column; align-items: center;
    transition: background .35s; text-decoration: none;
}
.blaze-cat-card:last-child { border-right: none; }
.blaze-cat-card:hover { background: #161616; }

.blaze-cat-card::after {
    content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 130%; height: 180px;
    background: radial-gradient(rgba(255,212,73,.18) 0%, transparent 70%);
    z-index: 1; transition: bottom .45s cubic-bezier(.22,1,.36,1), opacity .45s;
    opacity: 0; pointer-events: none;
}
.blaze-cat-card:hover::after { bottom: -30px; opacity: 1; }

.blaze-cat-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 18px; letter-spacing: 2.5px; text-transform: uppercase;
    color: #aaa; position: absolute; top: 1.1rem; left: 0; right: 0;
    text-align: center; z-index: 4; transition: color .3s, letter-spacing .3s;
}
.blaze-cat-card:hover .blaze-cat-name { color: var(--blaze-primary); letter-spacing: 3.5px; }

.blaze-cat-img-wrap {
    position: absolute; inset: 0; display: flex;
    align-items: flex-end; justify-content: center;
    padding: 44px 0 0; z-index: 2; overflow: hidden;
}
.blaze-cat-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
    background: linear-gradient(to top, #0f0f0f 0%, rgba(15,15,15,.85) 25%, rgba(15,15,15,.4) 50%, transparent 100%);
    z-index: 3; pointer-events: none; transition: background .35s;
}
.blaze-cat-card:hover .blaze-cat-img-wrap::after {
    background: linear-gradient(to top, #161616 0%, rgba(22,22,22,.75) 22%, rgba(22,22,22,.2) 48%, transparent 100%);
}

.blaze-cat-real-img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    display: block; transition: transform .5s cubic-bezier(.22,1,.36,1);
    will-change: transform; position: relative; z-index: 2;
}
.blaze-cat-card:hover .blaze-cat-real-img { transform: translateY(-22px) scale(1.08); }

.blaze-cat-badge {
    position: absolute; top: 22px; right: -42px;
    background: var(--blaze-secondary, #e05c2a); color: #fff;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 44px; transform: rotate(35deg); z-index: 5;
    opacity: 0; transition: opacity .2s .08s, right .35s cubic-bezier(.22,1,.36,1);
    pointer-events: none; white-space: nowrap;
}
.blaze-cat-card:hover .blaze-cat-badge { opacity: 1; right: -30px; }

.blaze-cat-rule {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--blaze-primary); transform: scaleX(0);
    transform-origin: left center;
    transition: transform .42s cubic-bezier(.22,1,.36,1); z-index: 5;
}
.blaze-cat-card:hover .blaze-cat-rule { transform: scaleX(1); }

.blaze-cat-card--featured .blaze-cat-name { color: var(--blaze-primary); }
.blaze-cat-card--featured .blaze-cat-rule { transform: scaleX(1); background: var(--blaze-secondary, #e05c2a); opacity: .4; }

@media (max-width: 991.98px) {
    .blaze-cats-row { grid-auto-columns: 180px; grid-template-rows: 300px; }
    .blaze-cat-name { font-size: 15px; }
}

/* ── Stat Bar ────────────────────────────────────────────────────────── */
.blaze-stat-bar {
    background: var(--blaze-bg2);
    border-top: 1px solid var(--blaze-border);
    border-bottom: 1px solid var(--blaze-border);
    padding: 1.25rem 0;
}
.blaze-stat-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.blaze-stat { text-align: center; }
.blaze-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--blaze-primary);
    line-height: 1;
}
.blaze-stat-num span { font-size: 20px; }
.blaze-stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
}
.blaze-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--blaze-border);
}
@media (max-width: 575.98px) {
    .blaze-stat-divider { display: none; }
    .blaze-stat-bar-inner { justify-content: center; column-gap: 2rem; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.blaze-marquee-wrap {
    background: var(--blaze-primary);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
}
.blaze-marquee-track { overflow: hidden; }
.blaze-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #0d0d0d;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.blaze-marquee-content span { padding: 0 .75rem; }
.blaze-marquee-sep { color: rgba(0,0,0,.35); padding: 0 .5rem !important; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — shared styles
   ============================================================ */
.blaze-section {
    padding: 5rem 0;
}
.blaze-section-header { margin-bottom: 3rem; }

.blaze-overline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blaze-primary);
    margin: 0 0 .5rem;
}
.blaze-overline--red { color: var(--blaze-secondary); }

.blaze-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.blaze-halal-note {
    margin-top: .75rem;
    font-size: 13px;
    color: var(--blaze-primary);
    font-style: italic;
}

/* ============================================================
   MENU SECTION — special selection
   ============================================================ */
.blaze-menu-section { background: var(--blaze-bg); }

/* Cuisine pills */
.blaze-cuisine-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.5rem;
}
.blaze-pill {
    background: var(--blaze-bg3);
    color: #999;
    border: 1px solid var(--blaze-border);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.blaze-pill:hover { color: #ccc; border-color: var(--blaze-border2); }
.blaze-pill--active {
    background: var(--blaze-primary) !important;
    color: #0d0d0d !important;
    border-color: var(--blaze-primary) !important;
}

/* Product grid */
.blaze-product-grid { row-gap: 0; }

/* Flat 2-col dish grid — items flow into both columns naturally */
.blaze-dish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
    .blaze-dish-grid { grid-template-columns: 1fr; }
}

/* Dish card */
.blaze-dish-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: .875rem;
    background: var(--blaze-bg3);
    border: 1px solid var(--blaze-border);
    border-left: 3px solid var(--blaze-primary);
    border-radius: 4px;
    padding: .875rem;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .15s;
    overflow: hidden;
}
.blaze-dish-card:hover {
    background: #1f1f1f;
    border-color: var(--blaze-primary);
    transform: translateX(3px);
}

.blaze-dish-img-wrap {
    width: 62px;
    height: 62px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--blaze-bg2);
}
.blaze-dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.blaze-dish-card:hover .blaze-dish-img { transform: scale(1.08); }

.blaze-dish-body { flex: 1; min-width: 0; }
.blaze-dish-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5rem;
}
.blaze-dish-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--blaze-text);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}
.blaze-dish-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--blaze-primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.blaze-dish-desc {
    font-size: 11px;
    color: var(--blaze-dimmed);
    margin: .25rem 0 0;
    line-height: 1.4;
}
.blaze-allergens {
    display: flex;
    gap: 4px;
    margin-top: .375rem;
    flex-wrap: wrap;
}
.blaze-allergen-icon img { border-radius: 2px; }

/* Stretch link */
.blaze-dish-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Category header in list */
.blaze-dish-category-header {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blaze-primary);
    letter-spacing: 1px;
    padding: 1rem 0 .5rem;
    border-bottom: 1px solid var(--blaze-border);
    margin-bottom: .75rem;
}

/* Pagination */
.blaze-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.blaze-page-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1px solid var(--blaze-border2);
    color: #888;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.blaze-page-btn:hover { border-color: var(--blaze-primary); color: var(--blaze-primary); }
.blaze-page-info { font-size: 12px; color: #777; }

/* View full menu link */
.blaze-btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1px solid var(--blaze-primary);
    color: var(--blaze-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 3px;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.blaze-btn-outline-yellow:hover {
    background: var(--blaze-primary);
    color: #0d0d0d;
}

/* ============================================================
   STAFF PICKS / CHEF RECOMMENDS
   ============================================================ */
.blaze-picks-section {
    background: var(--blaze-bg2);
    border-top: 1px solid var(--blaze-border);
}

.blaze-pick-card {
    display: block;
    background: var(--blaze-bg3);
    border: 1px solid var(--blaze-border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .25s, transform .2s;
    height: 100%;
}
.blaze-pick-card:hover {
    border-color: var(--blaze-primary);
    transform: translateY(-4px);
}

.blaze-pick-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--blaze-bg);
}
.blaze-pick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.blaze-pick-card:hover .blaze-pick-img { transform: scale(1.06); }
.blaze-pick-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.blaze-pick-rank {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--blaze-primary);
    opacity: .12;
    line-height: 1;
    pointer-events: none;
}
.blaze-pick-badge {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: var(--blaze-primary);
    color: #0d0d0d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 0;
}

.blaze-pick-body { padding: 1rem 1.125rem; }
.blaze-pick-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .375rem;
    line-height: 1.1;
    text-transform: uppercase;
}
.blaze-pick-desc {
    font-size: 12px;
    color: #777;
    margin: 0 0 .875rem;
    line-height: 1.5;
}
.blaze-pick-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blaze-pick-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--blaze-primary);
}
.blaze-pick-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
    transition: color .2s;
}
.blaze-pick-card:hover .blaze-pick-cta { color: var(--blaze-primary); }

/* ============================================================
   ELFSIGHT SECTION
   ============================================================ */
.blaze-elfsight-section {
    background: #fff;
    border-top: 1px solid var(--blaze-border);
    border-bottom: 1px solid var(--blaze-border);
}

/* ============================================================
   BOOK TABLE CTA STRIP
   ============================================================ */
.blaze-book-strip {
    background: var(--blaze-primary);
    padding: 2rem 0;
}
.blaze-book-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.blaze-book-strip-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0d0d0d;
    margin: 0;
    line-height: 1;
}
.blaze-book-strip-sub {
    font-size: 13px;
    color: rgba(0,0,0,.55);
    margin: .25rem 0 0;
}
.blaze-book-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #0d0d0d;
    color: var(--blaze-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
}
.blaze-book-strip-btn:hover { background: #1a1a1a; color: var(--blaze-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.blaze-footer {
    background: #080808;
    border-top: 1px solid var(--blaze-border);
    padding: 4rem 0 0;
    color: #666;
    font-size: 13px;
}

.blaze-footer-brand { padding-right: 2rem; }
.blaze-footer-logo { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(.9); }
.blaze-footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--blaze-primary);
    margin-bottom: 1rem;
}
.blaze-footer-tagline { color: #777; line-height: 1.65; margin-bottom: 1.25rem; }

.blaze-footer-social { display: flex; gap: 8px; }
.blaze-social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--blaze-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: border-color .2s, color .2s;
}
.blaze-social-btn:hover { border-color: var(--blaze-primary); color: var(--blaze-primary); }

.blaze-footer-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}
.blaze-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blaze-footer-links li { margin-bottom: .625rem; }
.blaze-footer-links a {
    color: #666;
    transition: color .2s;
}
.blaze-footer-links a:hover { color: var(--blaze-primary); }

.blaze-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}
.blaze-footer-contact svg { flex-shrink: 0; margin-top: 2px; color: #333; }

.blaze-footer-hours { color: #666; }
.blaze-footer-hours ul { list-style: none; padding: 0; margin: 0; }
.blaze-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: .25rem 0;
    border-bottom: 1px solid #111;
    font-size: 12px;
}
.blaze-footer-hours span { color: #333; }

.blaze-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    border-top: 1px solid #111;
    padding: 1.25rem 0;
    margin-top: 3rem;
    font-size: 11px;
    color: #2a2a2a;
}
.blaze-powered { margin: 0; }
.blaze-orderart-link { color: #333; transition: color .2s; }
.blaze-orderart-link:hover { color: var(--blaze-primary); }

/* ============================================================
   SEO SECTION
   ============================================================ */
/* SEO band. The shared seo_page_settings.css renders .seo-info-slider as a nowrap
   scrolling marquee; without a clipping wrapper it overflowed and broke the mobile
   layout. Here the section IS the marquee wrapper (overflow:hidden), so the ticker
   scrolls but can never push the page sideways. Ticker rules are self-contained so
   it works even if seo_page_settings.css isn't registered. */
.blaze-seo-section {
    padding: .9rem 0;
    border-top: 1px solid var(--blaze-border);
    background: var(--blaze-bg);
    font-size: 13px;
    color: #777;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.blaze-seo-section .seo-info-slider {
    display: inline-block;
    white-space: nowrap;
    animation: blazeSeoScroll 35s linear infinite;
}
.blaze-seo-section .seo-info-slider span {
    display: inline-block;
    padding-left: 100%;
}
@keyframes blazeSeoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* Static variant (non-home/contact/bookings pages) — plain centered block, no scroll */
.blaze-seo-section .seo-info-static {
    display: block;
    white-space: normal;
    animation: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
    line-height: 1.7;
    text-align: center;
}
.blaze-seo-section img { max-width: 100%; height: auto; }

/* ============================================================
   MODALS — dark override
   ============================================================ */
.modal-content {
    background: #141414;
    border: 1px solid var(--blaze-border);
    color: var(--blaze-text);
}
.modal-header {
    border-bottom: 1px solid var(--blaze-border);
    padding: 1rem 1.5rem;
}
.modal-title { color: #fff; font-weight: 600; }
.btn-close { filter: invert(1) brightness(.5); }
.modal-body { padding: 1.5rem; }
.modal-footer {
    border-top: 1px solid var(--blaze-border);
    padding: 1rem 1.5rem;
}
.form-control, .form-select {
    background: var(--blaze-bg3);
    border: 1px solid var(--blaze-border2);
    color: var(--blaze-text);
    border-radius: 4px;
}
.form-control:focus, .form-select:focus {
    background: var(--blaze-bg3);
    border-color: var(--blaze-primary);
    color: var(--blaze-text);
    box-shadow: 0 0 0 3px rgba(255,212,73,.1);
}
.form-label { font-size: 12px; font-weight: 500; color: #888; margin-bottom: .375rem; }
.form-control::placeholder { color: #666; }

.btn-primary {
    background: var(--blaze-primary);
    border-color: var(--blaze-primary);
    color: #0d0d0d;
    font-weight: 700;
}
.btn-primary:hover {
    background: #ffe066;
    border-color: #ffe066;
    color: #0d0d0d;
}

/* Modal: scoped overrides for modalNewstyle */
.modalNewstyle .modal-content {
    background: #141414;
    border: 1px solid var(--blaze-border);
    border-radius: 6px;
    color: var(--blaze-text);
}
.modalNewstyle .modal-header { padding: 1.5rem 2rem 1rem; border-bottom: none; }
.modalNewstyle .modal-body   { padding: 0.5rem 2rem 2rem; }
.modalNewstyle .modal-title,
.modalNewstyle .mdTitle { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.modalNewstyle .btn-close { filter: invert(1) brightness(.5); opacity: .7; }
.modalNewstyle .btn-close:hover { opacity: 1; }

/* Social / outline buttons */
.btnDarkOutline {
    background: transparent;
    border: 1px solid var(--blaze-border2);
    color: rgba(255,255,255,.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background .2s, border-color .2s;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    text-decoration: none;
}
.btnDarkOutline:hover {
    background: rgba(255,212,73,.1);
    border-color: var(--blaze-primary);
    color: var(--blaze-primary);
}

/* Primary button (modal) */
.btn.btnPrimary {
    background: var(--blaze-primary);
    border-color: var(--blaze-primary);
    color: #0d0d0d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background .25s;
}
.btn.btnPrimary:hover { background: #ffe066; border-color: #ffe066; color: #0d0d0d; }

/* OR divider */
.sideLinesDivider { overflow: hidden; text-align: center; position: relative; }
.sideLinesDivider .dividerText {
    display: inline-block;
    position: relative;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.sideLinesDivider .dividerText::before,
.sideLinesDivider .dividerText::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    margin-top: -1px;
    border-top: 1px solid var(--blaze-border);
}
.sideLinesDivider .dividerText::before { right: 100%; }
.sideLinesDivider .dividerText::after  { left: 100%; }

/* Dark form controls scoped to modal */
.modalNewstyle .form-control,
.modalNewstyle .form-select {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--blaze-border2);
    color: rgba(255,255,255,.85);
    border-radius: 4px;
}
.modalNewstyle .form-control::placeholder { color: rgba(255,255,255,.35); }
.modalNewstyle .form-control:focus,
.modalNewstyle .form-select:focus {
    background: rgba(255,255,255,.09);
    border-color: var(--blaze-primary);
    box-shadow: 0 0 0 2px rgba(255,212,73,.15);
    color: rgba(255,255,255,.9);
    outline: none;
}

/* Links */
.simpleLink { color: var(--blaze-primary); text-decoration: none; font-size: 13px; transition: color .2s; }
.simpleLink:hover { color: #ffe066; text-decoration: underline; }
.linkStyle2 { color: var(--blaze-primary); font-size: 12px; font-weight: 600; text-decoration: none; transition: color .2s; }
.linkStyle2:hover { color: #ffe066; }
.textPrimary { color: var(--blaze-primary) !important; }

/* Checkboxes */
.modalNewstyle .form-check-label { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.5; }
.modalNewstyle .form-check-input { border-color: rgba(255,212,73,.4); }
.modalNewstyle .form-check-input:checked { background-color: var(--blaze-primary); border-color: var(--blaze-primary); }

/* Error / OTP */
.errorMsg { color: #e55; font-size: 12px; min-height: 1.2em; }
#timer { font-size: 13px; color: rgba(255,255,255,.55); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .blaze-hero { min-height: auto; padding: 100px 0 60px; }
    .blaze-hero-title { font-size: clamp(48px, 12vw, 72px); }
    .blaze-hero-split { display: none; }
    .blaze-hero-content { padding: 0 1.5rem; }
    .blaze-section { padding: 3.5rem 0; }
    .blaze-footer-brand { padding-right: 0; }
}

@media (max-width: 767.98px) {
    .blaze-hero-title { font-size: 52px; }
    .blaze-stat-bar-inner { gap: .75rem; }
    .blaze-stat-num { font-size: 28px; }
    .blaze-section { padding: 3rem 0; }
    .blaze-book-strip-inner { justify-content: center; text-align: center; }
    .blaze-footer-bottom { justify-content: center; text-align: center; }
    .blaze-picks-grid .col-md-6 { margin-bottom: 1rem; }
}

@media (max-width: 575.98px) {
    .blaze-hero { padding-top: 80px; }
    .blaze-hero-title { font-size: 44px; }
    .blaze-hero-ctas { flex-direction: column; align-items: flex-start; }
    .blaze-btn-primary, .blaze-btn-outline { width: 100%; justify-content: center; }
    .blaze-dish-card { flex-direction: column; align-items: flex-start; }
    .blaze-dish-img-wrap { width: 100%; height: 140px; }
}

/* ============================================================
   ALPINE CLOAK
   ============================================================ */
[x-cloak] { display: none !important; }

/* ============================================================
 * Floating cart tape — copied from newthemechangeui.css
 * so it loads on inner pages (main.php / index.php) which
 * do NOT register NewHeaderFooterAsset / Main_innerAsset
 * ============================================================ */

/* --- Global rules --- */
.btn.payBtn {
  font-size: 14px;
  line-height: 1.3;
  border: 2px solid var(--primary);
  color: #fff;
  background: var(--primary);
}
.floatingCart {
    padding: 15px 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px 30px 0 0;
    z-index: 7;
}
.floatingCart .cartPrice {
    font-size: 18px;
    font-weight: bold;
}
.floatingCart .cartPrice > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.floatingCart .cartPrice > span + span {
    margin-left: 5px;
}
.floatingCart .cartPrice > span > img {
    display: block;
}
.mobile_footer_tape {
    display: none;
}
.floatingCart .cartPrice svg path {
    fill: var(--primary-theme-color) !important;
}
.floatingCartFixBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}
.floatingCartFixBtn .fixBtnCol {
    flex: 0 0 50%;
    border-radius: 10px;
    padding: 10px;
}
.floatingCartFixBtn .fixBtnCol span.cartPrice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.fixBtnCol .cartPrice svg {
    width: 18px;
    display: block;
}
.cartRightText.viewCartItems.btn_primary.btn {
    margin-bottom: 0px;
    padding: 10px;
}
.nwCartTitle.text-center > h2 {
    color: black;
}

/* --- @media (max-width: 1199px) --- */
@media (max-width: 1199px) {
    .sidebarright {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        z-index: 11;
        margin: 0;
        overflow-y: inherit;
        -moz-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        -webkit-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        -moz-transform: translateY(200%) !important;
        -o-transform: translateY(200%) !important;
        -ms-transform: translateY(200%) !important;
        -webkit-transform: translateY(200%) !important;
        transform: translateY(200%) !important;
    }
    .cartSlide .sidebarright {
        -moz-transform: translateY(0%) !important;
        -o-transform: translateY(0%) !important;
        -ms-transform: translateY(0%) !important;
        -webkit-transform: translateY(0%) !important;
        transform: translateY(0%) !important;
    }
    .mobile_footer_tape .nwCartInner {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px 0 100px;
    }
    .mobile_footer_tape .nwCartMain {
        background-color: #ffffff;
        box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
        border-radius: 30px 30px 0 0;
        padding: 15px;
    }
    .cartBackIcon {
        position: absolute;
        left: 10px;
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: -6px;
    }
    .cartBackIcon > img {
        display: block;
    }
    html.cartSlide {
        position: relative;
        overflow: hidden;
    }
    html.cartSlide::before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        -moz-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        -webkit-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        background-color: rgba(19, 15, 38, 0.8);
        z-index: 10 !important;
    }
    .mobile_footer_tape {
        display: block;
    }
    .cartSlide .productDetailPage .sidebarright {
        top: auto;
    }
    .sidebarright {
        width: 100% !important;
    }
    .mobile_footer_tape .pageContent.mobilePageContent {
        padding: 0;
    }
}

/* --- @media (max-width: 767px) --- */
@media (max-width: 767px) {
    .floatingCart {
        padding: 10px 15px;
        border-radius: 20px 20px 0 0;
    }
    .floatingCart .cartPrice svg {
        width: 20px;
    }
    .floatingCart {
        padding: 8px 15px;
    }
    .floatingCart .cartPrice {
        font-size: 16px;
    }
    .cartRightText.viewCartItems a {
        font-size: 14px;
    }
}

/* --- @media (max-width: 575px) --- */
@media (max-width: 575px) {
    .cartBackIcon {
        left: 0;
    }
    .cartBackIcon > img {
        max-width: 18px;
    }
    .floatingCart .cartPrice > span + span {
        margin-left: 2px;
    }
}
/* ============================================================
   Mobile cart tape — imported from web_v18/css/style.css
   (missing pieces only; slide mechanics already present above)
   ============================================================ */
.mobile_footer_tape {
    position: relative;
    z-index: 999;
    color: #1B2126;
}
.mobile_footer_tape .pageContent {
    padding: 0;
    position: relative;
}
.mobile_footer_tape .nwaddDetailInner {
    margin-top: 25px;
}
.mobile_footer_tape .nwaddDetail {
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.mobile_footer_tape .nwaddDetail h2 {
    font-size: 14px;
    margin: 0;
}
.mobile_footer_tape .nwaddDetail p {
    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.2;
    color: #130F26;
}
.mobile_footer_tape .textandwordWrap span {
    font-size: 10px;
    display: inline-block;
}
.mobile_footer_tape .sizeCol > p {
    font-size: 12px;
    margin: 0;
}
.mobile_footer_tape .edRMainCol {
    padding-top: 10px;
}
.mobile_footer_tape .rEdCol ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}
.mobile_footer_tape .rEdCol ul li + li {
    margin-left: 15px;
}
.mobile_footer_tape .rEdCol ul li span {
    display: inline-block;
    vertical-align: middle;
}
.mobile_footer_tape .rEdCol ul li span img {
    display: block;
}
.mobile_footer_tape .cart-inc-dec .quantity {
    border: 1px solid #dddddd;
    width: 84px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mobile_footer_tape .cart-inc-dec .quantity .minus {
    border: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDExIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAuNSAxSDEwLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
    height: 100%;
    width: 26px;
    flex: 0 0 auto;
    border-radius: 30px 0px 0px 30px;
    box-shadow: none;
}
.mobile_footer_tape .cart-inc-dec .quantity .qty {
    font-size: 14px;
    font-weight: 400;
    width: 25px;
    height: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    flex: 1 0 0;
    text-align: center;
}
.mobile_footer_tape .cart-inc-dec .quantity .plus {
    border: 0;
    background-color: transparent;
    box-shadow: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 0;
    height: 100%;
    width: 26px;
    flex: 0 0 auto;
    border-radius: 0px 30px 30px 0px;
    box-shadow: none;
}
.mobile_footer_tape .addchilliSelect {
    position: relative;
    transition: all 300ms ease-in-out 0s;
}
.mobile_footer_tape a.removeStyle {
    color: #d33315;
}
.mobile_footer_tape .nwaddText h3 {
    font-size: 16px;
    color: #130F26;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 1199px) {
    .mobile_footer_tape .sidebarright {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        z-index: 11;
        margin: 0;
        overflow-y: inherit;
        transition: all 300ms ease-in-out 0s;
        transform: translateY(200%);
    }
    .cartSlide .mobile_footer_tape .sidebarright {
        transform: translateY(0%);
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle {
        position: relative;
        padding: 0 0 15px;
        border-bottom: 1px solid #E3E3E3;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -6px;
    }
    .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon img {
        display: block;
    }
    .mobile_footer_tape .cartCardImg {
        width: 50px;
    }
    .mobile_footer_tape .cartCardImg img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
    }
    .p2pCol {
        padding: 20px 15px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #FFFFFF;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 20px 20px 0 0;
        z-index: 9999;
    }
    .priceLgText {
        font-size: 22px;
        font-weight: bold;
    }
}

/* ── btn_primary (same pattern as v18 style.css tail): the shared css/style.css that
   defines .btn_primary is not loaded on the homepage, and Bootstrap 5 resets .btn to
   transparent — restore the theme button for the cart tape / Proceed To Pay ── */
.btn.btn_primary,
.cartRightText.btn_primary.btn {
    background-color: var(--primary-theme-color) !important;
    color: #ffffff !important;
    border: 0 !important;
}
.btn.btn_primary:hover,
.btn.btn_primary:focus {
    color: #ffffff !important;
    opacity: 0.85;
}
.btn.btn_primary a,
.cartRightText.btn_primary.btn a {
    color: #ffffff !important;
    text-decoration: none;
}

/* Proceed To Pay button — sizing copied from newthemechangeui.css mobile rules */
@media (max-width: 1199px) {
    .btn.btn_primary.payBtn {
        text-align: left;
        position: relative;
        font-weight: 700;
        min-width: 145px;
        border-radius: 14px;
        text-transform: capitalize;
        font-size: 13px;
        padding: 11px 45px 11px 15px;
    }
    .btn.btn_primary.payBtn > span {
        line-height: 1;
    }
}
.eoA-Dm {
    color: #fff;
}
.blaze-elfsight-section {
    background: #080808;
}
