/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; background: #0d0d0d; color: #f0f0f0; min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-glow: rgba(204,0,0,0.4);
  --black: #0d0d0d;
  --dark: #111111;
  --dark2: #161616;
  --card: #1e1e1e;
  --card2: #242424;
  --border: #2a2a2a;
  --border2: #333;
  --gold: #FFD700;
  --gold-dark: #c9a800;
  --white: #ffffff;
  --text: #f0f0f0;
  --text2: #c0c0c0;
  --muted: #888;
  --green: #25D366;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3 { font-family: 'Oswald', 'Impact', sans-serif; letter-spacing: 0.02em; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTION HEADERS ===== */
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 14px; }
.section-title-left { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 20px; }
.section-title-left span { color: var(--red); }
.section-sub { font-size: 1rem; color: var(--text2); max-width: 540px; line-height: 1.6; }
.section-header { text-align: center; margin-bottom: 48px; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.8); border-bottom-color: var(--red); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.1rem; color: white; line-height: 1.1; }
.logo-text span { display: block; font-size: 0.65rem; color: var(--gold); letter-spacing: 3px; font-weight: 600; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 7px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; color: var(--text2); transition: color var(--transition), background var(--transition); white-space: nowrap; }
.nav-link:hover { color: white; background: var(--border); }
.nav-phone { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-call { padding: 9px 18px; background: var(--red); color: white; border-radius: 9px; font-weight: 700; font-size: 0.88rem; border: none; transition: background var(--transition), transform var(--transition); white-space: nowrap; }
.btn-call:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-cart { width: 44px; height: 44px; border-radius: 10px; background: var(--gold); color: #111; border: none; display: flex; align-items: center; justify-content: center; gap: 4px; position: relative; transition: transform var(--transition); }
.btn-cart:hover { transform: scale(1.06); }
.cart-badge { position: absolute; top: -4px; right: -4px; background: var(--red); color: white; border-radius: 50%; min-width: 20px; height: 20px; font-size: 0.7rem; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 2px solid var(--black); }
.btn-menu { display: none; width: 40px; height: 40px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; }
.btn-menu span { display: block; width: 18px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 80px 20px 60px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0a0a0a; }
.hero-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 40%, rgba(5,5,5,0.72) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0.9; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 22px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-accent { color: var(--red); display: block; }
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 36px; max-width: 560px; }
.d-md { display: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.cta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--red); color: white; border-radius: 10px; font-weight: 700; font-size: 1rem; border: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); white-space: nowrap; }
.cta-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }
.cta-primary.cta-lg { padding: 16px 32px; font-size: 1.05rem; }
.cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--gold); color: #111; border-radius: 10px; font-weight: 700; font-size: 1rem; border: none; transition: background var(--transition), transform var(--transition); white-space: nowrap; }
.cta-secondary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.cta-social { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; background: transparent; color: rgba(255,255,255,0.8); border-radius: 10px; font-weight: 600; font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.25); transition: all var(--transition); white-space: nowrap; }
.cta-social:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: white; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pills span { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2; }
.hero-scroll-hint span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ===== INFO STRIP ===== */
.info-strip { background: var(--red); padding: 14px 20px; overflow: hidden; }
.strip-inner { max-width: 1200px; margin: 0 auto; text-align: center; font-size: 0.88rem; font-weight: 700; color: white; }

/* ===== ABOUT ===== */
.about-section { background: var(--dark2); padding: 100px 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-frame { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.about-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a0808 0%, #2d1010 50%, #1a0808 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 2px dashed rgba(204,0,0,0.3); }
.img-ph-icon { font-size: 4rem; }
.img-ph-label { font-weight: 700; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.img-ph-path { font-size: 0.7rem; color: rgba(255,255,255,0.25); font-family: monospace; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: white; border-radius: 50%; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 24px var(--red-glow); }
.badge-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.7rem; font-weight: 600; opacity: 0.9; line-height: 1.3; }
.about-text p { color: var(--text2); line-height: 1.75; margin-bottom: 18px; font-size: 1.02rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 14px; text-align: center; }
.stat-n { display: block; font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.stat-l { font-size: 0.75rem; color: var(--muted); }
.btn-ver-carta { display: inline-block; padding: 13px 28px; background: transparent; border: 2px solid var(--red); color: var(--red); border-radius: 10px; font-weight: 700; transition: all var(--transition); }
.btn-ver-carta:hover { background: var(--red); color: white; }

/* ===== FEATURED ===== */
.featured-section { background: var(--black); padding: 100px 20px; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-bottom: 40px; }
.feat-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(204,0,0,0.25); border-color: var(--red); }
.feat-card-img { aspect-ratio: 4/3; background: #111; position: relative; overflow: hidden; }
.feat-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%); }
.feat-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: white; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; z-index: 1; }
.feat-card-body { padding: 18px; }
.feat-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.feat-name { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 6px; }
.feat-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.feat-price { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.feat-add { margin-top: 4px; display: flex; align-items: center; justify-content: space-between; }
.featured-more { text-align: center; }
.btn-outline-red { display: inline-block; padding: 13px 32px; border: 2px solid var(--red); color: var(--red); border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: all var(--transition); }
.btn-outline-red:hover { background: var(--red); color: white; }

/* ===== HOW IT WORKS ===== */
.how-section { position: relative; background: var(--dark); padding: 100px 20px; overflow: hidden; }
.how-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(204,0,0,0.1) 0%, transparent 70%); pointer-events: none; }
.steps-row { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.step-item { flex: 1; min-width: 160px; max-width: 200px; text-align: center; padding: 24px 16px; }
.step-icon { font-size: 2.5rem; margin-bottom: 8px; }
.step-num { font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 10px; }
.step-item h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 8px; }
.step-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.step-arrow { font-size: 1.5rem; color: rgba(204,0,0,0.4); padding: 40px 4px 0; flex-shrink: 0; align-self: flex-start; }
.how-cta { text-align: center; }

/* ===== MENÚ / CARTA ===== */
.menu-section { background: var(--black); padding: 100px 0 80px; }
.cat-nav { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 90; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cat-nav::-webkit-scrollbar { height: 2px; }
.cat-nav::-webkit-scrollbar-thumb { background: var(--red); }
.cat-nav-inner { display: flex; gap: 6px; padding: 12px 20px; min-width: max-content; max-width: 1200px; margin: 0 auto; }
.cat-btn { padding: 9px 18px; border-radius: 22px; background: transparent; color: var(--muted); border: 1.5px solid var(--border2); font-weight: 700; font-size: 0.83rem; transition: all var(--transition); white-space: nowrap; }
.cat-btn:hover { color: white; border-color: rgba(204,0,0,0.5); }
.cat-btn.active { background: var(--red); color: white; border-color: var(--red); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; padding: 32px 20px; max-width: 1200px; margin: 0 auto; }
.cat-heading { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; padding: 12px 0 6px; border-bottom: 2px solid var(--red); margin-top: 8px; }
.cat-heading span { font-size: 2rem; }
.cat-heading h2 { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; }
/* Product card */
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition); }
.product-card:hover { box-shadow: 0 6px 28px rgba(204,0,0,0.2); border-color: rgba(204,0,0,0.3); transform: translateY(-3px); }
.product-img { height: 140px; background: #111; overflow: hidden; flex-shrink: 0; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-name { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: white; line-height: 1.2; }
.product-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; flex: 1; }
.product-note-prev { font-size: 0.75rem; color: var(--gold); font-style: italic; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 6px 0; border-top: 1px solid var(--border); }
.price-row:first-of-type { margin-top: 4px; }
.price-label { font-size: 0.78rem; color: var(--muted); font-weight: 600; min-width: 64px; }
.price-val { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--gold); font-weight: 700; }
.price-single { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.price-range { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.add-btn { padding: 7px 14px; background: var(--red); color: white; border: none; border-radius: 8px; font-weight: 700; font-size: 0.82rem; transition: background var(--transition); white-space: nowrap; flex-shrink: 0; }
.add-btn:hover { background: var(--red-dark); }
.add-btn.menu { background: #1a5c1a; }
.add-btn.menu:hover { background: #144414; }

/* ===== GALERÍA ===== */
.gallery-section { background: var(--dark2); padding: 100px 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-bottom: 24px; }
.gal-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); }
.gal-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.gal-item.gal-big { grid-column: span 2; grid-row: span 2; }
.gal-item.gal-tall { grid-row: span 2; }
.gal-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #1e0d0d 0%, #2a1010 50%, #1e0808 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1.5px dashed rgba(204,0,0,0.25); }
.gal-ph span { font-size: 2.8rem; }
.gal-ph small { font-size: 0.62rem; color: rgba(255,255,255,0.2); font-family: monospace; text-align: center; padding: 0 8px; }
.gal-ph-lg span { font-size: 4rem; }
.gal-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 20px 14px 10px; font-weight: 700; font-size: 0.85rem; color: white; }
.gallery-note { text-align: center; color: var(--muted); font-size: 0.85rem; }
.gallery-note a { color: var(--red); }

/* ===== GRUPOS ===== */
.groups-section { position: relative; background: #0a0a0a; padding: 100px 20px; overflow: hidden; }
.groups-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 10% 50%, rgba(204,0,0,0.12) 0%, transparent 60%); pointer-events: none; }
.groups-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.groups-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.g-feat { display: flex; gap: 16px; align-items: flex-start; }
.g-feat-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.g-feat strong { display: block; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 4px; }
.g-feat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }
.groups-visual { display: flex; flex-direction: column; gap: 20px; }
.groups-img-frame { border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; }
.groups-tel { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; }
.groups-tel p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.groups-tel a { display: block; font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); padding: 6px 0; transition: color var(--transition); }
.groups-tel a:hover { color: var(--red); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--red); padding: 64px 20px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cta-band h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: white; font-weight: 700; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn-outline-white { display: inline-block; padding: 14px 28px; background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: all var(--transition); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.cta-band .cta-primary { background: white; color: var(--red); }
.cta-band .cta-primary:hover { background: rgba(255,255,255,0.9); }

/* ===== FOOTER ===== */
.site-footer { background: #080808; border-top: 3px solid var(--red); padding: 60px 20px 24px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-top: 14px; max-width: 200px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--transition); }
.footer-social a:hover { background: var(--red); color: white; border-color: var(--red); }
.footer-col h3 { font-size: 0.78rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.footer-col ul a { color: #999; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--red); }
.footer-col ul strong { color: var(--text2); }
.footer-legal { font-size: 0.82rem; color: var(--muted); text-align: center; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; max-width: 1200px; margin: 0 auto; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom-row p, .footer-bottom-row a { font-size: 0.78rem; color: #444; }
.footer-bottom-row a:hover { color: var(--red); }

/* ===== CARRITO ===== */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 200; backdrop-filter: blur(4px); }
.cart-overlay.open { display: block; }
.cart-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: #151515; border-left: 2px solid var(--red); z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -12px 0 50px rgba(0,0,0,0.8); }
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-header h2 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; }
.cart-close { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.cart-close:hover { background: var(--red); border-color: var(--red); color: white; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty { color: var(--muted); text-align: center; padding: 60px 0; line-height: 1.8; }
.cart-item { background: var(--card2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.cart-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.cart-item-name { font-weight: 700; font-size: 0.93rem; color: white; }
.cart-item-var { font-size: 0.75rem; color: var(--gold); font-weight: 600; }
.cart-item-del { background: transparent; border: none; color: var(--muted); font-size: 1rem; padding: 2px 6px; border-radius: 4px; line-height: 1; flex-shrink: 0; transition: color var(--transition); }
.cart-item-del:hover { color: var(--red); }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.qty-ctrl { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--card); border: 1px solid var(--border2); color: white; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--red); border-color: var(--red); }
.qty-n { font-weight: 800; font-size: 1rem; min-width: 22px; text-align: center; color: white; }
.cart-item-price { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gold); }
.note-btn { margin-top: 8px; background: transparent; border: 1px solid var(--border2); color: var(--muted); font-size: 0.72rem; padding: 4px 10px; border-radius: 6px; transition: all var(--transition); }
.note-btn:hover { border-color: var(--gold); color: var(--gold); }
.note-prev { font-size: 0.75rem; color: var(--gold); font-style: italic; margin-top: 5px; }
.cart-footer { padding: 18px 22px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-totals { margin-bottom: 14px; }
.cart-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text2); padding: 5px 0; }
.cart-total-row { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.cart-iva { font-size: 0.72rem; color: var(--muted); text-align: right; margin-top: 4px; }
.cart-warning { background: rgba(204,0,0,0.12); border: 1px solid rgba(204,0,0,0.35); border-radius: 10px; padding: 12px 14px; font-size: 0.83rem; color: #ff8888; margin-bottom: 14px; }
.btn-checkout { width: 100%; padding: 16px; background: var(--red); color: white; border: none; border-radius: 12px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; transition: background var(--transition), transform var(--transition); }
.btn-checkout:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-1px); }
.btn-checkout:disabled { background: #444; cursor: not-allowed; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(6px); }
.modal { background: #161616; border: 1px solid var(--border); border-radius: 20px; width: 100%; max-width: 560px; max-height: 92vh; display: flex; flex-direction: column; box-shadow: 0 24px 80px rgba(0,0,0,0.9); }
.modal-sm { max-width: 400px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.modal-header h2 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; }
.modal-close { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.modal-close:hover { background: var(--red); border-color: var(--red); color: white; }
.modal-body { padding: 22px 24px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.modal-total { font-size: 1rem; color: var(--text2); }
.modal-total strong { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--gold); }
/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--text2); margin-bottom: 7px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; background: #1e1e1e; border: 1.5px solid var(--border2); border-radius: 10px; color: white; font-size: 0.95rem; font-family: inherit; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group input.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.15); }
.form-group textarea { resize: vertical; }
.order-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.order-type-card { cursor: pointer; }
.order-type-card input { display: none; }
.order-type-inner { padding: 14px 12px; background: #1e1e1e; border: 1.5px solid var(--border2); border-radius: 12px; text-align: center; transition: all var(--transition); }
.order-type-card:has(input:checked) .order-type-inner { border-color: var(--red); background: rgba(204,0,0,0.1); }
.ot-icon { display: block; font-size: 1.8rem; margin-bottom: 6px; }
.order-type-inner strong { display: block; font-size: 0.88rem; color: white; margin-bottom: 3px; }
.order-type-inner small { font-size: 0.72rem; color: var(--muted); }
.pay-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-opt { cursor: pointer; }
.pay-opt input { display: none; }
.pay-opt span { display: inline-block; padding: 8px 14px; background: #1e1e1e; border: 1.5px solid var(--border2); border-radius: 8px; font-size: 0.85rem; color: var(--text2); transition: all var(--transition); }
.pay-opt:has(input:checked) span { border-color: var(--red); background: rgba(204,0,0,0.12); color: white; }
.form-note { font-size: 0.78rem; color: var(--muted); }
.btn-whatsapp { flex: 1; padding: 15px 22px; background: var(--green); color: white; border: none; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--transition), transform var(--transition); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-save-note { padding: 12px 24px; background: var(--red); color: white; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; transition: background var(--transition); }
.btn-save-note:hover { background: var(--red-dark); }
/* ===== FAB ===== */
.cart-fab { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 150; width: calc(100% - 32px); max-width: 440px; }
.cart-fab button { width: 100%; padding: 16px 24px; background: var(--red); color: white; border: none; border-radius: 50px; font-weight: 800; font-size: 1rem; box-shadow: 0 8px 32px var(--red-glow); transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.cart-fab button:hover { background: var(--red-dark); transform: translateY(-2px); }
.fab-count { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .about-img-frame { aspect-ratio: 16/9; }
  .about-badge { bottom: -15px; right: 10px; }
  .groups-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .btn-menu { display: flex; }
  .btn-call { display: none; }
  .hero { padding: 80px 20px 50px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .steps-row { gap: 4px; }
  .step-arrow { display: none; }
  .step-item { min-width: 140px; padding: 16px 10px; }
  .products-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item.gal-tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cart-panel { width: 100vw; }
  .cart-fab { display: block; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.gal-big { grid-column: span 1; grid-row: span 1; }
  .hero-ctas { gap: 10px; }
  .cta-primary, .cta-secondary, .cta-social { padding: 12px 20px; font-size: 0.9rem; }
  .order-type-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .cart-fab { display: none !important; }
  .d-md { display: inline; }
}

/* ===== MOBILE NAV OPEN ===== */
.header-nav.nav-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #111;
  border-bottom: 2px solid var(--red);
  padding: 16px 20px;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
}
.header-nav.nav-open .nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text2);
}
.header-nav.nav-open .nav-link:hover { background: var(--border); color: white; }

/* ===== IMAGE REAL (cuando se sustituye el placeholder) ===== */
.about-img-frame img,
.gal-item img,
.groups-img-frame img,
.feat-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.feat-card-img img { position: absolute; inset: 0; z-index: 0; }

/* ===== CHECKOUT NUEVOS ELEMENTOS ===== */
.checkout-hint { font-size: 0.75rem; color: rgba(255,255,255,0.45); display: block; margin-top: 5px; line-height: 1.4; font-style: italic; }
.checkout-eta-msg { background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2); border-radius: 8px; padding: 12px 14px; font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

