/* ═══════════════════════════ RESET & BASE ═══════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Inter',sans-serif;
  background:#0a0a0a;
  color:#fff;
  overflow-x:hidden;
  line-height:1.6;
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}

/* ═══════════════════════════ SCROLLBAR ═══ */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#0a0a0a}
::-webkit-scrollbar-thumb{background:#C62828;border-radius:3px}

/* ═══════════════════════════ TOKENS ═══ */
:root{
  color-scheme: dark;
  --bg:#0a0a0a;
  --surface:#1A1A1A;
  --surface2:#222;
  --red:#C62828;
  --green:#2E7D32;
  --gold:#F9A825;
  --white:#fff;
  --muted:#999;
  --border:rgba(255,255,255,0.1);
  --shadow:0 4px 20px rgba(0,0,0,0.3);
  --radius:8px;
  --transition:0.2s ease-in-out;
}

/* ═══════════════════════════ NAVBAR ═══ */
#navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#0a0a0a;
  border-bottom:1px solid var(--border);
  transition:background var(--transition);
}
.nav-inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;
  padding:0 2rem;height:70px;gap:2.5rem;
}

/* Brand */
.brand{display:flex;align-items:center;gap:0.75rem;text-decoration:none;flex-shrink:0}
.brand-logo-img{
  height:40px;
  width:auto;
  object-fit:contain;
}
.brand-text{
  display:flex;flex-direction:column;line-height:1.1;
}
.brand-name{
  font-family:'Oswald',sans-serif;
  font-size:1.15rem;
  font-weight:700;
  color:#fff;
  letter-spacing:0.5px;
}
.brand-sub{
  font-size:0.7rem;
  color:var(--muted);
  letter-spacing:0.3px;
}

/* Nav links */
.nav-links{
  display:flex;gap:0;margin:0 auto;
  background:transparent;
  padding:0;
  border-radius:0;
  border:none;
}
.nav-links a{
  padding:0.5rem 1.1rem;
  font-size:0.82rem;font-weight:600;letter-spacing:1px;
  color:rgba(255,255,255,0.7);
  position:relative;
  transition:color var(--transition);
  font-family:'Inter',sans-serif;
  border-radius:0;
  background:transparent;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-2px;left:1.1rem;right:1.1rem;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transition:transform var(--transition);
  border-radius:2px;
}
.nav-links a:hover{color:#fff;background:transparent}
.nav-links a:hover::after{transform:scaleX(0.5)}
.nav-links a.active{color:#fff;background:transparent;}
.nav-links a.active::after{transform:scaleX(1);}

/* Nav actions */
.nav-actions{display:flex;align-items:center;gap:0.75rem;flex-shrink:0}

/* Cart button pill */
.btn-cart-pill{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:var(--surface);
  border:1px solid var(--border);
  color:#fff;
  padding:0.55rem 1.1rem 0.55rem 0.9rem;
  border-radius:8px;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:0.82rem;
  letter-spacing:0.5px;
  cursor:pointer;
  transition:all var(--transition);
  position:relative;
}
.btn-cart-pill:hover{
  background:var(--surface2);
  border-color:rgba(255,255,255,0.25);
}
.cart-badge{
  min-width:20px;height:20px;
  background:var(--red);
  color:#fff;
  font-size:0.72rem;
  font-weight:700;
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 4px;
  line-height:1;
}

/* old btn-cart override */
#btn-cart{
  border-radius:8px;
  padding:0.55rem 1.1rem;
  font-size:0.82rem;
}

.hamburger{
  display:none;flex-direction:column;gap:5px;background:none;border:none;
  cursor:pointer;padding:0.4rem;
}
.hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;}
.mobile-menu{
  display:none;flex-direction:column;padding:1rem 2rem 1.5rem;gap:0.25rem;
  border-top:1px solid var(--border);
  background:#0a0a0a;
}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:0.7rem 0;font-size:1rem;color:rgba(255,255,255,0.8);border-bottom:1px solid var(--border)}
.mobile-menu a:last-child{border:none}

/* ═══════════════════════════ HERO ═══ */
.hero{
  min-height:90vh;position:relative;
  display:flex;align-items:center;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;z-index:0;
  background: linear-gradient(135deg,#141414 0%,#0a0a0a 100%);
}
.hero-content{
  position:relative;z-index:1;max-width:1280px;margin:0 auto;
  padding:7rem 2rem 4rem;
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;width:100%;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--surface);border:1px solid var(--border);
  color:var(--gold);padding:0.4rem 0.8rem;border-radius:4px;
  font-size:0.8rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;
  margin-bottom:1rem;
}
.hero-left h1{
  font-family:'Oswald',sans-serif;
  font-size:clamp(2.5rem,4vw,4rem);
  font-weight:700;line-height:1.1;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.accent-red{color:var(--red)}
.accent-gold{color:var(--gold)}
.accent-green{color:var(--green)}
.hero-sub{color:rgba(255,255,255,0.7);font-size:1.1rem;margin-bottom:2rem;}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}

/* ═══ BUTTONS ═══ */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  background:var(--red);color:#fff;
  padding:0.75rem 1.5rem;border-radius:6px;
  font-weight:600;font-size:0.95rem;
  transition:all var(--transition);border:none;cursor:pointer;
}
.btn-primary:hover{background:#a51c1c;}

/* ═══ EXPAND BUTTON (VER MAS / VER MENOS) ═══ */
.btn-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--red);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-expand:hover {
  background: #e53935;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.6);
}

.btn-expand:active {
  transform: translateY(-1px);
}

.btn-expand svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-expand.expanded svg {
  transform: rotate(180deg);
}
.btn-whatsapp{
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  background:#25D366;color:#fff;
  padding:0.75rem 1.5rem;border-radius:6px;
  font-weight:600;font-size:0.95rem;
  transition:all var(--transition);
}
.btn-whatsapp svg{width:20px;height:20px;flex-shrink:0}
.btn-whatsapp:hover{background:#1ebe5a;}
.btn-whatsapp.sm{padding:0.5rem 1rem;font-size:0.85rem}
.btn-whatsapp.full{width:100%;border-radius:6px;padding:0.85rem}

.btn-promo-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(249, 168, 37, 0.2);
  text-decoration: none;
}

.btn-promo-glow:hover {
  background: #ffb300;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 168, 37, 0.5);
}


.hero-stats{display:flex;align-items:center;gap:1.5rem}
.stat{display:flex;flex-direction:column}
.stat strong{font-size:1.3rem;font-weight:700;font-family:'Oswald',sans-serif;color:var(--gold)}
.stat span{font-size:0.75rem;color:var(--muted);text-transform:uppercase;}
.stat-div{width:1px;height:30px;background:var(--border)}

/* ═══ PIZZA FRAME ═══ */
.hero-right{display:flex;justify-content:center;align-items:center}
.pizza-frame{
  position:relative;width:400px;height:400px;
  display:flex;align-items:center;justify-content:center;
}
.pizza-img{
  width:400px;height:400px;object-fit:cover;
  border-radius:50%;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}
.float-ingredient{
  position:absolute;font-size:1.5rem;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.fi1{top:10%;left:5%;}
.fi2{top:5%;right:10%;}
.fi3{bottom:12%;right:5%;}
.fi4{bottom:8%;left:8%;}

/* ═══════════════════════════ FEATURES BAR ═══ */
.features-bar{
  background:var(--surface);
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:1rem 2rem;
  display:flex;justify-content:center;align-items:center;gap:2rem;
  flex-wrap:wrap;
}
.feature{display:flex;align-items:center;gap:0.75rem}
.feature svg{width:24px;height:24px;color:var(--green);flex-shrink:0}
.feature strong{display:block;font-size:0.9rem;font-weight:600}
.feature small{color:var(--muted);font-size:0.75rem}
.feat-div{width:1px;height:30px;background:var(--border)}

/* ═══════════════════════════ SECTION COMMON ═══ */
.section-header{text-align:center;margin-bottom:2rem}
.section-header h2{
  font-family:'Oswald',sans-serif;font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:700;text-transform:uppercase;margin:0.5rem 0;
}
.section-header p{color:var(--muted);font-size:1rem}

/* ═══════════════════════════ MENU ═══ */
.menu-section{padding:4rem 2rem;max-width:1280px;margin:0 auto}
.tabs-row{
  display:flex;gap:0.75rem;flex-wrap:wrap;justify-content:center;margin-bottom:2.5rem;
}
.tab{
  background:var(--surface);border:1px solid var(--border);color:rgba(255,255,255,0.7);
  padding:0.75rem 1.5rem;border-radius:8px;cursor:pointer;font-size:1rem;font-weight:600;
  transition:all var(--transition);
}
.tab:hover{background:var(--surface2);color:#fff}
.tab.active{background:var(--green);border-color:var(--green);color:#fff;}

/* ═══ PRODUCT GRID ═══ */
.product-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
}
.product-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:all var(--transition);
}
.product-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);}
.card-img { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; position: relative; background: var(--surface2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform var(--transition); }
.product-card:hover .card-img img { transform: scale(1.05); }

/* Ajuste específico para foto de Canchera */
.item-canchera .card-img img { object-position: left 55%; }

/* Ajuste específico para foto de Palmitos c/Jamón */
.item-palmitos-c\/jamón .card-img img { object-position: center 100%; }

/* ═══ CANASTITAS IMAGE FRAMING ═══ */
[data-category="canastitas"] .card-img {
  background: var(--surface2);
}
[data-category="canastitas"] .card-img img {
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
}

.card-body{padding:1rem}
.card-name{font-family:'Oswald',sans-serif;font-size:1.1rem;font-weight:600;margin-bottom:0.3rem;text-transform:uppercase;}
.card-desc{color:var(--muted);font-size:0.8rem;margin-bottom:1rem;line-height:1.4}
.card-footer{display:flex;align-items:center;justify-content:space-between}
.card-price{color:var(--gold);font-size:1.1rem;font-weight:700;font-family:'Oswald',sans-serif}


/* ═══ CARD SIZES ═══ */
.card-sizes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface2);
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.size-option:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}
.size-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}
.size-price {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ═══ MENU NEW STRUCTURES ═══ */
.product-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.menu-table-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.menu-table th {
  background: var(--surface2);
  padding: 1rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.menu-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.menu-table tbody tr:last-child td {
  border-bottom: none;
}
.menu-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.menu-table td:first-child {
  font-weight: 600;
  color: #fff;
}
.menu-table td:not(:first-child) {
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
}

.menu-item-with-img {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-item-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface2);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.menu-list-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.menu-list-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 2rem;
}
.menu-list-item {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.menu-list-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
}
.menu-list-item .bullet {
  display: none;
}

.menu-message {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.2rem;
  color: var(--muted);
}


/* ═══════════════════════════ PROMO SLIDER ═══ */
.promo-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 0 3rem;
  overflow: hidden;
}
.promo-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.promo-track-container {
  flex: 1;
  overflow: hidden;
}
.promo-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.promo-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 1rem;
}
.promo-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.promo-left h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.promo-left p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.promo-price { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.old-price { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.new-price { font-size: 2.2rem; font-weight: 700; color: var(--gold); font-family: 'Oswald', sans-serif; }
.promo-right img {
  border-radius: var(--radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Arrows */
.promo-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.promo-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

/* Dots */
.promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding-top: 1.5rem;
}
.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.promo-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

@media(max-width: 900px) {
  .promo-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0.5rem;
  }
  .promo-right img { height: 220px; }
  .promo-arrow { width: 40px; height: 40px; }
}
@media(max-width: 480px) {
  .promo-slider-wrap { gap: 0.4rem; padding: 0 0.25rem; }
  .promo-arrow { width: 34px; height: 34px; }
  .promo-arrow svg { width: 18px; height: 18px; }
}


/* ═══════════════════════════ NOSOTROS ═══ */
.nosotros-section{padding:4rem 2rem;max-width:1100px;margin:0 auto}
.nosotros-inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}

/* ═══════════════════════════ OPINIONES ═══ */
.opiniones-section {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.opiniones-section .section-header {
  margin-bottom: 3rem;
}
.opiniones-badge {
  display: inline-block;
  background: rgba(198,40,40,0.12);
  color: var(--red);
  border: 1px solid rgba(198,40,40,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.opiniones-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.op-track-container {
  flex: 1;
  overflow: hidden;
}
.op-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ─── Opinion Card ─── */
.op-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}
@media (min-width: 900px) {
  .op-card { min-width: 33.333%; }
}
@media (min-width: 700px) and (max-width: 899px) {
  .op-card { min-width: 50%; }
}
.op-card-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.op-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}

/* Header row */
.op-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.op-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.op-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.op-user-info {
  flex: 1;
}
.op-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.op-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Stars */
.op-stars {
  display: flex;
  gap: 2px;
}
.op-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

/* Review text */
.op-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  flex: 1;
}
.op-text::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0;
}
.op-text::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-left: 0;
}

/* Google badge */
.op-google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.op-google-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.op-google-badge span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

/* Arrows */
.op-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.op-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

/* Dots */
.op-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 2rem;
}
.op-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.op-dot.active {
  background: var(--red);
  transform: scale(1.4);
  width: 20px;
  border-radius: 4px;
}
.nosotros-img-wrap img{width:100%;height:350px;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow)}
.nosotros-text h2{font-family:'Oswald',sans-serif;font-size:clamp(1.8rem,3vw,2.5rem);font-weight:700;text-transform:uppercase;margin-bottom:1rem}
.nosotros-text p{color:rgba(255,255,255,0.8);margin-bottom:1rem;font-size:0.95rem}

/* ═══════════════════════════ CONTACTO ═══ */
.contact-section{padding:4rem 2rem;background:var(--surface);border-top:1px solid var(--border)}
.contact-grid{max-width:900px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.contact-card{
  background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.5rem;text-align:center;
}
.contact-card svg{width:32px;height:32px;color:var(--red);margin:0 auto 1rem}
.contact-card h3{font-family:'Oswald',sans-serif;font-size:1.1rem;margin-bottom:0.5rem;text-transform:uppercase}
.contact-card p{color:var(--muted);font-size:0.85rem;line-height:1.5}

.map-container {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-container iframe {
  display: block;
}
/* ═══════════════════════════ FOOTER ═══ */
footer{background:#0a0a0a;border-top:1px solid var(--border);padding:3rem 2rem 0}
.footer-inner{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1.5fr;gap:2rem;padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}
.footer-brand .brand-name{font-family:'Oswald',sans-serif;font-size:1.5rem;font-weight:700}
.footer-brand .brand-name em{color:var(--red);font-style:normal}
.footer-logo { height: 72px; }
.footer-brand .brand-text .brand-name { font-size: 1.6rem; }
.footer-brand .brand-text .brand-sub { font-size: 0.85rem; }
.footer-links h4,.footer-contact h4{font-family:'Oswald',sans-serif;font-size:0.9rem;text-transform:uppercase;color:var(--muted);margin-bottom:1rem}
.footer-links{display:flex;flex-direction:column}
.footer-links a{color:rgba(255,255,255,0.7);font-size:0.85rem;padding:0.25rem 0;transition:color var(--transition)}
.footer-links a:hover{color:#fff}
.footer-contact p{font-size:0.85rem;color:rgba(255,255,255,0.7);margin-bottom:0.4rem}
.footer-contact .btn-whatsapp{margin-top:1rem;display:inline-flex}
.footer-bottom{
  max-width:1100px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 0;color:var(--muted);font-size:0.8rem;
}


/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */

/* ─── Large desktop ─── */
@media(max-width:1280px){
  .product-grid{grid-template-columns:repeat(4,1fr)}
}

/* ─── Desktop/Tablet landscape ─── */
@media(max-width:1100px){
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr 1fr}
}

/* ─── Tablet portrait (768–900px) ─── */
@media(max-width:900px){
  .hero-content{grid-template-columns:1fr;text-align:center;gap:2rem;padding-top:6rem;}
  .pizza-frame{width:320px;height:320px}
  .pizza-img{width:300px;height:300px}
  .hero-ctas{justify-content:center}
  .hero-stats{justify-content:center}
  .promo-inner{grid-template-columns:1fr}
  .nosotros-inner{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .nav-links a{padding:0.5rem 0.7rem;font-size:0.78rem;}
}

/* ─── Tablet small / Large phone landscape (600–768px) ─── */
@media(max-width:768px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .nav-inner{padding:0 1.25rem;}
  .nav-links a{padding:0.5rem 0.6rem;font-size:0.75rem;}
  .hero-content{padding:5.5rem 1.5rem 3rem;}
  .pizza-frame{width:260px;height:260px}
  .pizza-img{width:240px;height:240px}
  .footer-inner{grid-template-columns:1fr 1fr}
}

/* ─── Mobile (≤700px) ─── */
@media(max-width:700px){
  .nav-inner { justify-content: space-between; padding: 0 1rem; }
  .brand-text { display: none; }
  .brand-sub { display: none; }
  .cart-text { display: none; }
  .btn-cart-pill { padding: 0.5rem 0.8rem; gap: 0.4rem; }
  .nav-links{display:none}
  .hamburger{display:flex}
  .features-bar{gap:0.75rem; padding:1rem;}
  .feat-div{display:none}
  .product-grid{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:0.5rem;text-align:center}
  .hero-content{padding:5rem 1rem 3rem;}
  .hero-stats{gap:1rem}
  .section-header h2{font-size:1.6rem}
}

/* ─── Small mobile (≤480px) ─── */
@media(max-width:480px){
  .brand-name { font-size: 1rem; }
  .product-grid{grid-template-columns:1fr}
  .hero-left h1{font-size:2rem}
  .pizza-frame{width:240px;height:240px}
  .pizza-img{width:220px;height:220px}
  .menu-section{padding:3rem 1rem}
  .features-bar{padding:0.75rem 1rem}
  .feature strong{font-size:0.8rem}
  .feature small{font-size:0.7rem}
}

/* ─── Phone landscape orientation ─── */
@media(max-height:500px) and (orientation:landscape){
  .hero{min-height:100vh}
  .hero-content{
    grid-template-columns:1fr 1fr;
    padding:5rem 1.5rem 2rem;
    gap:1.5rem;
    text-align:left;
    align-items:center;
  }
  .hero-ctas{justify-content:flex-start}
  .hero-stats{justify-content:flex-start}
  .pizza-frame{width:200px;height:200px}
  .pizza-img{width:190px;height:190px}
  .hero-left h1{font-size:1.8rem;margin-bottom:0.5rem}
  .hero-sub{font-size:0.9rem;margin-bottom:1rem}
  .hero-ctas{margin-bottom:1rem}
  .hero-stats{gap:0.75rem}
  .stat strong{font-size:1rem}
  /* Show hamburger in landscape too */
  .nav-links{display:none}
  .hamburger{display:flex}
  .nav-inner{justify-content:space-between;padding:0 1rem}
  .brand-text{display:none}
  .cart-text{display:none}
  .btn-cart-pill{padding:0.5rem 0.8rem}
  /* Cart full screen in landscape */
  .cart-panel{max-width:100%;right:-100%}
  .cart-panel.open{right:0}
  /* Products 3 cols in landscape */
  .product-grid{grid-template-columns:repeat(3,1fr)}
  /* Opinions in landscape */
  .opiniones-section{padding:2rem 1rem}
}

/* ─── Tablet landscape orientation ─── */
@media(min-width:768px) and (max-width:1024px) and (orientation:landscape){
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .hero-content{grid-template-columns:1fr 1fr;text-align:left;padding:6rem 2rem 3rem}
  .hero-ctas{justify-content:flex-start}
  .hero-stats{justify-content:flex-start}
  .pizza-frame{width:300px;height:300px}
  .pizza-img{width:280px;height:280px}
  .nav-links{display:flex}
  .hamburger{display:none}
  .brand-text{display:flex}
}

/* ─── Tablet portrait orientation ─── */
@media(min-width:600px) and (max-width:1024px) and (orientation:portrait){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .hero-content{grid-template-columns:1fr;text-align:center}
  .hero-ctas{justify-content:center}
  .hero-stats{justify-content:center}
  .nav-links{display:none}
  .hamburger{display:flex}
  .nav-inner{justify-content:space-between}
  .brand-text{display:none}
  .cart-text{display:none}
}

@media(max-width:700px){
  .menu-table, .menu-table tbody, .menu-table tr, .menu-table td, .menu-table th {
    display: block;
    width: 100%;
  }
  .menu-table thead {
    display: none;
  }
  .menu-table tr {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .menu-table tbody tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .menu-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: none;
  }
  .menu-table td:first-child {
    justify-content: flex-start;
    padding: 1rem 1rem 0.5rem;
  }
  .menu-table td:nth-child(2)::before {
    content: "Grande";
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
  }
  .menu-table td:nth-child(3)::before {
    content: "Chica / Chico";
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
  }
  .menu-table td:last-child {
    padding-bottom: 1rem;
  }
}

/* ═══════════════════════════ CART PANEL ═══════════════════════════ */
.cart-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 1000; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed; top: 0; right: -450px; bottom: 0;
  width: 100%; max-width: 450px;
  background: var(--surface); border-left: 1px solid var(--border);
  z-index: 1001; display: flex; flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.cart-panel.open { right: 0; }

.cart-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h2 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-transform: uppercase; margin:0;}
.cart-close {
  background: none; border: none; color: #fff; font-size: 2rem;
  line-height: 1; cursor: pointer; transition: color var(--transition);
}
.cart-close:hover { color: var(--red); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-empty { text-align: center; color: var(--muted); margin-top: 2rem; font-size: 1.1rem; }

.cart-item {
  display: flex; gap: 1rem; background: var(--surface2);
  padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border);
}
.cart-item-img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 4px;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-name { font-weight: 600; font-size: 1rem; line-height: 1.2; margin-bottom: 0.2rem;}
.cart-item-size { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; }
.cart-item-price { font-family: 'Oswald', sans-serif; color: var(--gold); font-weight: 700; margin-top: 0.2rem; }

.cart-item-controls {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem;
}
.cart-btn {
  width: 28px; height: 28px; border-radius: 4px; border: 1px solid var(--border);
  background: var(--surface); color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; line-height: 1; transition: all var(--transition);
}
.cart-btn:hover { background: var(--surface2); border-color: #fff; }
.cart-qty { font-size: 0.95rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-remove {
  background: none; border: none; color: var(--muted); cursor: pointer;
  padding: 0.2rem; transition: color var(--transition); display: flex; align-self: flex-start;
}
.cart-remove:hover { color: var(--red); }

.cart-footer {
  padding: 1.5rem; border-top: 1px solid var(--border); background: var(--surface2);
}
.cart-summary { display: flex; justify-content: space-between; margin-bottom: 0.5rem; color: var(--muted); }
.cart-summary.total {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: #fff; font-weight: 700;
  margin-top: 1rem; margin-bottom: 1.5rem; border-top: 1px dashed var(--border); padding-top: 1rem;
}
.cart-summary.total span:last-child { color: var(--gold); }

/* Buttons */
.size-info { display: flex; flex-direction: column; align-items: flex-start; }
.btn-add {
  padding: 0.5rem 0.8rem; border-radius: 4px; border: none;
  background: var(--red); color: #fff; font-size: 0.9rem; font-weight: 500; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
  font-family: 'Oswald', sans-serif;
}
.btn-add:hover { background: #a51c1c; transform: scale(1.02); }

/* ═══════════════════════════ CHECKOUT FORM ═══════════════════════════ */
.checkout-form {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.cf-field { display: flex; flex-direction: column; gap: 0.35rem; }
.cf-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}
.cf-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-input::placeholder { color: rgba(255,255,255,0.3); }
.cf-input:focus { border-color: var(--red); }
.cf-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cf-radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.cf-radio input[type="radio"] {
  accent-color: var(--red);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.cf-chip-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cf-chip {
  flex: 1;
  padding: 0.7rem 0.75rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.cf-chip:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cf-chip.active {
  background: rgba(198,40,40,0.15);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
}

/* ═══════════════════════════ CUSTOM MODAL (GUSTOS) ═══════════════════════════ */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: 0.3s; z-index: 2000;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.custom-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -40%);
  width: 90%; max-width: 500px; max-height: 85vh;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2001; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.custom-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }

.modal-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; text-transform: uppercase; margin: 0; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 1.8rem; cursor: pointer; line-height: 1; }

.modal-body { padding: 1.5rem; overflow-y: auto; }
.modal-hint { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.25rem; }

.gustos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.gusto-item {
  padding: 0.75rem; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.85rem; cursor: pointer; transition: 0.2s;
  display: flex; align-items: center; justify-content: space-between;
}
.gusto-item:hover { border-color: var(--muted); }
.gusto-item.selected { background: rgba(198,40,40,0.15); border-color: var(--red); color: #fff; }
.gusto-badge {
  background: var(--red); color: #fff; width: 20px; height: 20px;
  border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5); transition: 0.2s;
}
.gusto-item.selected .gusto-badge { opacity: 1; transform: scale(1); }

.modal-footer { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.selected-count { text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.selected-count span { color: var(--red); font-size: 1.1rem; }
.modal-footer .btn-primary:disabled { opacity: 0.3; cursor: not-allowed; filter: grayscale(1); }

/* ═══ EMPANADA SELECTOR (MODAL) ═══ */
.gusto-qty-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition);
}

.gusto-qty-item:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.gusto-qty-item.active {
  border-color: var(--red);
  background: rgba(198,40,40,0.05);
}

.gusto-qty-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.gusto-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-qty {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.btn-qty:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
}

.btn-qty:disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

.qty-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--gold);
}

@media (max-width: 480px) {
  .gustos-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════ FLOATING WHATSAPP ═══════════════════════════ */
.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.float-whatsapp:hover {
  background-color: #1ebe5a;
  transform: scale(1.1);
}
.float-whatsapp svg {
  width: 35px;
  height: 35px;
}
@media(max-width:700px){
  .float-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .float-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  
  /* Opiniones Mobile */
  .op-arrow { 
    width: 32px; 
    height: 32px; 
    background: rgba(26,26,26,0.8);
    border-color: var(--border);
  }
  .op-arrow svg { width: 16px; height: 16px; }
  .opiniones-slider-wrap { gap: 0.25rem; padding: 0; }
  .opiniones-section { padding: 3rem 0.25rem; }
  
  .op-card-inner { padding: 1rem; gap: 0.75rem; }
  .op-card-header { flex-wrap: wrap; gap: 0.6rem; }
  .op-stars { width: 100%; margin-top: -0.25rem; }
  .op-avatar { width: 40px; height: 40px; font-size: 0.9rem; }
  .op-name { font-size: 0.9rem; }
  .op-text { font-size: 0.85rem; line-height: 1.5; }
  .op-text::before { font-size: 1.8rem; vertical-align: -0.2rem; margin-right: 0; }
  .op-text::after { font-size: 1.8rem; vertical-align: -0.2rem; margin-left: 0; }
}

/* ═══════════════════════════ EXTRA MOBILE RESPONSIVENESS ═══════════════════════════ */
@media(max-width: 480px){
  /* Modals */
  .custom-modal {
    width: 95%;
    max-height: 90vh;
    border-radius: 12px;
  }
  .modal-header, .modal-body, .modal-footer {
    padding: 1rem;
  }
  .modal-header h3 {
    font-size: 1.15rem;
  }
  .modal-close {
    font-size: 1.5rem;
  }
  
  /* Checkout Form */
  .cf-field div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
  }
  .cf-chip {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }
  .cf-input {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
  }

  /* Cart Panel */
  .cart-panel {
    width: 100%;
    max-width: 100%;
  }
  .cart-header {
    padding: 1rem;
  }
  .cart-header h2 {
    font-size: 1.3rem;
  }
  .cart-body {
    padding: 1rem;
  }
  .cart-footer {
    padding: 1rem;
  }
  .cart-item {
    gap: 0.5rem;
    padding: 0.75rem;
  }
  .cart-item-img {
    width: 50px;
    height: 50px;
  }
  .cart-item-name {
    font-size: 0.9rem;
  }
  .cart-item-size {
    font-size: 0.75rem;
  }
  .cart-item-price {
    font-size: 0.95rem;
  }
  .cart-btn {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
  .cart-qty {
    min-width: 16px;
    font-size: 0.9rem;
  }

  /* Upsell Buttons */
  #upsellModal .modal-footer {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  #upsellModal .modal-footer button {
    width: 100%;
    padding: 0.7rem !important;
  }
}
