/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0a0a0a;
  --white: #fafaf8;
  --cream: #f4f0e8;
  --accent: #c8440a;
  --gray: #888;
  --border: #e0dcd4;
  --r: 14px;
  --rs: 8px;
}
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Fraunces', serif; }

/* ===== NAV ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,250,248,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); height: 64px; display: flex; align-items: center; padding: 0 5vw; }
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; cursor: pointer; line-height: 1.1; }
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 10px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; font-family: 'DM Sans', sans-serif; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--black); text-decoration: none; opacity: 0.7; cursor: pointer; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav { background: none; border: 1.5px solid var(--border); border-radius: var(--rs); padding: 7px 16px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.btn-nav:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.cart-btn { background: var(--black); color: var(--white); border: none; border-radius: var(--rs); padding: 8px 18px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.cart-btn:hover { background: #222; }
.cart-count { background: var(--accent); color: #fff; border-radius: 50%; width: 18px; height: 18px; font-size: 11px; display: flex; align-items: center; justify-content: center; font-weight: 500; }

/* ===== SISTEMA DE PÁGINAS ===== */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* ===== BARRA DE PROMOS ===== */
.promo-bar { background: var(--accent); color: #fff; padding: 11px 5vw; text-align: center; font-size: 13px; font-weight: 500; cursor: pointer; }
.promo-bar span { background: rgba(255,255,255,0.2); border-radius: 100px; padding: 2px 10px; margin: 0 4px; font-size: 12px; }

/* ===== HERO ===== */
.hero { background: var(--black); color: var(--white); padding: 90px 5vw 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,68,10,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 5px 14px; font-size: 12px; margin-bottom: 22px; letter-spacing: 0.5px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
h1.hero-title { font-size: clamp(40px, 5vw, 66px); line-height: 1.05; font-weight: 700; margin-bottom: 18px; letter-spacing: -2px; }
.hero-sub { font-size: 16px; opacity: 0.65; line-height: 1.6; margin-bottom: 32px; max-width: 400px; font-weight: 300; }
.btn-primary { background: var(--white); color: var(--black); border: none; border-radius: var(--r); padding: 14px 28px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--r); padding: 13px 28px; font-size: 14px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; margin-left: 10px; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); }
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 15px; cursor: pointer; transition: all 0.25s; }
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateX(-4px); }
.hero-card-emoji { font-size: 22px; margin-bottom: 5px; }
.hero-card h3 { font-size: 13px; margin-bottom: 2px; }
.hero-card p { font-size: 11px; opacity: 0.5; }

/* ===== SECCIONES ===== */
section { padding: 72px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-weight: 500; }
.section-title { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--gray); margin-bottom: 44px; font-weight: 300; }

/* ===== CATEGORÍAS ===== */
.categories-bg { background: var(--cream); }
.cats-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 15px 8px; text-align: center; cursor: pointer; transition: all 0.2s; }
.cat-card:hover, .cat-card.active { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }
.cat-emoji { font-size: 22px; margin-bottom: 6px; }
.cat-name { font-size: 11px; font-weight: 500; }
.cat-count { font-size: 10px; color: var(--gray); margin-top: 2px; }
.cat-card:hover .cat-count, .cat-card.active .cat-count { color: rgba(255,255,255,0.5); }

/* ===== PRODUCTOS ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all 0.25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.product-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 52px; background: var(--cream); position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.product-img .efb { position: relative; z-index: 1; }
.product-info { padding: 12px; }
.product-name { font-size: 13px; font-weight: 500; margin-bottom: 3px; line-height: 1.3; }
.product-desc { font-size: 11px; color: var(--gray); margin-bottom: 9px; line-height: 1.4; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; }
.add-btn { background: var(--black); color: var(--white); border: none; border-radius: var(--rs); width: 28px; height: 28px; font-size: 16px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.add-btn:hover { background: var(--accent); transform: scale(1.05); }
.badge { font-size: 10px; padding: 2px 7px; border-radius: 100px; display: inline-block; margin-bottom: 4px; letter-spacing: 0.3px; font-weight: 500; }
.badge-promo { background: #fef9c3; color: #854d0e; }
.badge-top { background: var(--accent); color: #fff; }
.badge-sintacc { background: #dcfce7; color: #166634; }

/* ===== CÓMO FUNCIONA ===== */
.how-bg { background: var(--black); color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); overflow: hidden; }
.step { padding: 30px 22px; background: var(--black); }
.step-num { font-family: 'Fraunces', serif; font-size: 42px; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 10px; }
.step h3 { font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 12px; opacity: 0.5; line-height: 1.6; }

/* ===== RESEÑAS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.stars { color: #f59e0b; font-size: 12px; margin-bottom: 9px; }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.review-top .stars { margin-bottom: 0; }
.google-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray); }
.local-guide { display: inline-block; margin-top: 3px; background: #dcfce7; color: #16a34a; font-size: 10px; font-weight: 600; border-radius: 6px; padding: 2px 6px; line-height: 1.4; }
.review-text { font-size: 13px; line-height: 1.7; color: #333; margin-bottom: 13px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 9px; }
.reviewer-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; font-family: 'Fraunces', serif; }
.reviewer-name { font-size: 13px; font-weight: 500; }
.reviewer-loc { font-size: 11px; color: var(--gray); }

/* ===== BENEFICIOS ===== */
.benefits-bg { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { text-align: center; padding: 26px 16px; background: var(--white); border-radius: var(--r); border: 1px solid var(--border); }
.benefit-icon { font-size: 28px; margin-bottom: 9px; }
.benefit h3 { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.benefit p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ===== NOSOTROS ===== */
.nosotros-bg { background: var(--black); color: var(--white); }
.nosotros-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nosotros-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; color: var(--white); }
.nosotros-text p { font-size: 15px; line-height: 1.8; opacity: 0.7; margin-bottom: 14px; font-weight: 300; }
.nosotros-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.nosotros-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 16px; }
.nosotros-stat-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--accent); }
.nosotros-stat-label { font-size: 12px; opacity: 0.5; margin-top: 2px; }
.nosotros-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nosotros-img-slot { background: rgba(255,255,255,0.05); border: 2px dashed rgba(255,255,255,0.15); border-radius: var(--r); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; text-align: center; padding: 16px; position: relative; overflow: hidden; }
.nosotros-img-slot:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.nosotros-img-slot-icon { font-size: 28px; margin-bottom: 8px; opacity: 0.4; }
.nosotros-img-slot p { font-size: 11px; opacity: 0.35; line-height: 1.4; }
.nosotros-img-slot img, .nosotros-img-slot video { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r) - 2px); position: absolute; inset: 0; }

/* ===== ZONA DE COBERTURA ===== */
.zone-bg { background: var(--black); color: var(--white); }
.zone-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.zone-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 8px 16px; font-size: 12px; margin-bottom: 24px; }
.zone-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.zone-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -1px; margin-bottom: 28px; color: var(--white); }
.zone-feature { display: flex; gap: 16px; margin-bottom: 20px; }
.zone-feature-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.zone-feature h3 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.zone-feature p { font-size: 13px; opacity: 0.6; font-weight: 300; }
.zone-note { display: flex; gap: 14px; align-items: center; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r); padding: 16px; margin-top: 8px; }
.zone-note h3 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.zone-note p { font-size: 13px; opacity: 0.6; font-weight: 300; }
.zone-img { width: 100%; border-radius: 16px; display: block; }

/* ===== VIDEOS ===== */
.video-section { background: var(--cream); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-slot { background: var(--white); border: 2px dashed var(--border); border-radius: var(--r); aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; text-align: center; padding: 20px; position: relative; overflow: hidden; }
.video-slot:hover { border-color: var(--accent); background: var(--cream); }
.video-slot-icon { font-size: 36px; margin-bottom: 10px; opacity: 0.3; }
.video-slot h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; opacity: 0.5; }
.video-slot p { font-size: 11px; color: var(--gray); opacity: 0.7; }
.video-slot video, .video-slot iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r) - 2px); }
.video-slot .video-label { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.7); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 100px; }

/* ===== CATERING ===== */
.cotizar-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; border: none; border-radius: var(--r); padding: 14px 28px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 20px; transition: all 0.2s; text-decoration: none; }
.cotizar-btn:hover { background: #a83508; transform: translateY(-1px); }
.catering-banner { background: var(--accent); color: var(--white); border-radius: 20px; padding: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.catering-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; }
.catering-banner p { opacity: 0.85; line-height: 1.6; font-weight: 300; }
.btn-white { background: var(--white); color: var(--accent); border: none; border-radius: var(--r); padding: 13px 24px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 20px; display: inline-block; transition: all 0.2s; }
.btn-white:hover { background: var(--cream); }

/* ===== FOOTER ===== */
footer { background: var(--black); color: var(--white); padding: 52px 5vw 26px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; opacity: 0.5; margin-top: 9px; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.4; margin-bottom: 13px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 13px; opacity: 0.6; margin-bottom: 6px; cursor: pointer; }
.footer-col li:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.4; }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-btn { width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: all 0.2s; text-decoration: none; font-size: 24px; }
.wa-btn:hover { transform: scale(1.1); }
.wa-tooltip { background: var(--black); color: #fff; font-size: 12px; padding: 7px 13px; border-radius: 100px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all 0.2s; pointer-events: none; }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ===== CARRITO ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; display: none; backdrop-filter: blur(4px); }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; background: var(--white); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 20px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 17px; font-weight: 600; }
.close-btn { background: none; border: 1px solid var(--border); border-radius: var(--rs); width: 32px; height: 32px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.close-btn:hover { background: var(--black); color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px; }
.cart-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 48px; height: 48px; background: var(--cream); border-radius: var(--rs); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; line-height: 1.3; }
.cart-item-price { font-size: 12px; color: var(--gray); }
.cart-qty { display: flex; align-items: center; gap: 7px; margin-top: 6px; }
.qty-btn { background: none; border: 1px solid var(--border); border-radius: var(--rs); width: 22px; height: 22px; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.qty-btn:hover { background: var(--black); color: var(--white); }
.qty-num { font-size: 13px; font-weight: 500; min-width: 18px; text-align: center; }
.remove-btn { background: none; border: none; color: #ccc; cursor: pointer; font-size: 15px; margin-left: auto; align-self: flex-start; transition: color 0.2s; }
.remove-btn:hover { color: var(--accent); }
.cart-footer { padding: 16px 18px; border-top: 1px solid var(--border); }
.coupon-row { display: flex; gap: 7px; margin-bottom: 12px; }
.coupon-input { flex: 1; border: 1px solid var(--border); border-radius: var(--rs); padding: 8px 11px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.coupon-input:focus { border-color: var(--black); }
.coupon-btn { background: var(--black); color: var(--white); border: none; border-radius: var(--rs); padding: 8px 14px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.totals-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; color: var(--gray); }
.totals-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; margin: 9px 0; padding-top: 9px; border-top: 1px solid var(--border); }
.checkout-btn { width: 100%; background: var(--black); color: var(--white); border: none; border-radius: var(--r); padding: 14px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.checkout-btn:hover { background: var(--accent); }

/* ===== MODAL DE PRODUCTO ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 300; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 20px; width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; animation: slideUp 0.3s ease; position: relative; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 66px; background: var(--cream); border-radius: 20px 20px 0 0; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 22px; }
.modal-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.modal-subdesc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 13px; }
.modal-price { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.qty-selector { display: flex; align-items: center; gap: 14px; margin-bottom: 15px; }
.qty-big { background: none; border: 1.5px solid var(--border); border-radius: var(--rs); width: 36px; height: 36px; font-size: 17px; cursor: pointer; transition: all 0.2s; }
.qty-big:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.qty-big-num { font-size: 18px; font-weight: 600; min-width: 28px; text-align: center; }
.modal-add-btn { width: 100%; background: var(--black); color: var(--white); border: none; border-radius: var(--r); padding: 14px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.modal-add-btn:hover { background: var(--accent); }
.modal-close { background: rgba(255,255,255,0.9); border: 1px solid var(--border); border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; position: absolute; top: 10px; right: 10px; z-index: 10; transition: all 0.2s; }
.modal-close:hover { background: var(--black); color: var(--white); }

/* ===== CHECKOUT ===== */
.checkout-layout { max-width: 1040px; margin: 0 auto; padding: 32px 5vw; display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.checkout-steps { display: flex; margin-bottom: 22px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.ck-step { flex: 1; padding: 11px; text-align: center; font-size: 12px; background: var(--cream); border-right: 1px solid var(--border); transition: all 0.2s; }
.ck-step:last-child { border-right: none; }
.ck-step.active { background: var(--black); color: var(--white); }
.ck-step.done { background: var(--accent); color: var(--white); }
.section-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; margin-bottom: 12px; }
.section-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 13px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
.form-group label .req { color: var(--accent); }
.form-input, .form-select { width: 100%; border: 1.5px solid var(--border); border-radius: var(--rs); padding: 10px 12px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; background: var(--white); color: var(--black); appearance: none; }
.form-input:focus, .form-select:focus { border-color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.select-wrap { position: relative; }
.select-wrap::after { content: '▾'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--gray); pointer-events: none; }
.zone-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--r); padding: 16px; margin-top: 10px; }
.zone-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.zone-card p { font-size: 12px; color: var(--gray); }
.zone-cost { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; margin-top: 6px; }
.free-badge { display: inline-block; background: #dcfce7; color: #16a34a; font-size: 11px; padding: 2px 8px; border-radius: 100px; font-weight: 500; margin-left: 6px; }
.pay-opts { display: flex; flex-direction: column; gap: 7px; }
.pay-opt { border: 1.5px solid var(--border); border-radius: var(--rs); padding: 10px 12px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-size: 13px; transition: all 0.2s; }
.pay-opt.selected { border-color: var(--black); }
.order-summary { background: var(--cream); border-radius: var(--r); padding: 20px; position: sticky; top: 80px; }
.order-summary h3 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.oi-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 7px; align-items: center; }
.oi-name { display: flex; align-items: center; gap: 7px; min-width: 0; }
.oi-name span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 145px; font-size: 12px; }
.oi-emoji { width: 24px; height: 24px; background: var(--white); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; overflow: hidden; }
.oi-emoji img { width: 100%; height: 100%; object-fit: cover; }
.oi-total { font-weight: 700; font-size: 14px; border-top: 1px solid var(--border); padding-top: 9px; margin-top: 7px; display: flex; justify-content: space-between; }

/* ===== CONFIRMACIÓN ===== */
.confirm-page { max-width: 520px; margin: 0 auto; padding: 72px 20px; text-align: center; }
.confirm-check { width: 66px; height: 66px; background: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; color: #fff; }
.confirm-page h2 { font-size: 24px; font-weight: 700; margin-bottom: 7px; }
.confirm-page p { color: var(--gray); margin-bottom: 20px; line-height: 1.6; }
.order-num { background: var(--cream); border-radius: var(--r); padding: 12px 20px; font-family: 'Fraunces', serif; font-size: 19px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.wa-confirm-btn { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; border: none; border-radius: var(--r); padding: 13px 24px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 6px; text-decoration: none; transition: all 0.2s; }
.wa-confirm-btn:hover { background: #1da851; }

/* ===== AUTH ===== */
.auth-page { max-width: 420px; margin: 0 auto; padding: 52px 20px; }
.auth-page h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.auth-page p { color: var(--gray); margin-bottom: 24px; font-size: 14px; }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.auth-toggle { display: flex; background: var(--cream); border-radius: var(--rs); padding: 4px; margin-bottom: 20px; }
.auth-tab { flex: 1; padding: 8px; text-align: center; border-radius: var(--rs); font-size: 13px; cursor: pointer; border: none; background: none; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.auth-tab.active { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,0.1); font-weight: 500; }
.divider { text-align: center; font-size: 12px; color: var(--gray); margin: 12px 0; position: relative; }
.divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.divider span { background: var(--white); padding: 0 12px; position: relative; }
.btn-full { width: 100%; background: var(--black); color: var(--white); border: none; border-radius: var(--r); padding: 13px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; margin-top: 6px; }
.btn-full:hover { background: var(--accent); }
.error-msg { font-size: 12px; color: var(--accent); margin-top: 4px; display: none; }

/* ===== CUENTA ===== */
.account-layout { max-width: 1040px; margin: 0 auto; padding: 32px 5vw; display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.account-nav { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 12px; height: fit-content; position: sticky; top: 80px; }
.account-nav-item { padding: 9px 13px; border-radius: var(--rs); font-size: 13px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 9px; }
.account-nav-item:hover, .account-nav-item.active { background: var(--black); color: var(--white); }
.order-row { border: 1px solid var(--border); border-radius: var(--r); padding: 13px; margin-bottom: 9px; display: flex; justify-content: space-between; align-items: center; }
.order-status { font-size: 11px; padding: 3px 8px; border-radius: 100px; font-weight: 500; }
.status-delivered { background: #dcfce7; color: #16a34a; }
.status-processing { background: #fef9c3; color: #a16207; }
.status-pending { background: #fee2e2; color: #dc2626; }

/* ===== PÁGINA DE CATERING ===== */
.catering-page { max-width: 560px; margin: 0 auto; padding: 52px 20px; }
.catering-page h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.catering-page .sub { color: var(--gray); margin-bottom: 26px; font-size: 14px; line-height: 1.6; }

/* ===== ADMIN ===== */
.admin-login { max-width: 340px; margin: 0 auto; padding: 72px 20px; text-align: center; }
.admin-login h2 { font-size: 24px; font-weight: 700; margin-bottom: 7px; }
.admin-login p { color: var(--gray); margin-bottom: 24px; font-size: 13px; }
.admin-topbar { background: var(--black); color: var(--white); padding: 0 5vw; height: 52px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.admin-topbar-title { font-family: 'Fraunces', serif; font-size: 15px; }
.admin-nav { display: flex; gap: 2px; }
.admin-nav-item { padding: 6px 12px; border-radius: var(--rs); font-size: 12px; cursor: pointer; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.12); color: #fff; }
.admin-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5vw 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; }
.stat-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.stat-num { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; }
.stat-change { font-size: 11px; color: #16a34a; margin-top: 3px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.admin-table th { text-align: left; padding: 10px 13px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; background: var(--cream); border-bottom: 1px solid var(--border); color: var(--gray); }
.admin-table td { padding: 10px 13px; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafaf8; }
.edit-btn { background: none; border: 1px solid var(--border); border-radius: var(--rs); padding: 4px 10px; font-size: 11px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.edit-btn:hover { background: var(--black); color: var(--white); }
.chart-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 7px; height: 100px; margin-top: 12px; }
.chart-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.chart-bar { width: 100%; background: var(--black); border-radius: 3px 3px 0 0; transition: all 0.3s; min-height: 4px; }
.chart-bar:hover { background: var(--accent); }
.chart-label { font-size: 10px; color: var(--gray); }
.chart-val { font-size: 10px; font-weight: 500; }
.product-edit-row { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 14px; margin-bottom: 9px; display: flex; align-items: center; gap: 13px; }
.prod-thumb { width: 50px; height: 50px; background: var(--cream); border-radius: var(--rs); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; overflow: hidden; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-info { flex: 1; min-width: 0; }
.prod-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.prod-cat { font-size: 11px; color: var(--gray); }
.prod-actions { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.price-input { border: 1.5px solid var(--border); border-radius: var(--rs); padding: 5px 9px; font-size: 13px; font-family: 'Fraunces', serif; font-weight: 700; width: 110px; outline: none; text-align: center; }
.price-input:focus { border-color: var(--black); }
.sheets-info { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--r); padding: 16px; margin-bottom: 16px; font-size: 13px; line-height: 1.8; color: #1e3a5f; }
.sheets-info a { color: #1d4ed8; }
.tag-catering { background: #eff6ff; color: #1d4ed8; font-size: 11px; padding: 2px 7px; border-radius: 100px; font-weight: 500; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--black); color: var(--white); padding: 10px 20px; border-radius: 100px; font-size: 13px; z-index: 600; transition: transform 0.3s ease; white-space: nowrap; max-width: 90vw; text-align: center; }
.toast.show { transform: translateX(-50%) translateY(0); }
.empty-cart { text-align: center; padding: 44px 18px; color: var(--gray); }

/* ===== PANTALLA DE CARGA ===== */
.loading-screen { position: fixed; inset: 0; background: var(--white); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.loading-logo { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; }
.loading-logo span { color: var(--accent); }
.loading-bar-bg { width: 200px; height: 3px; background: var(--cream); border-radius: 100px; overflow: hidden; }
.loading-bar { height: 3px; background: var(--accent); border-radius: 100px; animation: loadAnim 1.5s ease-in-out infinite; }
@keyframes loadAnim { 0% { width: 0%; } 100% { width: 100%; } }
.loading-text { font-size: 12px; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner, .checkout-layout, .account-layout, .nosotros-inner, .zone-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catering-banner { grid-template-columns: 1fr; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-sidebar { width: 100%; }
  .video-grid { grid-template-columns: 1fr; }
  .nosotros-visual { display: none; }
}
@media (max-width: 600px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid, .reviews-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nosotros-stats { grid-template-columns: 1fr 1fr; }
}
