/* ============================================================
   BESTELLEN — Online Ordering Styles (Amici Theme)
   Wine + Gold glass morphism cart, product cards, checkout
   ============================================================ */

/* ── Category Pills ── */
.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}
.category-pills::-webkit-scrollbar { display: none; }

.category-pill {
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: 9999px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(139, 111, 71, 0.06);
    border: 1px solid rgba(139, 111, 71, 0.12);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.category-pill:hover,
.category-pill.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

/* ── Product Card (Ordering) ── */
.order-product-card {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.order-product-card:hover {
    border-color: rgba(139, 111, 71, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.order-product-card.sold-out {
    opacity: 0.5;
    pointer-events: none;
}

.order-product-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    object-fit: cover;
}

.order-product-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.order-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

.order-product-desc {
    font-size: 12px;
    color: #6B6B6B;
    margin-top: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px;
}

.order-product-price {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
}

/* ── Add to Cart Button ── */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-secondary);
    background: transparent;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.btn-add-cart:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: scale(1.1);
}
.btn-add-cart:active { transform: scale(0.95); }
.btn-add-cart.added {
    background: var(--color-secondary);
    color: #fff;
    animation: cartPop 0.35s ease;
}

@keyframes cartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ── Quantity Selector ── */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}
.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--color-primary);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-btn:hover { background: rgba(139, 111, 71, 0.08); }
.qty-value {
    width: 32px;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
}

/* ── Sticky Bottom Bar ── */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 111, 71, 0.2);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-bar-inner {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.sticky-cart-count {
    background: var(--color-secondary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.sticky-cart-total {
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}
.btn-open-cart {
    padding: 10px 24px;
    border-radius: 9999px;
    border: none;
    background: var(--color-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-open-cart:hover {
    background: #5c2029;
    transform: translateY(-1px);
}

/* ── Cart Drawer ── */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 51;
    width: 100%;
    max-width: 420px;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(139, 111, 71, 0.12);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
}
.cart-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(139, 111, 71, 0.12);
    background: transparent;
    color: var(--color-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cart-drawer-close:hover { background: rgba(139, 111, 71, 0.06); }

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.06);
    align-items: center;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-image-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(139, 111, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(139, 111, 71, 0.3);
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 2px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(44, 44, 44, 0.25);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-drawer-empty {
    text-align: center;
    padding: 48px 24px;
    color: rgba(44, 44, 44, 0.35);
}
.cart-drawer-empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.3;
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    background: rgba(255, 255, 255, 0.5);
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6B6B6B;
}
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(139, 111, 71, 0.12);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}
.btn-checkout {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: var(--color-secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-checkout:hover {
    background: #5c2029;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.3);
}
.btn-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Checkout Modal ── */
.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }

.checkout-modal {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-overlay.open .checkout-modal { transform: translateY(0) scale(1); }

.checkout-header {
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary);
}

.checkout-form { padding: 24px; }
.checkout-field { margin-bottom: 16px; }
.checkout-field label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A0A0A0;
    margin-bottom: 6px;
}
.checkout-field input,
.checkout-field textarea,
.checkout-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(139, 111, 71, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-primary);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.checkout-field input:focus,
.checkout-field textarea:focus,
.checkout-field select:focus {
    outline: none;
    border-color: var(--color-secondary);
}
.checkout-field textarea { resize: vertical; min-height: 60px; }

.checkout-order-summary {
    padding: 16px;
    background: rgba(139, 111, 71, 0.04);
    border-radius: 12px;
    margin-bottom: 20px;
}
.checkout-order-summary h4 {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A0A0A0;
    margin: 0 0 10px;
}

.checkout-error {
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(192, 57, 43, 0.06);
    border: 1px solid rgba(192, 57, 43, 0.12);
    color: #c0392b;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}
.checkout-error.visible { display: block; }

.checkout-loading { display: none; text-align: center; padding: 32px; color: #A0A0A0; }
.checkout-loading.visible { display: block; }

/* ── Navbar Cart Badge ── */
.nav-cart-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #6B6B6B;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}
.nav-cart-badge:hover { color: var(--color-primary); }
.nav-cart-badge .badge-count {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-cart-badge .badge-count.visible { transform: scale(1); }

/* ── Shop Info Banner ── */
.shop-info-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(139, 111, 71, 0.04);
    border: 1px solid rgba(139, 111, 71, 0.1);
    border-radius: 12px;
}
.shop-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6B6B6B;
}
.shop-info-item svg { width: 16px; height: 16px; color: var(--color-accent); }

/* ── Product Detail Modal ── */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.product-modal-overlay.open { opacity: 1; pointer-events: auto; }

.product-modal {
    position: fixed;
    z-index: 71;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px) scale(0.97);
    width: calc(100% - 32px);
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(139, 111, 71, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.product-modal.open {
    transform: translate(-50%, -50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.product-modal-close:hover { background: rgba(255, 255, 255, 1); }

.product-modal-image {
    position: relative;
    width: 100%;
    max-height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.product-modal-image img { width: 100%; height: 280px; object-fit: cover; display: block; }

.product-modal-body { padding: 24px 24px 16px; }

.product-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0 0 8px;
}

.product-modal-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0 0 12px;
}

.product-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag-dietary {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.15);
}
.tag-allergen {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.08);
    color: #b8860b;
    border: 1px solid rgba(245, 166, 35, 0.15);
}

.product-modal-section { margin-bottom: 16px; }
.product-modal-section-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(44, 44, 44, 0.45);
    margin-bottom: 10px;
}

/* Variant pills */
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-option {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(139, 111, 71, 0.2);
    background: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.variant-option:hover {
    border-color: var(--color-secondary);
    background: rgba(114, 47, 55, 0.04);
}
.variant-option.active {
    border-color: var(--color-secondary);
    background: rgba(114, 47, 55, 0.08);
    box-shadow: 0 0 0 1px var(--color-secondary);
}
.variant-price-mod { font-size: 11px; color: rgba(44, 44, 44, 0.45); margin-left: 4px; }

/* Extras checkboxes */
.extras-options { display: flex; flex-direction: column; gap: 4px; }
.extra-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s;
}
.extra-option:hover { background: rgba(139, 111, 71, 0.05); }
.extra-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-secondary);
    flex-shrink: 0;
    cursor: pointer;
}
.extra-name { flex: 1; font-size: 14px; color: var(--color-primary); }
.extra-price { font-size: 13px; color: rgba(44, 44, 44, 0.45); white-space: nowrap; }

/* Modal footer */
.product-modal-footer {
    position: sticky;
    bottom: 0;
    padding: 16px 24px 24px;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-modal-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(139, 111, 71, 0.2);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.product-modal-qty .qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--color-primary);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s;
}
.product-modal-qty .qty-btn:hover { background: rgba(139, 111, 71, 0.08); }
.product-modal-qty .qty-value {
    width: 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-modal-add {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: var(--color-secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-modal-add:hover {
    background: #5a252c;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.25);
}

/* Sticky bar pulse */
.sticky-cart-bar.pulse { animation: barPulse 0.5s ease; }
@keyframes barPulse {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Cart item details */
.cart-item-details {
    font-size: 11px;
    color: rgba(44, 44, 44, 0.45);
    margin-top: 2px;
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .cart-drawer { max-width: 100%; }
    .order-product-image { width: 90px; height: 90px; }
    .sticky-cart-bar { padding: 10px 16px; }
    .checkout-modal { max-height: 100vh; border-radius: 16px 16px 0 0; margin-top: auto; }
    .product-modal { width: calc(100% - 16px); max-height: 95vh; border-radius: 16px; }
    .product-modal-image img { height: 200px; }
}

/* ============================================================
   Bestellen quick wins (2026-07-22): free-delivery progress,
   promo code, slots, delivery address, discount badges, upsell.
   Theme-agnostic: neutrals inherit, semantics use green/red.
   ============================================================ */

/* Free delivery progress (cart drawer) */
.free-delivery-progress { margin: 10px 0 4px; }
.free-delivery-label { font-size: 0.82rem; opacity: 0.85; margin-bottom: 6px; }
.free-delivery-progress.complete .free-delivery-label { color: #16a34a; opacity: 1; }
.free-delivery-track { height: 6px; border-radius: 999px; background: rgba(128,128,128,0.22); overflow: hidden; }
.free-delivery-fill { height: 100%; border-radius: 999px; background: #22c55e; transition: width 0.3s ease; }

/* Free delivery progress (sticky bar, thin line on top) */
.sticky-delivery-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(128,128,128,0.25); }
.sticky-delivery-progress .sticky-delivery-fill { height: 100%; background: #22c55e; transition: width 0.3s ease; }

/* Discount badge + compare price */
.discount-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; line-height: 1; padding: 4px 7px; border-radius: 999px; background: #dc2626; color: #fff; letter-spacing: 0.02em; }
.order-product-compare, .product-modal-compare { opacity: 0.55; font-size: 0.9em; margin-right: 4px; }
.product-modal-price-row { display: flex; align-items: center; gap: 8px; margin: 4px 0 8px; }
.product-modal-price { font-weight: 700; }

/* Promo code */
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; min-width: 0; }
.promo-apply-btn { min-height: 44px; padding: 0 16px; border: 1px solid currentColor; border-radius: 8px; background: transparent; color: inherit; font: inherit; font-size: 0.9rem; cursor: pointer; white-space: nowrap; }
.promo-apply-btn:hover { opacity: 0.8; }
.promo-apply-btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.promo-apply-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.promo-msg { font-size: 0.82rem; margin-top: 6px; min-height: 1em; }
.promo-msg.success { color: #16a34a; }
.promo-msg.error { color: #dc2626; }

/* Timing / slots */
.timing-options { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 8px; }
.timing-option { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: 0.9rem; cursor: pointer; }
.timing-option input { width: 18px; height: 18px; accent-color: currentColor; }
#checkout-slot-select { width: 100%; min-height: 44px; }
#checkout-slot-select:disabled { opacity: 0.5; cursor: not-allowed; }

/* Delivery address */
.checkout-field-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; }
@media (max-width: 420px) { .checkout-field-row { grid-template-columns: 1fr; gap: 0; } }
.field-error { display: none; font-size: 0.8rem; color: #dc2626; margin-top: 4px; }
.input-invalid { border-color: #dc2626 !important; }

/* Cutoff banner */
.cutoff-banner { text-align: center; font-size: 0.88rem; padding: 10px 16px; margin-bottom: 24px; border-radius: 10px; background: rgba(128,128,128,0.12); }
.cutoff-banner--closed { background: rgba(220,38,38,0.12); color: #dc2626; }

/* Checkout totals rows */
#checkout-totals-rows { margin-top: 10px; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 3px 0; opacity: 0.85; }
.checkout-total-row.promo { color: #16a34a; opacity: 1; }

/* Upsell */
.cart-upsell { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(128,128,128,0.25); }
.cart-upsell-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; margin-bottom: 10px; }
.cart-upsell-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.cart-upsell-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-upsell-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-upsell-name { font-size: 0.86rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-upsell-price { font-size: 0.8rem; opacity: 0.7; }
.cart-upsell-add { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid currentColor; border-radius: 999px; background: transparent; color: inherit; font-size: 1.2rem; line-height: 1; cursor: pointer; }
.cart-upsell-add:hover { opacity: 0.8; }
.cart-upsell-add:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .free-delivery-fill, .sticky-delivery-progress .sticky-delivery-fill { transition: none; }
}
