@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap";:root{--bg-primary: #0f0f0f;--bg-secondary: #1a1a1a;--bg-card: #1e1e1e;--bg-elevated: #252525;--accent: #f97316;--accent-dark: #ea6005;--accent-light: #fbbf24;--accent-glow: rgba(249, 115, 22, .15);--text-primary: #f5f5f5;--text-secondary: #a3a3a3;--text-muted: #636363;--border: rgba(255, 255, 255, .08);--border-accent: rgba(249, 115, 22, .4);--success: #22c55e;--error: #ef4444;--radius-sm: 8px;--radius-md: 14px;--radius-lg: 20px;--radius-xl: 28px;--shadow-card: 0 4px 24px rgba(0, 0, 0, .4);--shadow-glow: 0 0 24px rgba(249, 115, 22, .2);--max-width: 480px;--cart-bar-h: 72px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:Inter,sans-serif;background-color:var(--bg-primary);color:var(--text-primary);min-height:100vh;-webkit-font-smoothing:antialiased}button{cursor:pointer;border:none;font-family:inherit}input,select,textarea{font-family:inherit}.app-wrapper{max-width:var(--max-width);margin:0 auto;min-height:100vh;background-color:var(--bg-primary);position:relative}.app-header{background:linear-gradient(135deg,#1a1a1a,#0f0f0f);border-bottom:1px solid var(--border);padding:16px 20px;position:sticky;top:0;z-index:100;display:flex;justify-content:space-between;align-items:center}.header-brand h1{font-size:1.25rem;font-weight:800;color:var(--text-primary);letter-spacing:-.02em}.header-brand p{font-size:.72rem;color:var(--text-muted);margin-top:1px}.header-cart-btn{background:var(--accent-glow);border:1px solid var(--border-accent);color:var(--accent);border-radius:50px;padding:8px 14px;font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:6px;transition:all .2s ease}.header-cart-btn:hover{background:var(--accent);color:#fff;transform:translateY(-1px);box-shadow:var(--shadow-glow)}.cart-badge{background:var(--accent);color:#fff;border-radius:50%;width:20px;height:20px;font-size:.7rem;font-weight:700;display:flex;align-items:center;justify-content:center}.categorias-tabs{display:flex;gap:8px;padding:16px 20px 12px;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;background-color:var(--bg-primary);border-bottom:1px solid var(--border)}.categorias-tabs::-webkit-scrollbar{display:none}.tab-btn{flex-shrink:0;background:var(--bg-card);border:1px solid var(--border);color:var(--text-secondary);border-radius:50px;padding:8px 16px;font-size:.8rem;font-weight:500;transition:all .2s ease;white-space:nowrap}.tab-btn:hover{border-color:var(--border-accent);color:var(--accent)}.tab-btn.active{background:var(--accent);border-color:var(--accent);color:#fff;font-weight:600;box-shadow:0 2px 12px #f9731659}.menu-grid{padding:16px 16px calc(var(--cart-bar-h) + 20px);display:flex;flex-direction:column;gap:12px}.product-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;display:flex;align-items:center;gap:14px;padding:12px;transition:border-color .2s,transform .2s,box-shadow .2s}.product-card:hover{border-color:var(--border-accent);transform:translateY(-2px);box-shadow:var(--shadow-card)}.product-card.in-cart{border-color:var(--border-accent);background:linear-gradient(135deg,var(--bg-card) 0%,rgba(249,115,22,.05) 100%)}.product-img{width:90px;height:90px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0;background:var(--bg-elevated)}.product-info{flex:1;min-width:0}.product-name{font-size:.95rem;font-weight:700;color:var(--text-primary);margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-desc{font-size:.75rem;color:var(--text-muted);line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-footer{display:flex;justify-content:space-between;align-items:center;margin-top:10px}.product-price{font-size:1rem;font-weight:800;color:var(--accent)}.qty-controls{display:flex;align-items:center;gap:8px}.qty-btn{width:30px;height:30px;border-radius:50%;border:1.5px solid var(--border-accent);background:transparent;color:var(--accent);font-size:1.1rem;font-weight:700;display:flex;align-items:center;justify-content:center;transition:all .15s;line-height:1}.qty-btn:hover,.qty-btn.add-only{background:var(--accent);color:#fff;border-color:var(--accent)}.qty-num{font-size:.95rem;font-weight:700;color:var(--text-primary);min-width:22px;text-align:center}.cart-float-bar{position:fixed;bottom:0;left:50%;transform:translate(-50%);width:100%;max-width:var(--max-width);height:var(--cart-bar-h);background:var(--bg-elevated);border-top:1px solid var(--border);display:flex;align-items:center;padding:0 16px;gap:12px;z-index:200;box-shadow:0 -4px 24px #00000080}.cart-bar-info{flex:1}.cart-bar-items{font-size:.78rem;color:var(--text-muted)}.cart-bar-total{font-size:1.1rem;font-weight:800;color:var(--text-primary)}.cart-bar-total span{color:var(--accent)}.cart-bar-btn{background:var(--accent);color:#fff;border-radius:var(--radius-sm);padding:12px 22px;font-size:.9rem;font-weight:700;transition:all .2s;white-space:nowrap;box-shadow:0 4px 14px #f9731666}.cart-bar-btn:hover{background:var(--accent-dark);transform:translateY(-1px)}.cart-bar-btn:disabled{background:var(--bg-card);color:var(--text-muted);box-shadow:none;transform:none;cursor:not-allowed}.overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:300;animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.cart-drawer{position:fixed;bottom:0;left:50%;transform:translate(-50%);width:100%;max-width:var(--max-width);max-height:85vh;background:var(--bg-secondary);border-radius:var(--radius-lg) var(--radius-lg) 0 0;z-index:400;display:flex;flex-direction:column;animation:slideUp .3s cubic-bezier(.32,.72,0,1);border-top:1px solid var(--border)}@keyframes slideUp{0%{transform:translate(-50%) translateY(100%)}to{transform:translate(-50%) translateY(0)}}.drawer-header{display:flex;justify-content:space-between;align-items:center;padding:20px 20px 16px;border-bottom:1px solid var(--border)}.drawer-header h2{font-size:1.1rem;font-weight:700}.close-btn{background:var(--bg-elevated);border:1px solid var(--border);color:var(--text-secondary);border-radius:50%;width:34px;height:34px;font-size:1rem;display:flex;align-items:center;justify-content:center;transition:all .15s}.close-btn:hover{background:var(--error);color:#fff;border-color:var(--error)}.drawer-items{overflow-y:auto;flex:1;padding:12px 20px;display:flex;flex-direction:column;gap:10px}.drawer-item{display:flex;align-items:center;gap:12px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-sm);padding:10px 12px}.drawer-item-img{width:52px;height:52px;border-radius:6px;object-fit:cover;flex-shrink:0}.drawer-item-info{flex:1;min-width:0}.drawer-item-name{font-size:.85rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer-item-price{font-size:.78rem;color:var(--accent);font-weight:700;margin-top:2px}.drawer-qty-controls{display:flex;align-items:center;gap:6px}.drawer-footer{padding:16px 20px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:12px}.drawer-total-row{display:flex;justify-content:space-between;align-items:center}.drawer-total-label{font-size:.9rem;color:var(--text-secondary)}.drawer-total-amount{font-size:1.3rem;font-weight:800;color:var(--accent)}.checkout-btn{background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);color:#fff;border-radius:var(--radius-md);padding:16px;font-size:1rem;font-weight:700;text-align:center;transition:all .2s;box-shadow:0 4px 20px #f9731666}.checkout-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px #f9731680}.empty-cart{text-align:center;padding:40px 20px;color:var(--text-muted)}.empty-cart .empty-icon{font-size:3rem;margin-bottom:12px}.empty-cart p{font-size:.9rem}.checkout-modal{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;align-items:flex-end;justify-content:center;z-index:500}.checkout-panel{width:100%;max-width:var(--max-width);max-height:92vh;background:var(--bg-secondary);border-radius:var(--radius-lg) var(--radius-lg) 0 0;display:flex;flex-direction:column;animation:slideUp .3s cubic-bezier(.32,.72,0,1);border:1px solid var(--border);overflow:hidden}.steps-bar{display:flex;padding:20px 20px 0;gap:6px}.step-dot{height:4px;flex:1;border-radius:4px;background:var(--bg-elevated);transition:background .3s}.step-dot.done{background:var(--accent)}.step-dot.active{background:var(--accent-light)}.checkout-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px 12px;border-bottom:1px solid var(--border)}.checkout-header-left h3{font-size:1rem;font-weight:700}.checkout-header-left p{font-size:.75rem;color:var(--text-muted);margin-top:2px}.checkout-body{overflow-y:auto;flex:1;padding:20px;display:flex;flex-direction:column;gap:14px}.form-group{display:flex;flex-direction:column;gap:6px}.form-label{font-size:.8rem;font-weight:600;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.05em}.form-input{background:var(--bg-card);border:1.5px solid var(--border);color:var(--text-primary);border-radius:var(--radius-sm);padding:12px 14px;font-size:.95rem;outline:none;transition:border-color .2s;width:100%}.form-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-glow)}.form-input::placeholder{color:var(--text-muted)}.radio-options{display:flex;flex-direction:column;gap:10px}.radio-option{display:flex;align-items:center;gap:14px;background:var(--bg-card);border:1.5px solid var(--border);border-radius:var(--radius-md);padding:14px 16px;cursor:pointer;transition:all .2s}.radio-option:hover{border-color:var(--border-accent)}.radio-option.selected{border-color:var(--accent);background:linear-gradient(135deg,var(--bg-card) 0%,rgba(249,115,22,.08) 100%)}.radio-option input[type=radio]{display:none}.radio-icon{font-size:1.6rem}.radio-text h4{font-size:.9rem;font-weight:700}.radio-text p{font-size:.75rem;color:var(--text-muted);margin-top:2px}.radio-check{margin-left:auto;width:20px;height:20px;border-radius:50%;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;transition:all .2s;flex-shrink:0}.radio-option.selected .radio-check{background:var(--accent);border-color:var(--accent)}.radio-option.selected .radio-check:after{content:"";display:block;width:8px;height:8px;border-radius:50%;background:#fff}.payment-options{display:flex;flex-direction:column;gap:10px}.payment-option{cursor:pointer}.payment-option-header{display:flex;align-items:center;gap:12px;background:var(--bg-card);border:1.5px solid var(--border);border-radius:var(--radius-md);padding:14px 16px;transition:all .2s}.payment-option.selected .payment-option-header{border-color:var(--accent);border-bottom-left-radius:0;border-bottom-right-radius:0}.payment-icon{font-size:1.4rem}.payment-label{font-size:.9rem;font-weight:600;flex:1}.payment-instructions{background:#f973160f;border:1.5px solid var(--accent);border-top:none;border-radius:0 0 var(--radius-md) var(--radius-md);padding:12px 16px;font-size:.8rem;color:var(--text-secondary);line-height:1.5}.order-summary-box{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}.summary-title{padding:12px 14px;background:var(--bg-elevated);font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-secondary);border-bottom:1px solid var(--border)}.summary-item{display:flex;justify-content:space-between;padding:10px 14px;font-size:.85rem;border-bottom:1px solid var(--border)}.summary-item:last-child{border-bottom:none}.summary-item-name{color:var(--text-secondary)}.summary-item-price{font-weight:600}.summary-total{display:flex;justify-content:space-between;align-items:center;padding:14px;border-top:1px solid var(--border-accent);background:linear-gradient(135deg,var(--bg-card) 0%,rgba(249,115,22,.05) 100%)}.summary-total-label{font-size:.9rem;font-weight:600;color:var(--text-secondary)}.summary-total-amount{font-size:1.2rem;font-weight:800;color:var(--accent)}.info-chips{display:flex;flex-direction:column;gap:8px}.info-chip{display:flex;align-items:center;gap:10px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-sm);padding:10px 14px;font-size:.83rem}.info-chip-icon{font-size:1rem;flex-shrink:0}.info-chip-text{flex:1;color:var(--text-secondary)}.info-chip-value{font-weight:600;color:var(--text-primary);font-size:.82rem;text-align:right}.checkout-footer{padding:16px 20px;border-top:1px solid var(--border);display:flex;gap:10px}.back-btn{background:var(--bg-elevated);border:1px solid var(--border);color:var(--text-secondary);border-radius:var(--radius-sm);padding:14px 18px;font-size:.9rem;font-weight:600;transition:all .15s}.back-btn:hover{background:var(--bg-card);color:var(--text-primary)}.next-btn{flex:1;background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);color:#fff;border-radius:var(--radius-sm);padding:14px;font-size:.95rem;font-weight:700;transition:all .2s;box-shadow:0 4px 16px #f9731659}.next-btn:hover{transform:translateY(-1px);box-shadow:0 6px 22px #f9731673}.next-btn:disabled{background:var(--bg-card);color:var(--text-muted);box-shadow:none;transform:none;cursor:not-allowed}.whatsapp-btn{flex:1;background:linear-gradient(135deg,#25d366,#128c7e);color:#fff;border-radius:var(--radius-sm);padding:14px;font-size:.95rem;font-weight:700;transition:all .2s;display:flex;align-items:center;justify-content:center;gap:8px;box-shadow:0 4px 16px #25d3664d}.whatsapp-btn:hover{transform:translateY(-1px);box-shadow:0 6px 22px #25d36673}.whatsapp-btn:disabled{background:var(--bg-card);color:var(--text-muted);box-shadow:none;transform:none;cursor:not-allowed}@keyframes popIn{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}.product-card{animation:popIn .25s ease both}.product-card:nth-child(1){animation-delay:.03s}.product-card:nth-child(2){animation-delay:.06s}.product-card:nth-child(3){animation-delay:.09s}.product-card:nth-child(4){animation-delay:.12s}.product-card:nth-child(5){animation-delay:.15s}.product-card:nth-child(6){animation-delay:.18s}::-webkit-scrollbar{width:4px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:var(--border);border-radius:4px}.visually-hidden{display:none}.text-accent{color:var(--accent)}.text-muted{color:var(--text-muted)}
