/*
 * ============================================================
 *  ZAPTOU — MOBILE APP EXPERIENCE v1.0
 *  Premium App-Like Interface for Delivery Stores
 *  Mobile First · 60fps · Touch Optimized
 * ============================================================
 */

/* ── 0. MOBILE VIEWPORT & RESET ──────────────────────────── */
@supports (-webkit-touch-callout: none) {
    .z-mob-shell {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

/* ── 1. MOBILE COMPACT HEADER ────────────────────────────── */
.z-mob-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: rgba(255, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--z-border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: transform var(--z-transition), box-shadow var(--z-transition);
}

.z-mob-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.z-mob-header-inner {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    max-width: 100%;
}

.z-mob-header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.z-mob-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    text-decoration: none;
    text-align: center;
}

.z-mob-header-center .z-mob-header-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    border: 1.5px solid var(--z-border, #e5e7eb);
    flex-shrink: 0;
    background: #fff;
}

.z-mob-header-center .z-mob-store-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--z-text, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    line-height: 1.2;
}

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

.z-mob-header-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--z-border);
    flex-shrink: 0;
}

.z-mob-header-info {
    min-width: 0;
    flex: 1;
}

.z-mob-header-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--z-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.z-mob-header-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.z-mob-header-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.z-mob-header-status.open {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.z-mob-header-status.closed {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
}

.z-mob-header-status .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.z-mob-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--z-text-secondary);
    padding: 2px 6px;
    background: var(--z-surface-2);
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.z-mob-header-pill .material-symbols-outlined {
    font-size: 12px;
}

.z-mob-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.z-mob-header-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--z-text-secondary);
    cursor: pointer;
    transition: all var(--z-transition);
    position: relative;
}

.z-mob-header-btn:active {
    transform: scale(0.9);
    background: var(--z-surface-hover);
}

.z-mob-header-btn .badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--z-primary);
    border: 2px solid var(--z-surface);
}

/* ── 2. MOBILE HERO ──────────────────────────────────────── */
.z-mob-hero {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.z-mob-hero-bg {
    position: absolute;
    inset: 0;
}

.z-mob-hero-bg picture {
    display: block;
}

.z-mob-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z-mob-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.z-mob-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.z-mob-hero-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.z-mob-hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.z-mob-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z-mob-hero-text h1 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 4px;
    line-height: 1.15;
}

.z-mob-hero-text .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
}

.z-mob-hero-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.z-mob-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
}

.z-mob-hero-stat .material-symbols-outlined {
    font-size: 13px;
}

.z-mob-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.z-mob-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--z-transition);
    min-width: 0;
}

.z-mob-hero-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.25);
}

.z-mob-hero-btn.primary {
    background: var(--z-primary);
    border-color: var(--z-primary);
    grid-column: 1 / -1;
    height: 42px;
    font-size: 0.85rem;
}

.z-mob-hero-btn .material-symbols-outlined {
    font-size: 16px;
}

/* ── 3. MOBILE SEARCH BAR ────────────────────────────────── */
.z-mob-search {
    position: sticky;
    top: 62px;
    z-index: 1050;
    background: rgba(255, 248, 246, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px 8px;
    border-bottom: 1px solid var(--z-border);
}

.z-mob-searchbox {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    background: var(--z-surface);
    border: 1.5px solid var(--z-border-strong);
    border-radius: 12px;
    padding: 0 14px;
    transition: border-color var(--z-transition), box-shadow var(--z-transition);
}

.z-mob-searchbox:focus-within {
    border-color: var(--z-primary);
    box-shadow: 0 0 0 3px var(--z-primary-glow);
}

.z-mob-searchbox .material-symbols-outlined {
    color: var(--z-text-muted);
    font-size: 20px;
    flex-shrink: 0;
}

.z-mob-searchbox input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--z-font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--z-text);
}

.z-mob-searchbox input::placeholder {
    color: var(--z-text-muted);
    font-weight: 400;
}

/* ── 4. MOBILE CATEGORY TABS ─────────────────────────────── */
.z-mob-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 16px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.z-mob-categories::-webkit-scrollbar {
    display: none;
}

.z-mob-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--z-border);
    background: var(--z-surface);
    color: var(--z-text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--z-transition);
    scroll-margin-top: 130px;
}

.z-mob-cat-pill:active {
    transform: scale(0.95);
}

.z-mob-cat-pill.active {
    background: var(--z-primary);
    border-color: var(--z-primary);
    color: #fff;
    box-shadow: var(--z-shadow-primary);
}

.z-mob-cat-pill img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.z-mob-cat-pill .material-symbols-outlined {
    font-size: 15px;
}

/* ── 5. MOBILE PRODUCT CARDS ─────────────────────────────── */
.z-mob-products {
    padding: 0 16px;
}

.z-mob-section {
    margin-top: 20px;
}

.z-mob-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 2px;
}

.z-mob-section-head h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--z-text);
    margin: 0;
}

.z-mob-section-head .see-all {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--z-primary);
    text-decoration: none;
}

/* Horizontal rail */
.z-mob-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.z-mob-rail::-webkit-scrollbar {
    display: none;
}

/* Featured product card (horizontal rail) */
.z-mob-featured-card {
    flex: 0 0 240px;
    background: var(--z-surface);
    border: 1px solid var(--z-border);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform var(--z-transition), box-shadow var(--z-transition);
}

.z-mob-featured-card:active {
    transform: scale(0.97);
}

.z-mob-featured-card .img-wrap {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: var(--z-surface-2);
}

.z-mob-featured-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--z-transition);
}

.z-mob-featured-card:active .img-wrap img {
    transform: scale(1.05);
}

.z-mob-featured-card .add-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--z-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(167, 58, 0, 0.3);
    cursor: pointer;
    transition: transform var(--z-transition);
}

.z-mob-featured-card .add-btn:active {
    transform: scale(0.85);
}

.z-mob-featured-card .add-btn .material-symbols-outlined {
    font-size: 20px;
}

.z-mob-featured-card .card-body {
    padding: 12px;
}

.z-mob-featured-card .card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--z-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.z-mob-featured-card .card-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--z-text);
    margin-bottom: 2px;
    line-height: 1.2;
}

.z-mob-featured-card .card-desc {
    font-size: 0.72rem;
    color: var(--z-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    line-height: 1.3;
}

.z-mob-featured-card .card-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--z-primary);
}

.z-mob-featured-card .card-old-price {
    font-size: 0.72rem;
    color: var(--z-text-muted);
    text-decoration: line-through;
    margin-right: 4px;
}

/* List product card (dual-class: z-store-product-card + z-mob-list-card) */
.z-mob-list-card {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--z-surface);
    border: 1px solid var(--z-border);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: transform var(--z-transition);
    cursor: pointer;
}

.z-mob-list-card:active {
    transform: scale(0.98);
}

/* Media thumbnail */
.z-mob-list-card .z-mob-list-card-thumb,
.z-mob-list-card .z-store-product-media {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--z-surface-2);
    position: relative;
}

.z-mob-list-card .z-mob-list-card-thumb img,
.z-mob-list-card .z-store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info section */
.z-mob-list-card .z-mob-list-card-info,
.z-mob-list-card .z-store-product-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.z-mob-list-card .z-store-product-category {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--z-primary);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.z-mob-list-card .z-store-product-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--z-text);
    line-height: 1.25;
    margin: 0 0 2px;
}

.z-mob-list-card .z-store-product-body p {
    font-size: 0.72rem;
    color: var(--z-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    margin: 0;
}

/* Footer with price and add button */
.z-mob-list-card .z-mob-list-card-bottom,
.z-mob-list-card .z-store-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.z-mob-list-card .z-store-old-price {
    font-size: 0.7rem;
    color: var(--z-text-muted);
    text-decoration: line-through;
    display: block;
}

.z-mob-list-card .z-store-price-wrap strong,
.z-mob-list-card .z-store-product-footer strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--z-primary);
}

/* Add button */
.z-mob-list-card .z-mob-list-card-add,
.z-mob-list-card .z-store-add-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--z-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform var(--z-transition);
}

.z-mob-list-card .z-mob-list-card-add:active,
.z-mob-list-card .z-store-add-btn:active {
    transform: scale(0.85);
}

.z-mob-list-card .z-store-add-btn .material-symbols-outlined,
.z-mob-list-card .z-mob-list-card-add .material-symbols-outlined {
    font-size: 20px;
}

/* Hide desktop-specific badges on mobile list cards */
@media (max-width: 767px) {
    .z-mob-list-card .z-store-product-badges {
        display: none;
    }
}

/* ── 6. BADGES ───────────────────────────────────────────── */
.z-mob-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.z-mob-badge.promo {
    background: #dc2626;
    color: #fff;
}

.z-mob-badge.new {
    background: #2563eb;
    color: #fff;
}

.z-mob-badge.best {
    background: var(--z-accent);
    color: #fff;
}

.z-mob-badge.combo {
    background: #7c3aed;
    color: #fff;
}

/* ── 7. BOTTOM NAVIGATION ────────────────────────────────── */
.z-mob-bottomnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1070;
    background: rgba(255, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--z-border);
    display: flex;
    justify-content: space-around;
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.z-mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--z-text-muted);
    padding: 4px 16px;
    position: relative;
    transition: color var(--z-transition);
    min-width: 56px;
}

.z-mob-nav-item.active {
    color: var(--z-primary);
}

.z-mob-nav-item .material-symbols-outlined {
    font-size: 22px;
    transition: transform var(--z-transition);
}

.z-mob-nav-item.active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.z-mob-nav-item:active .material-symbols-outlined {
    transform: scale(0.85);
}

.z-mob-nav-label {
    font-size: 0.6rem;
    font-weight: 700;
}

.z-mob-nav-dot {
    position: absolute;
    top: 2px;
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--z-primary);
}

.z-mob-nav-badge {
    position: absolute;
    top: 0;
    right: 6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--z-primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── 8. FLOATING CART BUTTON ─────────────────────────────── */
.z-mob-floating-cart {
    position: fixed;
    bottom: 72px;
    left: 16px;
    right: 16px;
    z-index: 1065;
    display: none;
}

.z-mob-floating-cart.visible {
    display: block;
}

.z-mob-floating-cart-btn {
    width: 100%;
    height: 52px;
    background: var(--z-primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-family: var(--z-font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(167, 58, 0, 0.3);
    transition: transform var(--z-transition), filter var(--z-transition);
    position: relative;
    overflow: hidden;
}

.z-mob-floating-cart-btn:active {
    transform: scale(0.97);
}

.z-mob-floating-cart-btn .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z-mob-floating-cart-btn .cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}

.z-mob-floating-cart-btn .total {
    font-size: 1rem;
    font-weight: 800;
}

/* Shimmer effect */
.z-mob-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: z-mob-shimmer 2.5s infinite;
    pointer-events: none;
}

@keyframes z-mob-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── 9. BOTTOM SHEET (Product Detail / Cart) ─────────────── */
.z-mob-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1080;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.z-mob-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.z-mob-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1085;
    background: var(--z-surface);
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
    overscroll-behavior: contain;
}

.z-mob-sheet.active {
    transform: translateY(0);
}

/* Desktop: side drawer */
@media (min-width: 768px) {
    .z-mob-sheet {
        left: auto;
        right: 0;
        top: 0;
        bottom: 0;
        width: 440px;
        max-height: 100vh;
        border-radius: 20px 0 0 20px;
        transform: translateX(100%);
    }

    .z-mob-sheet.active {
        transform: translateX(0);
    }
}

.z-mob-sheet-handle {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
}

.z-mob-sheet-handle span {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: var(--z-border-strong);
}

.z-mob-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 12px;
    border-bottom: 1px solid var(--z-border);
}

.z-mob-sheet-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--z-text);
}

.z-mob-sheet-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--z-surface-2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--z-text-secondary);
}

.z-mob-sheet-close .material-symbols-outlined {
    font-size: 18px;
}

.z-mob-sheet-body {
    padding: 16px 20px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

.z-mob-sheet-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
    background: var(--z-surface);
    border-top: 1px solid var(--z-border);
}

/* ── 10. PRODUCT DETAIL SHEET ────────────────────────────── */
.z-mob-product-skeleton {
    padding: 16px 0;
}

.z-mob-product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.z-mob-product-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.z-mob-product-gallery::-webkit-scrollbar {
    display: none;
}

.z-mob-product-gallery img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.z-mob-product-gallery img.active {
    border-color: var(--z-primary);
}

.z-mob-product-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--z-text);
    margin-bottom: 4px;
}

.z-mob-product-ingredients {
    font-size: 0.82rem;
    color: var(--z-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.z-mob-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.z-mob-product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--z-primary);
}

.z-mob-product-old-price {
    font-size: 0.88rem;
    color: var(--z-text-muted);
    text-decoration: line-through;
}

/* Options sections */
.z-mob-options-group {
    margin-bottom: 20px;
}

.z-mob-options-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.z-mob-options-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--z-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.z-mob-options-required {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: var(--z-primary);
    padding: 2px 8px;
    border-radius: 999px;
}

.z-mob-options-hint {
    font-size: 0.72rem;
    color: var(--z-text-muted);
    margin-bottom: 8px;
}

.z-mob-option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--z-surface-2);
    border-radius: 12px;
    border: 1.5px solid transparent;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all var(--z-transition);
    min-height: 48px;
}

.z-mob-option-row:active {
    transform: scale(0.98);
}

.z-mob-option-row.selected {
    border-color: var(--z-primary);
    background: rgba(167, 58, 0, 0.05);
}

.z-mob-option-row .label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--z-text);
    flex: 1;
}

.z-mob-option-row .price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--z-primary);
    flex-shrink: 0;
    margin-left: 8px;
}

.z-mob-option-row input[type="radio"],
.z-mob-option-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--z-primary);
    flex-shrink: 0;
}

/* Quantity stepper */
.z-mob-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: var(--z-surface-2);
    border-radius: 999px;
    padding: 3px;
}

.z-mob-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--z-surface);
    color: var(--z-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--z-shadow-xs);
    transition: all var(--z-transition);
}

.z-mob-qty-btn:active {
    transform: scale(0.85);
    background: var(--z-primary);
    color: #fff;
}

.z-mob-qty-btn .material-symbols-outlined {
    font-size: 18px;
}

.z-mob-qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--z-text);
}

/* Add to cart footer */
.z-mob-sheet-footer-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.z-mob-add-cart-btn {
    flex: 1;
    height: 50px;
    background: var(--z-primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--z-font);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--z-shadow-primary);
    transition: all var(--z-transition);
}

.z-mob-add-cart-btn:active {
    transform: scale(0.97);
}

.z-mob-add-cart-btn .price-total {
    opacity: 0.8;
    margin-left: 4px;
}

/* Store Summary in Sheet */
.z-mob-sheet-store-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--z-surface-2, #f8f9fa);
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid var(--z-border, rgba(0,0,0,0.06));
}
.z-mob-sheet-store-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
}
.z-mob-sheet-store-info {
    flex: 1;
    min-width: 0;
}
.z-mob-sheet-store-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--z-text, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.z-mob-sheet-store-meta {
    display: flex;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--z-text-muted, #6b7280);
    margin-top: 2px;
}
.z-mob-sheet-store-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Group Header with Checkmark */
.z-mob-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.z-mob-group-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--z-accent, #00a773);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-mob-options-group.completed .z-mob-group-check {
    opacity: 1;
    transform: scale(1);
}

/* Option Radio / Checkbox visual dots */
.z-mob-option-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--z-border-strong, #d1d5db);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}
.z-mob-option-dot::after {
    content: '';
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--z-primary);
    transition: all 0.2s;
}
.z-mob-option-row.selected .z-mob-option-dot {
    border-color: var(--z-primary);
}
.z-mob-option-row.selected .z-mob-option-dot::after {
    width: 10px;
    height: 10px;
}

.z-mob-option-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--z-border-strong, #d1d5db);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}
.z-mob-option-checkbox::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s;
}
.z-mob-option-row.selected .z-mob-option-checkbox {
    border-color: var(--z-primary);
    background: var(--z-primary);
}
.z-mob-option-row.selected .z-mob-option-checkbox::after {
    transform: rotate(45deg) scale(1);
}

/* Notes footer */
.z-mob-notes-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}
.z-mob-notes-counter {
    font-size: 0.75rem;
    color: var(--z-text-muted, #6b7280);
}

/* Add button price */
.z-mob-add-btn-price {
    font-weight: 800;
    font-size: 0.88rem;
    opacity: 0.9;
    margin-left: auto;
}
.price.free {
    color: var(--z-accent, #00a773);
}

/* ── 11. CART DRAWER CONTENT ─────────────────────────────── */
.z-mob-cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--z-border);
}

.z-mob-cart-item:last-child {
    border-bottom: none;
}

.z-mob-cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--z-surface-2);
}

.z-mob-cart-item-info {
    flex: 1;
    min-width: 0;
}

.z-mob-cart-item-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--z-text);
    margin-bottom: 2px;
}

.z-mob-cart-item-desc {
    font-size: 0.72rem;
    color: var(--z-text-muted);
    margin-bottom: 8px;
}

.z-mob-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.z-mob-cart-item-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--z-primary);
}

.z-mob-cart-item-remove {
    background: none;
    border: none;
    color: var(--z-text-muted);
    padding: 4px;
    cursor: pointer;
}

.z-mob-cart-item-remove:active {
    color: var(--z-danger);
}

/* Cart summary */
.z-mob-cart-summary {
    padding: 16px 0;
    border-top: 1px solid var(--z-border);
}

.z-mob-cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--z-text-secondary);
}

.z-mob-cart-row.total {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--z-text);
    padding-top: 10px;
    border-top: 1px solid var(--z-border);
    margin-top: 8px;
}

.z-mob-cart-row.total .value {
    color: var(--z-primary);
}

/* Coupon */
.z-mob-coupon {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.z-mob-coupon input {
    flex: 1;
    height: 42px;
    border: 1.5px solid var(--z-border-strong);
    border-radius: 10px;
    padding: 0 14px;
    font-family: var(--z-font);
    font-size: 0.85rem;
    background: var(--z-surface-2);
    color: var(--z-text);
}

.z-mob-coupon button {
    height: 42px;
    padding: 0 16px;
    border: 1.5px solid var(--z-border-strong);
    border-radius: 10px;
    background: var(--z-surface);
    font-family: var(--z-font);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--z-primary);
    cursor: pointer;
}

/* Continue button */
.z-mob-cart-continue {
    width: 100%;
    height: 52px;
    background: var(--z-primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--z-font);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    cursor: pointer;
    box-shadow: var(--z-shadow-primary);
}

.z-mob-cart-continue:active {
    transform: scale(0.97);
}

.z-mob-cart-continue .divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
}

/* ── 12. CHECKOUT MOBILE ─────────────────────────────────── */
.z-mob-checkout {
    padding: 16px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    max-width: 600px;
    margin: 0 auto;
}

.z-mob-checkout-section {
    background: var(--z-surface);
    border: 1px solid var(--z-border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: var(--z-shadow-sm);
}

.z-mob-checkout-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--z-text);
    margin-bottom: 14px;
}

.z-mob-checkout-section-title .material-symbols-outlined {
    color: var(--z-primary);
    font-size: 20px;
}

.z-mob-checkout-toggle {
    display: flex;
    background: var(--z-surface-2);
    border-radius: 12px;
    padding: 3px;
    gap: 3px;
}

.z-mob-checkout-toggle-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-family: var(--z-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--z-text-secondary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all var(--z-transition);
}

.z-mob-checkout-toggle-btn.active {
    background: var(--z-primary);
    color: #fff;
    box-shadow: var(--z-shadow-primary);
}

.z-mob-checkout-toggle-btn .material-symbols-outlined {
    font-size: 20px;
}

.z-mob-checkout-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid var(--z-border-strong);
    border-radius: 10px;
    padding: 0 14px;
    font-family: var(--z-font);
    font-size: 0.88rem;
    background: var(--z-surface-2);
    color: var(--z-text);
    margin-bottom: 12px;
    transition: border-color var(--z-transition);
}

.z-mob-checkout-input:focus {
    border-color: var(--z-primary);
    box-shadow: 0 0 0 3px var(--z-primary-glow);
    background: var(--z-surface);
}

.z-mob-checkout-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--z-text-secondary);
    margin-bottom: 6px;
}

.z-mob-checkout-label .required {
    color: var(--z-danger);
}

.z-mob-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.z-mob-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid var(--z-border-strong);
    background: var(--z-surface);
    cursor: pointer;
    transition: all var(--z-transition);
    min-height: 48px;
}

.z-mob-payment-option.selected {
    border-color: var(--z-primary);
    background: rgba(167, 58, 0, 0.04);
}

.z-mob-payment-option .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.z-mob-payment-option .text {
    flex: 1;
}

.z-mob-payment-option .text .name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--z-text);
}

.z-mob-payment-option .text .desc {
    font-size: 0.72rem;
    color: var(--z-text-muted);
}

.z-mob-payment-option .check {
    color: var(--z-primary);
    opacity: 0;
    transition: opacity var(--z-transition);
}

.z-mob-payment-option.selected .check {
    opacity: 1;
}

/* Sticky checkout footer */
.z-mob-checkout-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: rgba(255, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--z-border);
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
}

.z-mob-checkout-footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.z-mob-checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.z-mob-checkout-total-label {
    font-size: 0.82rem;
    color: var(--z-text-secondary);
}

.z-mob-checkout-total-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--z-primary);
}

.z-mob-checkout-submit {
    width: 100%;
    height: 50px;
    background: var(--z-primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--z-font);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--z-shadow-primary);
}

.z-mob-checkout-submit:active {
    transform: scale(0.97);
}

/* ── 12b. INFINITE SCROLL SPINNER & FALLBACK ─────────────── */
.z-mob-infinite-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    color: var(--z-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.z-mob-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--z-border);
    border-top-color: var(--z-primary);
    border-radius: 50%;
    animation: z-mob-spin 0.8s linear infinite;
}

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

.z-mob-load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    margin: 16px auto;
    max-width: 320px;
    background: var(--z-surface);
    border: 2px solid var(--z-primary);
    border-radius: 14px;
    font-family: var(--z-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--z-primary);
    cursor: pointer;
    transition: all var(--z-transition);
}

.z-mob-load-more-btn:active {
    transform: scale(0.97);
    background: var(--z-primary);
    color: #fff;
}

.z-mob-load-more-btn .material-symbols-outlined {
    font-size: 20px;
}

/* ── 13. SKELETON LOADING ────────────────────────────────── */
.z-mob-skeleton {
    position: relative;
    overflow: hidden;
    background: var(--z-surface-2);
    border-radius: 8px;
}

.z-mob-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: z-mob-skeleton-shimmer 1.5s infinite;
}

@keyframes z-mob-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

#z-mob-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 14px;
    margin-bottom: 10px;
}

.z-mob-skeleton-card {
    background: var(--z-surface);
    border: 1px solid var(--z-border);
    border-radius: 16px;
    padding: 12px;
}

.z-mob-skeleton-card .skel-img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.z-mob-skeleton-card .skel-text {
    height: 14px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.z-mob-skeleton-card .skel-text.short {
    width: 60%;
}

.z-mob-skeleton-card .skel-text.price {
    height: 18px;
    width: 40%;
}

/* ── 14. ANIMATIONS ──────────────────────────────────────── */
@keyframes z-mob-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes z-mob-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes z-mob-scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.z-mob-animate-in {
    animation: z-mob-fade-in-up 0.4s ease forwards;
    opacity: 0;
}

.z-mob-animate-in[data-delay="1"] { animation-delay: 0.05s; }
.z-mob-animate-in[data-delay="2"] { animation-delay: 0.1s; }
.z-mob-animate-in[data-delay="3"] { animation-delay: 0.15s; }
.z-mob-animate-in[data-delay="4"] { animation-delay: 0.2s; }
.z-mob-animate-in[data-delay="5"] { animation-delay: 0.25s; }

/* ── 15. EMPTY STATE ─────────────────────────────────────── */
.z-mob-empty {
    text-align: center;
    padding: 40px 20px;
}

.z-mob-empty .icon {
    font-size: 3rem;
    color: var(--z-text-muted);
    opacity: 0.3;
    margin-bottom: 12px;
}

.z-mob-empty .title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--z-text);
    margin-bottom: 6px;
}

.z-mob-empty .desc {
    font-size: 0.85rem;
    color: var(--z-text-muted);
}

/* ── 16. TOAST NOTIFICATION ──────────────────────────────── */
.z-mob-toast {
    position: fixed;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: z-mob-fade-in-up 0.3s ease;
}

.z-mob-toast.hide {
    animation: z-mob-fade-out 0.3s ease forwards;
}

@keyframes z-mob-fade-out {
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ── 17. RESPONSIVE: TABLET (768px+) ─────────────────────── */
@media (min-width: 768px) {
    .z-mob-header-inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .z-mob-hero {
        height: 300px;
    }

    .z-mob-search {
        max-width: 720px;
        margin: 0 auto;
    }

    .z-mob-categories {
        max-width: 720px;
        margin: 0 auto;
    }

    .z-mob-products {
        max-width: 720px;
        margin: 0 auto;
    }

    .z-mob-featured-card {
        flex: 0 0 260px;
    }

    .z-mob-floating-cart {
        max-width: 500px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .z-mob-bottomnav {
        max-width: 500px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
    }
}

/* ── 18. RESPONSIVE: LARGE (992px+) ──────────────────────── */
@media (min-width: 992px) {
    .z-mob-header-inner {
        max-width: 960px;
    }

    .z-mob-hero {
        height: 360px;
    }

    .z-mob-hero-text h1 {
        font-size: 1.8rem;
    }

    .z-mob-products {
        max-width: 960px;
    }

    .z-mob-featured-card {
        flex: 0 0 280px;
    }

    .z-mob-section-head h2 {
        font-size: 1.2rem;
    }
}

/* ── 19. DARK MODE ───────────────────────────────────────── */
[data-theme="dark"] .z-mob-header,
[data-theme="dark"] .z-mob-search,
[data-theme="dark"] .z-mob-bottomnav {
    background: rgba(39, 24, 18, 0.92);
    border-color: var(--z-border);
}

[data-theme="dark"] .z-mob-sheet {
    background: var(--z-surface);
}

[data-theme="dark"] .z-mob-floating-cart-btn {
    background: var(--z-primary);
}

[data-theme="dark"] .z-mob-toast {
    background: #fff;
    color: #1a1a2e;
}

[data-theme="dark"] .z-mob-skeleton::after {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: z-mob-skeleton-shimmer 1.5s infinite;
}

/* ── 20. UTILITIES ───────────────────────────────────────── */
.z-mob-pt-header { padding-top: 72px; }
.z-mob-pb-nav { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
.z-mob-pb-cart { padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px)); }
.z-mob-safe-bottom { padding-bottom: env(safe-area-inset-bottom, 0px); }

.z-mob-hero-stat.is-closed {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(252, 165, 165, 0.3);
}

/* Touch-friendly minimum tap targets (48x48 per spec) */
.z-mob-header-btn,
.z-mob-nav-item,
.z-mob-cat-pill,
.z-mob-option-row,
.z-mob-payment-option,
.z-mob-qty-btn,
.z-mob-list-card .add-circle,
.z-mob-featured-card .add-btn,
.z-mob-hero-btn,
.z-mob-sheet-close,
.z-mob-cart-item-remove,
.z-mob-searchbox {
    min-height: 48px;
}

/* Hide legacy mobile cart bar when new system is active */
@media (max-width: 991px) {
    .mobile-cart-float-bar {
        display: none !important;
    }
}

/* Hide desktop hero on mobile */
@media (max-width: 767px) {
    .z-store-hero-desktop {
        display: none !important;
    }
}

/* Hide mobile hero on desktop */
@media (min-width: 768px) {
    .z-mob-hero {
        display: none !important;
    }
}

/* Bootstrap compat: hide on desktop */
@media (min-width: 992px) {
    .z-mob-bottomnav,
    .z-mob-floating-cart {
        display: none !important;
    }
}
