/* ========================================
   EL HONGO® — ULTRA PREMIUM STYLES v2.0
   Mobile-First · Dark Forest Theme · Professional
   NO FLASH — Optimized for deployment
   ======================================== */
:root {
    --primary: #2E7D32;
    --primary-light: #43A047;
    --primary-dark: #1B5E20;
    --primary-glow: rgba(46,125,50,0.35);
    --accent: #D4AF37;
    --accent-light: #F0D77C;
    --gold: #D4AF37;
    --gold-light: #F0D77C;
    --red-hongo: #C62828;
    --red-light: #E53935;
    --bg-dark: #0A0F08;
    --bg-card: #111A0F;
    --bg-card-hover: #1A2518;
    --bg-surface: #131F10;
    --bg-elevated: #1C2C18;
    --text-white: #FFFFFF;
    --text-light: #E0F0D8;
    --text-gray: #A0B898;
    --text-muted: #607858;
    --success: #25D366;
    --danger: #E53935;
    --border: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);
    --shadow-primary: rgba(46,125,50,0.25);
    --shadow-deep: rgba(0,0,0,0.6);
    --gradient-premium: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F0D77C);
    --gradient-card: linear-gradient(145deg, rgba(17,26,15,0.95), rgba(28,44,24,0.8));
    --gradient-hero: linear-gradient(180deg, rgba(10,15,8,0) 0%, rgba(10,15,8,0.8) 60%, #0A0F08 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --ease: cubic-bezier(.16,1,.3,1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ========================================
   WELCOME SCREEN — NO FLASH FIX
   Background is solid dark from the start.
   No overlay, no radial-gradient flash.
   ======================================== */
.welcome-screen {
    position: fixed; inset: 0; z-index: 9999;
    background: #0A0F08;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; overflow: hidden;
}
/* Overlay hidden — prevents white/light flash on mobile */
.welcome-overlay { display: none; }
.welcome-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.welcome-particle {
    position: absolute; bottom: -60px; opacity: 0.15;
    animation: floatUp 8s linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
.welcome-content {
    position: relative; z-index: 2; text-align: center;
    padding: 20px; max-width: 480px;
    animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LARGER LOGO */
.welcome-logo-container {
    position: relative; width: 320px; height: 320px;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.welcome-logo-glow { display: none; }
.welcome-logo-ring { display: none; }
.welcome-logo-ring.ring2 { display: none; }
.welcome-logo-img {
    width: 300px; height: 300px; object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(46,125,50,0.3));
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.welcome-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 16px 0; opacity: 0.5;
}
.divider-line { flex: 1; height: 1px; background: var(--accent); }
.divider-diamond { color: var(--accent); font-size: 20px; }

/* BIGGER WELCOME TEXT */
.welcome-message {
    font-size: 19px; color: var(--text-gray);
    margin-bottom: 12px; line-height: 1.8;
}
.welcome-message strong { color: var(--accent); font-weight: 700; }

/* SUBTITLE */
.welcome-subtitle {
    font-family: var(--font-script); font-size: 22px;
    color: var(--accent-light); margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* SCHEDULE */
.welcome-schedule {
    font-size: 16px; color: var(--accent); font-weight: 600;
    margin-bottom: 8px; letter-spacing: 0.5px;
}
.welcome-schedule i { margin-right: 6px; }

/* LOCATION & CONTACT on welcome */
.welcome-location {
    font-size: 13px; color: var(--text-muted);
    margin-bottom: 24px; line-height: 1.7;
}
.welcome-location i { color: var(--primary-light); margin-right: 4px; }
.welcome-location a { color: var(--success); text-decoration: none; font-weight: 600; }

/* BIGGER BUTTON */
.welcome-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 22px 64px; border-radius: 50px; border: none;
    background: var(--gradient-premium);
    color: #fff; font-family: var(--font-body);
    font-size: 22px; font-weight: 700; cursor: pointer;
    box-shadow: 0 8px 32px var(--shadow-primary);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.5px;
}
.welcome-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--shadow-primary); }
.welcome-btn:active { transform: scale(0.97); }



/* ========================================
   APP HEADER — scrolls up naturally
   ======================================== */
.app-header {
    position: relative; z-index: 100;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    transition: none;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; max-width: 1200px; margin: 0 auto;
}
.header-brand { display: flex; align-items: center; gap: 12px; }
.header-logo-img { width: 44px; height: 44px; border-radius: 12px; object-fit: contain; }
.header-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    background: var(--gradient-gold); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.header-tagline { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }
.cart-btn {
    position: relative; width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid var(--border-light); background: var(--bg-elevated);
    color: var(--text-white); font-size: 18px; cursor: pointer;
    transition: all 0.3s ease;
}
.cart-btn:active { transform: scale(0.92); }
.cart-badge {
    position: absolute; top: -4px; right: -4px; width: 20px; height: 20px;
    border-radius: 50%; background: var(--primary);
    font-size: 11px; font-weight: 700; color: #fff;
    display: flex; align-items: center; justify-content: center;
}

/* ========================================
   PROMO BAR
   ======================================== */
.promo-bar {
    display: flex; gap: 8px; padding: 8px 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    background: rgba(10,15,8,0.6);
}
.promo-bar::-webkit-scrollbar { display: none; }
.promo-pill {
    flex-shrink: 0; display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 50px;
    border: 1px solid var(--border-light);
    background: rgba(30,48,26,0.5);
    color: var(--text-light); font-size: 13px; font-weight: 500;
    cursor: pointer; white-space: nowrap; transition: all 0.3s ease;
    font-family: var(--font-body);
}
.promo-pill:hover { background: rgba(46,125,50,0.2); border-color: var(--primary); }
.login-pill { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); }
.login-pill:hover { background: rgba(212,175,55,0.2); }



/* ========================================
   CATEGORY NAV — STICKY at top:0
   ======================================== */
.category-nav {
    position: sticky; top: 0; z-index: 90;
    background: rgba(10,15,8,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 10px 0;
}
.category-nav-inner {
    display: flex; gap: 8px; padding: 0 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.cat-chip {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
    gap: 4px; padding: 8px 14px; border-radius: 16px;
    border: 1px solid transparent; background: transparent;
    color: var(--text-gray); cursor: pointer;
    transition: all 0.3s var(--ease); font-family: var(--font-body);
}
.cat-chip.active {
    background: rgba(46,125,50,0.15); border-color: var(--primary);
    color: var(--primary-light);
}
.cat-chip-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.cat-emoji { font-size: 24px; }
.cat-chip-img { width: 32px; height: 32px; object-fit: contain; }
.cat-chip-label { font-size: 11px; font-weight: 600; white-space: nowrap; }

/* ========================================
   MENU SECTIONS
   ======================================== */
.menu-content { max-width: 800px; margin: 0 auto; padding: 0 12px; text-align: center; }
.menu-section { margin-bottom: 28px; }
.section-banner { margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; }
.section-banner-img { width: 100%; height: 160px; object-fit: cover; }
.section-header { padding: 20px 4px 12px; text-align: center; }
.section-title {
    font-family: var(--font-display); font-size: 26px; font-weight: 700;
    background: var(--gradient-gold); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.section-line {
    width: 60px; height: 3px; margin-top: 12px; border-radius: 2px;
    background: var(--gradient-premium);
    margin-left: auto; margin-right: auto;
}
.sub-title { font-size: 16px; color: var(--accent); margin-bottom: 12px; }
.hot-note {
    padding: 10px 16px; margin-bottom: 12px; border-radius: var(--radius-sm);
    background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.2);
    font-size: 13px; color: var(--text-light);
}
.hot-note small { color: var(--text-muted); }

/* ========================================
   BEVERAGE / PRODUCT LIST ITEMS
   ======================================== */
.bev-list { display: flex; flex-direction: column; gap: 10px; }
.bev-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; border-radius: var(--radius-md);
    background: var(--gradient-card);
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.3s ease;
}
.bev-item:hover { border-color: var(--primary); background: var(--bg-card-hover); }
.bev-item-img {
    width: 60px; height: 60px; border-radius: 12px;
    overflow: hidden; flex-shrink: 0;
    background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
}
.bev-item-img img { width: 100%; height: 100%; object-fit: cover; }
.bev-item-info { flex: 1; min-width: 0; text-align: left; }
.bev-item-name {
    font-size: 14px; font-weight: 600; color: var(--text-white);
    display: block; margin-bottom: 2px;
}
.no-shot { font-size: 11px; color: var(--accent); font-weight: 400; }
.bev-item-desc { font-size: 12px; color: var(--text-muted); display: block; }
.bev-item-sizes { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.size-tag {
    font-size: 11px; color: var(--text-gray); background: rgba(255,255,255,0.05);
    padding: 2px 8px; border-radius: 6px;
}
.size-price { color: var(--accent); font-weight: 600; }
.bev-item-actions, .bev-item-actions-simple {
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
    flex-shrink: 0;
}
.bev-item-actions-simple { flex-direction: row; align-items: center; gap: 10px; }
.bev-item-price {
    font-size: 16px; font-weight: 700; color: var(--accent);
    white-space: nowrap;
}
.cafe-size-row {
    display: flex; align-items: center; gap: 8px;
}
.cafe-size-label { font-size: 11px; color: var(--text-gray); min-width: 48px; }

.item-add-btn {
    width: 34px; height: 34px; border-radius: 10px; border: none;
    background: var(--gradient-premium); color: #fff; font-size: 14px;
    cursor: pointer; transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.item-add-btn:active { transform: scale(0.88); }
.item-qty-controls {
    display: flex; align-items: center; gap: 4px;
}
.item-qty-btn {
    width: 28px; height: 28px; border-radius: 8px; border: none;
    background: var(--primary); color: #fff; font-size: 12px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.item-qty-btn.minus { background: var(--bg-elevated); border: 1px solid var(--border-light); }
.item-qty-val { font-size: 14px; font-weight: 700; min-width: 24px; text-align: center; }

/* SHOT EXTRA */
.shot-extra-label {
    display: flex; align-items: center; gap: 6px; font-size: 12px;
    color: var(--text-gray); cursor: pointer; margin-top: 4px;
}
.shot-check { accent-color: var(--primary); }

/* ========================================
   DONUT-STYLE GRID (for card-based items)
   ======================================== */
.donas-dual-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.donas-column { flex: 1; min-width: 250px; }
.donut-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.donut-card {
    background: var(--gradient-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: all 0.3s ease;
}
.donut-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.donut-img-wrapper {
    width: 100%; height: 120px; overflow: hidden; cursor: pointer;
    background: var(--bg-elevated); position: relative;
}
.donut-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.donut-card:hover .donut-card-img { transform: scale(1.08); }
.donut-card-body { padding: 10px; }
.donut-card-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.donut-card-desc { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.donut-card-footer { display: flex; align-items: center; justify-content: space-between; }
.donut-card-price { font-size: 15px; font-weight: 700; color: var(--accent); }
.donut-add-btn {
    width: 30px; height: 30px; border-radius: 8px; border: none;
    background: var(--gradient-premium); color: #fff; font-size: 13px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.donut-add-btn:active { transform: scale(0.88); }
.donut-qty-controls { display: flex; align-items: center; gap: 4px; }
.donut-qty-btn {
    width: 26px; height: 26px; border-radius: 7px; border: none;
    background: var(--primary); color: #fff; font-size: 11px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.donut-qty-btn.minus { background: var(--bg-elevated); border: 1px solid var(--border-light); }
.donut-qty-val { font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; }
.no-items-text { color: var(--text-muted); font-size: 14px; text-align: center; padding: 20px; }

/* ========================================
   CART FLOAT
   ======================================== */
.cart-float {
    position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
    z-index: 80; width: calc(100% - 32px); max-width: 500px;
    animation: slideUpCart 0.4s var(--ease);
}
@keyframes slideUpCart { from { opacity: 0; transform: translateX(-50%) translateY(20px); } }
.cart-float-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-radius: 20px;
    background: var(--gradient-premium);
    box-shadow: 0 8px 32px var(--shadow-primary);
    cursor: pointer;
}
.cart-float-left { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.cart-float-right { display: flex; align-items: center; gap: 10px; }
.cart-float-total { font-size: 18px; font-weight: 800; }
.cart-float-arrow { font-size: 12px; opacity: 0.8; }

/* ========================================
   FLOATING MENU
   ======================================== */
.floating-menu-btn {
    position: fixed; bottom: 20px; right: 16px; z-index: 85;
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; padding: 10px 14px; border-radius: 18px;
    background: var(--gradient-premium);
    box-shadow: 0 6px 24px var(--shadow-primary);
    cursor: pointer; transition: transform 0.3s ease;
}
.floating-menu-btn:active { transform: scale(0.9); }
.floating-menu-icon { font-size: 22px; }
.floating-menu-label { font-size: 10px; font-weight: 700; color: #fff; }
.floating-menu-panel {
    position: fixed; bottom: 84px; right: 16px; z-index: 86;
    width: 260px; background: var(--bg-elevated);
    border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    transform: scale(0.8) translateY(10px); opacity: 0;
    pointer-events: none; transition: all 0.3s var(--ease);
}
.floating-menu-panel.active { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.fmp-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid var(--border);
    font-weight: 600; font-size: 14px;
}
.fmp-header button {
    background: none; border: none; color: var(--text-gray); font-size: 16px; cursor: pointer;
}
.fmp-links { padding: 8px 0; }
.fmp-links a {
    display: block; padding: 10px 16px; color: var(--text-light);
    font-size: 14px; cursor: pointer; transition: background 0.2s;
    text-decoration: none;
}
.fmp-links a:hover { background: rgba(46,125,50,0.1); }
.fmp-divider { height: 1px; background: var(--border); margin: 4px 16px; }
.fmp-footer {
    display: flex; border-top: 1px solid var(--border);
}
.fmp-footer a {
    flex: 1; text-align: center; padding: 12px; color: var(--text-gray);
    font-size: 13px; text-decoration: none; transition: color 0.2s;
}
.fmp-footer a:hover { color: var(--primary-light); }

/* ========================================
   MODAL OVERLAY & BOXES
   ======================================== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    padding: 16px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); max-width: 480px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s var(--ease);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close-x {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none;
    color: var(--text-gray); font-size: 16px; cursor: pointer;
}

/* Product Detail */
.product-detail-box { position: relative; }
.pd-img-wrap {
    width: 100%; height: 250px; overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pd-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { padding: 20px; }
.pd-info h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.pd-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pd-prices { margin-bottom: 16px; }
.pd-size-row {
    display: flex; justify-content: space-between; padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.pd-size-label { font-size: 14px; color: var(--text-gray); }
.pd-size-price { font-size: 16px; font-weight: 700; color: var(--accent); }
.pd-single-price { font-size: 24px; font-weight: 800; color: var(--accent); }
.pd-shot-note { font-size: 12px; color: var(--primary-light); margin-top: 8px; }
.no-shot-avail { color: var(--text-muted); }
.shot-extra-label-modal {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-light); margin-top: 8px; cursor: pointer;
}
.pd-add-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-register-cta {
    padding: 14px 20px; margin: 0; border-top: 1px solid var(--border);
    font-size: 12px; color: var(--text-muted); text-align: center;
    cursor: pointer; transition: background 0.2s;
}
.pd-register-cta:hover { background: rgba(46,125,50,0.05); }
.pd-register-cta i { color: var(--accent); }
.pd-register-cta small { opacity: 0.7; }

/* Promo modal */
.promo-modal-box { position: relative; padding: 0; }
.promo-modal-header {
    text-align: center; padding: 24px 20px 16px;
}
.promo-modal-icon { font-size: 48px; margin-bottom: 8px; }
.promo-modal-header h3 { font-family: var(--font-display); font-size: 22px; }
.promo-modal-body { padding: 0 20px 24px; }
.promo-modal-desc { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; text-align: center; line-height: 1.6; }
.promo-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.promo-step {
    display: flex; align-items: center; gap: 12px; font-size: 14px;
}
.step-num {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: var(--gradient-premium); color: #fff; font-size: 13px;
    font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.promo-form { display: flex; flex-direction: column; gap: 12px; }
.promo-form-divider {
    text-align: center; position: relative; margin: 12px 0;
}
.promo-form-divider span {
    background: var(--bg-card); padding: 0 12px; font-size: 12px;
    color: var(--text-muted); position: relative; z-index: 1;
}
.promo-form-divider::before {
    content: ''; position: absolute; left: 0; right: 0; top: 50%;
    height: 1px; background: var(--border-light);
}
.promo-result { margin-top: 12px; }
.promo-result .err { color: var(--danger); font-size: 13px; }
.success-box {
    text-align: center; padding: 16px; border-radius: var(--radius-sm);
    background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2);
}
.success-box i { font-size: 28px; color: var(--success); margin-bottom: 8px; }
.success-box p { font-size: 14px; color: var(--text-light); margin: 4px 0; }

/* Benefits */
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.benefit-item {
    display: flex; gap: 14px; align-items: flex-start;
}
.benefit-item i { font-size: 20px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.benefit-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.benefit-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* Coupon modal */
.coupon-modal-box { position: relative; padding: 24px; }
.coupon-modal-box h3 { font-size: 18px; margin-bottom: 8px; }
.coupon-modal-box h3 i { color: var(--accent); }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.coupon-result { margin-top: 16px; }
.coupon-found, .coupon-not-found, .coupon-progress {
    text-align: center; padding: 16px; border-radius: var(--radius-sm);
}
.coupon-found { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); }
.coupon-found i { font-size: 32px; color: var(--success); }
.coupon-not-found { background: rgba(255,152,0,0.1); border: 1px solid rgba(255,152,0,0.2); }
.coupon-not-found i { font-size: 32px; color: var(--warning); }
.coupon-progress { background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.2); }
.coupon-progress i { font-size: 32px; color: var(--primary); }
.coupon-code-display {
    margin: 12px 0; padding: 12px; border-radius: 8px;
    background: rgba(212,175,55,0.15); border: 1px dashed var(--accent);
    font-size: 18px; font-weight: 800; color: var(--accent); letter-spacing: 2px;
}
.coupon-available-badge {
    padding: 8px 16px; border-radius: 8px; margin-top: 12px;
    background: rgba(37,211,102,0.15); color: var(--success);
    font-size: 14px; font-weight: 600;
}

/* User panel */
.user-panel-info { margin-bottom: 16px; }
.user-panel-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.user-panel-name i { color: var(--primary); margin-right: 6px; }
.user-panel-phone { font-size: 13px; color: var(--text-muted); }
.user-panel-phone i { margin-right: 6px; }
.user-panel-stats {
    display: flex; gap: 16px; margin-bottom: 16px;
}
.user-stat {
    flex: 1; text-align: center; padding: 12px; border-radius: 12px;
    background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.2);
}
.user-stat-num { display: block; font-size: 24px; font-weight: 800; color: var(--primary-light); }
.user-stat-label { font-size: 11px; color: var(--text-muted); }
.loyalty-progress-section { margin-bottom: 16px; }
.loyalty-progress-section h4 { font-size: 14px; margin-bottom: 6px; }
.loyalty-progress-section h4 i { color: var(--accent); }
.loyalty-progress-section p { font-size: 13px; color: var(--text-gray); }
.progress-bar-wrap {
    width: 100%; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,0.1); margin: 8px 0;
}
.progress-bar {
    height: 100%; border-radius: 4px;
    background: var(--gradient-premium);
    transition: width 0.5s var(--ease);
}
.progress-label { font-size: 12px; color: var(--text-muted); }
.user-panel-section { margin-bottom: 16px; }
.user-panel-section h4 { font-size: 14px; margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.user-panel-section h4 i { color: var(--accent); margin-right: 6px; }
.user-order-card {
    padding: 10px; border-radius: 8px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border); margin-bottom: 8px;
}
.user-order-top { display: flex; justify-content: space-between; font-size: 12px; }
.user-order-num { font-weight: 700; color: var(--primary-light); }
.user-order-date { color: var(--text-muted); }
.user-order-items { font-size: 12px; color: var(--text-gray); margin: 6px 0; }
.user-order-total { font-size: 14px; font-weight: 700; color: var(--accent); }
.user-coupon-card {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: 8px; margin-bottom: 6px;
}
.coupon-active { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); }
.coupon-used { background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.user-coupon-code { font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.user-coupon-status { font-size: 12px; }
.loading-text { color: var(--text-muted); font-size: 13px; }
.no-data-text { color: var(--text-muted); font-size: 13px; }

/* ========================================
   FORM FIELDS
   ======================================== */
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--text-gray); }
.form-field input, .form-field textarea, .form-field select {
    padding: 12px 14px; border-radius: 10px;
    background: var(--bg-elevated); border: 1px solid var(--border-light);
    color: var(--text-white); font-family: var(--font-body); font-size: 15px;
    outline: none; transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus {
    border-color: var(--primary);
}
.form-field textarea { resize: vertical; min-height: 60px; }

/* Buttons */
.btn-gradient {
    padding: 12px 24px; border-radius: 12px; border: none;
    background: var(--gradient-premium); color: #fff;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.btn-gradient:hover { box-shadow: 0 6px 20px var(--shadow-primary); }
.btn-gradient:active { transform: scale(0.96); }
.btn-gradient.full { width: 100%; }
.btn-outline {
    padding: 12px 24px; border-radius: 12px;
    border: 1px solid var(--border-light);
    background: transparent; color: var(--text-light);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.btn-outline.full { width: 100%; }
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-danger {
    padding: 12px 24px; border-radius: 12px; border: none;
    background: var(--danger); color: #fff;
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer;
}
.btn-danger.full { width: 100%; }
.btn-sm {
    padding: 8px 14px; border-radius: 8px; border: none;
    background: var(--gradient-premium); color: #fff;
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: var(--font-body);
}
.btn-location {
    width: 100%; padding: 10px; border-radius: 10px; border: none;
    background: rgba(46,125,50,0.15); color: var(--primary-light);
    font-size: 14px; font-weight: 500; cursor: pointer;
    font-family: var(--font-body);
}

/* ========================================
   CART PANEL
   ======================================== */
.cart-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-panel {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 301;
    max-height: 92vh; background: var(--bg-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px solid var(--border-light); border-bottom: none;
    transform: translateY(100%); transition: transform 0.4s var(--ease);
    display: flex; flex-direction: column; overflow: hidden;
}
.cart-panel.active { transform: translateY(0); }
.cart-handle {
    width: 40px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.2); margin: 10px auto;
}
.cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px 14px; border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 18px; font-family: var(--font-display); }
.cart-header h2 i { color: var(--primary); }
.cart-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: none;
    color: var(--text-gray); font-size: 16px; cursor: pointer;
}
.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
    text-align: center; padding: 40px 0;
}
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty p { font-size: 16px; font-weight: 600; }
.cart-empty span { font-size: 13px; color: var(--text-muted); }
.cart-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-detail { font-size: 12px; color: var(--text-muted); }
.cart-item-qty {
    display: flex; align-items: center; gap: 6px;
}
.cart-item-qty button {
    width: 26px; height: 26px; border-radius: 7px; border: none;
    background: var(--bg-elevated); border: 1px solid var(--border-light);
    color: var(--text-white); font-size: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-price { font-weight: 700; color: var(--accent); font-size: 14px; white-space: nowrap; }
.cart-item-remove {
    width: 28px; height: 28px; border-radius: 7px; border: none;
    background: rgba(229,57,53,0.1); color: var(--danger);
    font-size: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.cart-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.coupon-check-btn {
    width: 100%; padding: 10px; border-radius: 10px; border: 1px dashed var(--accent);
    background: rgba(212,175,55,0.05); color: var(--accent);
    font-size: 13px; font-weight: 500; cursor: pointer; margin-bottom: 12px;
    font-family: var(--font-body);
}
.coupon-applied {
    display: flex; align-items: center; gap: 8px; padding: 10px;
    border-radius: 10px; background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.2); margin-bottom: 12px;
    color: var(--success); font-size: 13px; font-weight: 600;
}
.remove-coupon {
    margin-left: auto; background: none; border: none;
    color: var(--text-muted); cursor: pointer;
}
.cart-total-row {
    display: flex; justify-content: space-between; padding: 6px 0;
    font-size: 14px;
}
.cart-total-row span:first-child { color: var(--text-gray); }
.total-final { font-size: 18px; font-weight: 800; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.cart-total-amount { color: var(--accent); }
.discount-amount { color: var(--success); }
.discount-row { color: var(--success); }

/* Delivery */
.delivery-toggle { margin: 14px 0; }
.toggle-label {
    display: flex; align-items: center; gap: 10px; font-size: 14px;
    font-weight: 500; cursor: pointer;
}
.toggle-label input { display: none; }
.toggle-slider {
    width: 44px; height: 24px; border-radius: 12px;
    background: rgba(255,255,255,0.15); position: relative;
    transition: background 0.3s;
}
.toggle-slider::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; transition: transform 0.3s;
}
.toggle-label input:checked + .toggle-slider { background: var(--primary); }
.toggle-label input:checked + .toggle-slider::after { transform: translateX(20px); }
.delivery-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.location-status { font-size: 12px; margin-top: 6px; }
.location-status .success { color: var(--success); }
.location-status .err { color: var(--danger); }
.location-status .loading { color: var(--text-muted); }
.location-status a { color: var(--primary-light); }

/* Payment */
.payment-section { margin: 14px 0; }
.payment-section h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.payment-section h4 i { color: var(--accent); margin-right: 6px; }
.payment-options { display: flex; gap: 10px; }
.pay-opt {
    flex: 1; display: flex; align-items: center; gap: 8px;
    padding: 12px; border-radius: 10px; border: 1px solid var(--border-light);
    background: var(--bg-elevated); font-size: 13px; font-weight: 500;
    cursor: pointer; color: var(--text-gray); transition: all 0.3s;
}
.pay-opt input { display: none; }
.pay-opt.active { border-color: var(--primary); color: var(--primary-light); background: rgba(46,125,50,0.1); }
.bank-details {
    margin-top: 12px; padding: 12px; border-radius: 10px;
    background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.2);
}
.bank-title { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.bank-label { font-size: 12px; color: var(--text-muted); }
.bank-clabe-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.bank-clabe { font-size: 14px; font-weight: 700; color: var(--accent); font-family: monospace; }
.copy-btn {
    width: 30px; height: 30px; border-radius: 6px; border: none;
    background: rgba(212,175,55,0.15); color: var(--accent);
    cursor: pointer; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}

.cart-notes {
    width: 100%; padding: 10px; border-radius: 10px;
    background: var(--bg-elevated); border: 1px solid var(--border-light);
    color: var(--text-white); font-family: var(--font-body); font-size: 13px;
    resize: vertical; min-height: 50px; outline: none;
    margin: 12px 0;
}
/* RED checkout button */
.cart-checkout-btn {
    width: 100%; padding: 18px; border-radius: 14px; border: none;
    background: #C62828; color: #fff;
    font-family: var(--font-body); font-size: 17px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 10px;
    box-shadow: 0 6px 24px rgba(198,40,40,0.4);
    transition: all 0.3s ease;
}
.cart-checkout-btn:hover { box-shadow: 0 8px 32px rgba(198,40,40,0.5); }
.cart-checkout-btn:active { transform: scale(0.97); }

/* ========================================
   IMAGE PREVIEW
   ======================================== */
.img-preview-overlay {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(0,0,0,0.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.img-preview-overlay.active { opacity: 1; pointer-events: all; }
.img-preview-container { position: relative; max-width: 90vw; max-height: 90vh; }
.img-preview-image { max-width: 100%; max-height: 85vh; border-radius: 12px; }
.img-preview-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
}
.img-preview-info { text-align: center; color: var(--text-gray); font-size: 14px; margin-top: 8px; }

/* ========================================
   FOOTER
   ======================================== */
.app-footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 20px 16px; text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-info {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-gray); margin-bottom: 8px;
}
.footer-info i { color: var(--primary); margin-right: 4px; }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* FOOTER ACTIONS */
.footer-actions { margin: 12px 0; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    font-family: var(--font-body); font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: all 0.3s var(--ease); border: none;
}
.footer-btn-location {
    background: var(--gradient-premium); color: #fff;
    box-shadow: 0 4px 16px var(--shadow-primary);
}
.footer-btn-location:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--shadow-primary); }

/* ========================================
   FEEDBACK & TOAST
   ======================================== */
.add-feedback {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--bg-elevated); color: var(--text-white);
    padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 600;
    z-index: 500; animation: feedbackAnim 1.2s ease forwards;
    pointer-events: none; border: 1px solid var(--border-light);
}
@keyframes feedbackAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    15% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -60%) scale(0.9); }
}
.toast {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-20px);
    background: var(--bg-elevated); color: var(--text-white);
    padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 500;
    z-index: 600; opacity: 0; transition: all 0.3s var(--ease);
    border: 1px solid var(--border-light);
    max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(37,211,102,0.3); }

/* ========================================
   RESPONSIVE — TABLET & DESKTOP
   ======================================== */
@media (min-width: 768px) {
    .welcome-logo-container { width: 280px; height: 280px; }
    .welcome-logo-img { width: 260px; height: 260px; }
    .welcome-message { font-size: 18px; }
    .section-title { font-size: 30px; }
    .donut-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .pd-img-wrap { height: 300px; }
    .cart-panel { max-width: 480px; left: auto; right: 0; border-radius: var(--radius-lg) 0 0 0; }
}
@media (min-width: 1024px) {
    .menu-content { max-width: 900px; }
    .donut-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ========================================
   SHIMMER / LOADING
   ======================================== */
.donut-img-wrapper::before, .bev-item-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.05) 37%, transparent 63%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}
.donut-img-wrapper.loaded::before, .bev-item-img.loaded::before { display: none; }
@keyframes shimmer {
    to { background-position: -200% 0; }
}

/* ========================================
   MINI PROGRESS (for admin sections)
   ======================================== */
.mini-progress {
    width: 100%; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.1);
}
.mini-progress-bar {
    height: 100%; border-radius: 2px;
    background: var(--gradient-premium);
}

/* ========================================
   COMBO MENU SYSTEM
   (Hot Cakes, Crepas, Mini Hot Cakes)
   ======================================== */
.combo-menu-list {
    display: flex; flex-direction: column; gap: 8px;
}
.combo-tier {
    border-radius: var(--radius-md);
    background: var(--gradient-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}
.combo-tier.open {
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--shadow-primary);
}
.combo-tier-btn {
    width: 100%; display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: none; border: none;
    color: var(--text-white); cursor: pointer;
    font-family: var(--font-body); text-align: left;
    transition: background 0.2s;
}
.combo-tier-btn:hover { background: rgba(46,125,50,0.08); }
.combo-tier-emoji { font-size: 28px; flex-shrink: 0; }
.combo-tier-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.combo-tier-name { font-size: 16px; font-weight: 700; }
.combo-tier-price {
    font-size: 14px; font-weight: 700; color: var(--accent);
}
.combo-tier-arrow {
    font-size: 14px; color: var(--text-muted);
    transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.combo-tier.open .combo-tier-arrow { transform: rotate(180deg); }

/* Tier Body (expanded submenu) */
.combo-tier-body {
    padding: 0 16px 16px; animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.combo-slogan {
    font-size: 13px; color: var(--text-muted); margin-bottom: 12px;
    font-style: italic; text-align: center;
}

/* Combo Options (ingredient/combo selection) */
.combo-options {
    display: flex; flex-direction: column; gap: 6px;
    margin-bottom: 12px;
}
.combo-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s ease;
    font-family: var(--font-body);
}
.combo-option:hover:not(.disabled) {
    background: rgba(46,125,50,0.08);
    border-color: rgba(46,125,50,0.3);
}
.combo-option.selected {
    background: rgba(46,125,50,0.15);
    border-color: var(--primary);
}
.combo-option.disabled {
    opacity: 0.4; cursor: not-allowed;
}
.combo-check {
    font-size: 18px; color: var(--text-muted);
    flex-shrink: 0; display: flex; align-items: center;
}
.combo-option.selected .combo-check { color: var(--primary-light); }
.combo-option-name {
    font-size: 14px; color: var(--text-light); font-weight: 500;
}

/* Extra ingredient option */
.combo-extra-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    background: rgba(212,175,55,0.06);
    border: 1px dashed rgba(212,175,55,0.25);
    cursor: pointer; transition: all 0.2s ease;
    margin-bottom: 12px; font-family: var(--font-body);
}
.combo-extra-option:hover {
    background: rgba(212,175,55,0.12);
}
.combo-extra-option.selected {
    background: rgba(212,175,55,0.15);
    border-color: var(--accent);
    border-style: solid;
}
.combo-extra-label {
    font-size: 13px; color: var(--accent); font-weight: 600;
}
.combo-extra-label em { font-weight: 400; opacity: 0.7; }

/* Custom WhatsApp button */
.combo-custom-btn {
    width: 100%; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 10px 16px; border-radius: var(--radius-sm);
    border: 1px solid rgba(37,211,102,0.3);
    background: rgba(37,211,102,0.08);
    color: var(--success); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease;
    font-family: var(--font-body); margin-bottom: 12px;
}
.combo-custom-btn:hover {
    background: rgba(37,211,102,0.15);
    border-color: var(--success);
}

/* Availability WhatsApp button */
.combo-availability-btn {
    width: 100%; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 10px 16px; border-radius: var(--radius-sm);
    border: 1px solid rgba(37,211,102,0.25);
    background: rgba(37,211,102,0.06);
    color: var(--success); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.2s ease;
    font-family: var(--font-body); margin-bottom: 12px;
}
.combo-availability-btn:hover {
    background: rgba(37,211,102,0.12);
}

/* Add to cart section */
.combo-add-section {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.combo-total-price {
    font-size: 18px; font-weight: 800; color: var(--accent);
}
.combo-add-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 12px; border: none;
    background: var(--gradient-premium); color: #fff;
    font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px var(--shadow-primary);
    transition: all 0.2s ease;
}
.combo-add-btn:hover:not(.disabled) {
    box-shadow: 0 6px 20px var(--shadow-primary);
    transform: translateY(-1px);
}
.combo-add-btn:active:not(.disabled) { transform: scale(0.96); }
.combo-add-btn.disabled {
    opacity: 0.4; cursor: not-allowed;
    box-shadow: none;
}

/* Mini Hot Cakes size selector */
.mini-size-selector {
    display: flex; gap: 8px; margin-bottom: 12px;
}
.mini-size-btn {
    flex: 1; padding: 10px 12px; border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--bg-elevated); color: var(--text-gray);
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease; text-align: center;
}
.mini-size-btn:hover {
    border-color: rgba(46,125,50,0.3);
    background: rgba(46,125,50,0.08);
}
.mini-size-btn.active {
    border-color: var(--primary);
    background: rgba(46,125,50,0.15);
    color: var(--primary-light);
}
.mini-size-btn strong {
    display: block; font-size: 16px; color: var(--accent);
    margin-top: 2px;
}

/* ========================================
   TAMALES TABS — enhanced
   ======================================== */
.tamales-tabs {
    display: flex; gap: 8px; margin-bottom: 12px;
    justify-content: center;
}
.tamales-tab {
    flex: 1; max-width: 200px; padding: 10px 16px; border-radius: 12px;
    border: 1px solid var(--border-light);
    background: var(--bg-elevated); color: var(--text-gray);
    font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: var(--font-body); transition: all 0.3s ease;
    text-align: center;
}
.tamales-tab:hover { border-color: rgba(46,125,50,0.3); }
.tamales-tab.active {
    border-color: var(--primary);
    background: rgba(46,125,50,0.15);
    color: var(--primary-light);
}
.tamale-item { cursor: default; }

/* ========================================
   GLOBAL TEXT ADJUSTMENTS
   ======================================== */
.bev-item-info {
    text-align: left;
}
.combo-tier-btn {
    text-align: left;
}
