  :root {
    --red:    #E8503A;
    --yellow: #F0B254;
    --black:  #101014;
    --dark:   #16161A;
    --card:   #1C1C22;
    --light:  #ECECF0;
    --muted:  #8E8E9A;
    --radius: 12px;
    --font:   'Inter', -apple-system, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
  }

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

  /* Skip navigation link */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--red);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top .2s;
  }
  .skip-link:focus {
    top: 0;
  }

  html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scroll-padding-top: 56px; }
  /* Fix iOS Safari viewport height */
  body { min-height: 100vh; min-height: -webkit-fill-available; }

  body {
    background: var(--black);
    color: var(--light);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* ── HERO ───────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0 36px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 30%, rgba(232,80,58,.2) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 10% 80%, rgba(240,178,84,.08) 0%, transparent 60%),
      linear-gradient(180deg, #101014 0%, #18121a 60%, #101014 100%);
    z-index: 0;
  }
  .hero-noise {
    position: absolute; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .6;
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: fadeUp .9s ease both;
  }
  .hero-logo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .hero-logo-row img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }
  .hero-logo-row h1 {
    margin: 0;
    padding: 0 16px;
  }
  @media (min-width: 520px) {
    .hero-logo-row {
      flex-direction: row;
      gap: 16px;
    }
    .hero-logo-row img {
      width: 140px;
      height: 140px;
    }
  }
  .hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 14vw, 140px);
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: .9;
    color: var(--light);
    letter-spacing: .01em;
  }
  .hero h1 span { color: var(--red); }
  .hero-sub {
    font-family: var(--font);
    font-weight: 600;
    font-size: clamp(11px, 3.5vw, 22px);
    padding: 0 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-top: 8px;
    margin-bottom: 30px;
  }
  /* Hero logo */
  .hero-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 0 30px rgba(232,80,58,.5), 0 0 60px rgba(232,80,58,.15);
    border: 2px solid rgba(232,80,58,.35);
    animation: fadeUp .8s ease both;
  }
  @media (min-width: 520px) {
    .hero-logo-img { width: 120px; height: 120px; }
  }

  /* Hero rating — social proof */
  .hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeUp 1s ease both;
    animation-delay: .15s;
    opacity: 0;
  }
  .hero-stars {
    color: var(--yellow);
    font-size: 14px;
    letter-spacing: 2px;
  }
  .hero-rating-text {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .04em;
  }

  /* Hero CTAs */
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    animation: fadeUp 1.1s ease both;
    animation-delay: .25s;
    opacity: 0;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 99px;
    transition: transform .2s, background .2s, box-shadow .2s;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    border: none;
  }
  .hero-cta-primary {
    background: var(--red);
  }
  .hero-cta-primary:hover { background: #d4402a; transform: scale(1.04); box-shadow: 0 4px 20px rgba(232,80,58,.3); }
  .hero-cta-wa {
    background: #25D366;
  }
  .hero-cta-wa:hover { background: #1da852; transform: scale(1.04); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
  .hero-cta-launch {
    background: linear-gradient(135deg, var(--yellow), #e58e22);
    color: var(--black);
  }
  .hero-cta-launch:hover { transform: scale(1.04); box-shadow: 0 4px 20px rgba(240,178,84,.28); }
  .hero-cta-launch svg { fill: currentColor; }
  .share-preview {
    max-width: 1120px;
    margin: -8px auto 12px;
    padding: 0 14px 26px;
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }
  .share-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .share-preview-kicker {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yellow);
  }
  .share-preview-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    line-height: .96;
    color: var(--light);
  }
  .share-preview-copy p {
    max-width: 34rem;
    font-size: 14px;
    color: rgba(236,236,240,.74);
    line-height: 1.7;
  }
  .wa-preview-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 18px;
    min-height: 360px;
    background:
      radial-gradient(circle at 18% 18%, rgba(255,255,255,.2), transparent 22%),
      linear-gradient(145deg, #dff6cf 0%, #c8efbb 50%, #b4dfab 100%);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 32px 80px rgba(0,0,0,.28);
  }
  .wa-preview-frame {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 12px 14px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.26);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .wa-preview-rich {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }
  .wa-preview-logo-wrap {
    width: 98px;
    height: 98px;
    border-radius: 2px;
    overflow: hidden;
    background: #0f1012;
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
  }
  .wa-preview-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .wa-preview-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .wa-preview-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.24;
    color: #162116;
  }
  .wa-preview-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #213321;
  }
  .wa-preview-site {
    font-size: 14px;
    font-weight: 600;
    color: rgba(34,51,34,.68);
  }
  .wa-preview-link {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 500;
    color: #197b58;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
  }
  .wa-preview-meta {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(16,16,20,.55);
  }
  .wa-preview-checks {
    color: #4d8e6f;
    font-weight: 900;
    letter-spacing: -.1em;
  }
  .smash-hero-art {
    position: relative;
    z-index: 1;
    min-height: 220px;
    margin-top: 14px;
  }
  .smash-plate {
    position: absolute;
    left: 42px;
    right: 28px;
    bottom: 14px;
    height: 98px;
    border-radius: 999px;
    background: linear-gradient(180deg, #9b5a25 0%, #6f3710 100%);
    box-shadow:
      inset 0 10px 16px rgba(255,255,255,.1),
      0 26px 40px rgba(67,39,12,.24);
  }
  .smash-burger {
    position: absolute;
    right: 44px;
    bottom: 50px;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.22));
  }
  .smash-bun-top,
  .smash-bun-bottom {
    background: linear-gradient(180deg, #ebb05d 0%, #cb8324 100%);
  }
  .smash-bun-top {
    height: 62px;
    border-radius: 120px 120px 52px 52px;
  }
  .smash-bun-bottom {
    height: 28px;
    border-radius: 0 0 34px 34px;
  }
  .smash-layer {
    margin: 0 8px;
  }
  .smash-wrapper {
    align-self: flex-end;
    margin: -28px 0 0;
    width: 102px;
    height: 52px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.92) 25%, transparent 25%) 0 0 / 18px 18px,
      linear-gradient(225deg, rgba(255,255,255,.92) 25%, transparent 25%) 0 0 / 18px 18px,
      linear-gradient(315deg, rgba(255,255,255,.92) 25%, transparent 25%) 0 0 / 18px 18px,
      linear-gradient(45deg, rgba(255,255,255,.92) 25%, transparent 25%) 0 0 / 18px 18px,
      linear-gradient(135deg, #3a3a3a 25%, transparent 25%) 9px 9px / 18px 18px,
      linear-gradient(225deg, #3a3a3a 25%, transparent 25%) 9px 9px / 18px 18px,
      linear-gradient(315deg, #3a3a3a 25%, transparent 25%) 9px 9px / 18px 18px,
      linear-gradient(45deg, #3a3a3a 25%, transparent 25%) 9px 9px / 18px 18px;
    border-radius: 20px 24px 0 18px;
    transform: rotate(3deg);
  }
  .smash-tomato {
    height: 14px;
    margin-top: -4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6648 0%, #db2a27 100%);
  }
  .smash-lettuce {
    height: 16px;
    margin-top: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #85bc3a 0%, #57a22d 100%);
    clip-path: polygon(0 70%, 7% 18%, 16% 65%, 24% 22%, 35% 66%, 47% 12%, 55% 62%, 68% 18%, 78% 70%, 87% 18%, 100% 60%, 100% 100%, 0 100%);
  }
  .smash-cheese {
    height: 18px;
    margin-top: 2px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffc933 0%, #f0aa11 100%);
  }
  .smash-patty {
    height: 26px;
    margin-top: 2px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, #6e371f 0%, #452013 100%);
  }
  .smash-fries {
    position: absolute;
    left: 96px;
    bottom: 110px;
    width: 96px;
    height: 118px;
    border: 3px solid #5d5d5d;
    border-top-width: 6px;
    border-radius: 12px 12px 24px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(80,80,80,.06) 100%);
    transform: perspective(260px) rotateX(12deg);
  }
  .smash-fries span {
    position: absolute;
    bottom: 76px;
    width: 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffd85a 0%, #f2a300 100%);
    box-shadow: 0 6px 10px rgba(0,0,0,.1);
  }
  .smash-fries span:nth-child(1) { left: 14px; height: 68px; transform: rotate(-10deg); }
  .smash-fries span:nth-child(2) { left: 32px; height: 78px; transform: rotate(-2deg); }
  .smash-fries span:nth-child(3) { left: 51px; height: 72px; transform: rotate(8deg); }
  .smash-fries span:nth-child(4) { left: 66px; height: 60px; transform: rotate(18deg); }
  .smash-sauce {
    position: absolute;
    left: 26px;
    bottom: 52px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 42% 40%, #fff2f2 0%, #ffe6e6 56%, #e7bcbc 100%);
    box-shadow: 0 16px 24px rgba(0,0,0,.18);
  }
  .smash-sauce::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background:
      conic-gradient(from 65deg, #ff8d72, #ff6d58, #ffe9e9, #ff8268, #ffe9e9);
    opacity: .88;
    filter: blur(1px);
  }
  .smash-sauce::after {
    content: "9";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 64px;
    height: 28px;
    border-radius: 999px;
    background: #fff6e8;
    color: #8b1114;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
  }
  .angus-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 99px;
    padding: 7px 16px;
    font-size: 12px;
    color: var(--yellow);
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .angus-pill::before { content: "🐂"; font-size: 16px; }
  .hero-scroll {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 22px;
    animation: bounce 1.6s infinite;
    opacity: .5;
  }

  /* ── NAV TABS ───────────────────────────────────────── */
  .nav-sticky {
    position: sticky; top: 0; z-index: 50;
    background: rgba(16,16,20,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    overflow-x: auto;
    display: flex;
    justify-content: center;
    gap: 0;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 8px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 8px), transparent);
  }
  .nav-sticky::-webkit-scrollbar { display: none; }
  .nav-tab {
    flex: none;
    padding: 13px 14px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color .25s;
    background: none;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(232,80,58,.15);
    position: relative;
  }
  .nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--red);
    border-radius: 2px 2px 0 0;
    transition: left .25s cubic-bezier(.4,0,.2,1), right .25s cubic-bezier(.4,0,.2,1);
  }
  .nav-tab:hover { color: var(--light); }
  .nav-tab.active {
    color: var(--yellow);
  }
  .nav-tab.active::after,
  .nav-tab:hover::after {
    left: 8px;
    right: 8px;
  }

  /* ── SECTIONS ───────────────────────────────────────── */
  section { padding: 44px 14px; max-width: 780px; margin: 0 auto; scroll-margin-top: 55px; }
  .section-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 32px;
  }
  .section-icon { font-size: 30px; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 10vw, 58px);
    line-height: 1;
    letter-spacing: .01em;
  }
  .section-title span { color: var(--red); }
  .section-sub {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-top: 2px;
  }
  .divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(240,178,84,.3) 50%, transparent 100%);
    margin-bottom: 32px;
  }

  /* ── PRODUCT CARD ───────────────────────────────────── */
  .product-list { display: flex; flex-direction: column; gap: 12px; }
  .product-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.06);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 16px 14px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 12px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--red), transparent 60%);
    opacity: 0;
    transition: opacity .25s;
  }
  .product-card:hover {
    border-color: rgba(232,80,58,.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 0 1px rgba(232,80,58,.1);
  }
  .product-card:hover::before { opacity: 1; }

  /* Grid placement */
  .product-card-top {
    display: contents;
  }
  .product-info { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .product-price { grid-column: 2; grid-row: 1 / 3; }
  .product-card > .add-btn { grid-column: 3; grid-row: 1 / 3; }

  /* Featured cards */
  .product-card.featured {
    border-left-color: var(--yellow);
    border-color: rgba(240,178,84,.15);
    background: linear-gradient(135deg, #1C1C22 0%, #201e0e 100%);
    box-shadow: inset 0 0 40px rgba(240,178,84,.03);
  }
  .product-card.featured::before {
    background: linear-gradient(90deg, var(--yellow), transparent 60%);
  }
  .product-card.featured:hover {
    border-color: rgba(240,178,84,.35);
    box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 20px rgba(240,178,84,.08);
  }
  .star-badge {
    position: absolute; top: 0; right: 12px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 800;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px 5px;
    border-radius: 0 0 6px 6px;
  }

  /* Product info */
  .product-info { min-width: 0; }
  .product-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: .04em;
    color: var(--light);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .product-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  /* Ingredient highlights as inline chips */
  .product-desc em {
    color: var(--yellow);
    font-style: normal;
    font-weight: 600;
    background: rgba(240,178,84,.08);
    padding: 1px 7px;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: .02em;
    border: 1px solid rgba(240,178,84,.12);
  }
  /* Editorial tagline after the dash */
  .product-tagline {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-style: italic;
    color: rgba(236,236,240,.58);
    line-height: 1.4;
  }

  /* Prices */
  .product-price {
    text-align: right;
    flex-shrink: 0;
    align-self: center;
  }
  .price-label {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .price-value {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--light);
    line-height: 1;
    white-space: nowrap;
  }
  .price-value.highlight { color: var(--yellow); }
  .price-double {
    display: flex; flex-direction: column; gap: 4px;
    align-items: flex-end;
  }
  .price-row {
    display: flex; align-items: center; gap: 6px;
  }
  .price-tag {
    font-size: 9px; font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.06);
    padding: 2px 7px;
    border-radius: 4px;
    color: #999;
  }
  .price-tag.doble { background: rgba(232,80,58,.15); color: var(--red); }

  /* ── EXTRAS / AGREGADOS ─────────────────────────────── */
  .extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  @media (max-width: 480px) { .extras-grid { grid-template-columns: 1fr; } }
  .extra-item {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s;
  }
  .extra-item:hover { border-color: rgba(240,178,84,.3); }
  .extra-name { font-size: 12px; color: #ccc; }
  .extra-price {
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    color: var(--yellow);
    white-space: nowrap;
  }

  /* ── DRINKS ─────────────────────────────────────────── */
  .drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .drink-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: transform .2s, border-color .2s;
  }
  .drink-card:hover { transform: translateY(-3px); border-color: rgba(232,80,58,.3); }
  .drink-card .add-btn { margin: 6px auto 0; width: 26px; height: 26px; font-size: 14px; }
  .extra-item .extra-name { flex: 1; }
  .extra-item .add-btn { width: 26px; height: 26px; font-size: 15px; }
  .drink-icon { font-size: 24px; margin-bottom: 6px; }
  .drink-name { font-size: 13px; font-weight: 600; color: var(--light); margin-bottom: 4px; }
  .drink-price { font-family: var(--font-display); font-size: 20px; color: var(--yellow); }

  /* ── REEL INSTAGRAM DESTACADO ───────────────────────── */
  .reel-destaque {
    padding: 0 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reel-titulo {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--yellow);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: .04em;
  }
  .reel-destaque .instagram-media {
    margin: 0 auto !important;
    min-width: unset !important;
    max-width: 320px !important;
    width: 100% !important;
    border-radius: 12px !important;
  }

  /* ── PROMO BANNER ───────────────────────────────────── */
  .promo-banner {
    background: linear-gradient(135deg, var(--red), #c43828);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 640px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 32px rgba(232,80,58,.16);
  }
  .promo-icon { font-size: 26px; flex-shrink: 0; line-height: 1; }
  .promo-text { display: flex; flex-direction: column; gap: 4px; }
  .promo-text h2 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
    color: var(--yellow);
  }
  .promo-text p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,.92);
  }
  .promo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(16,16,20,.18);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .promo-copy { font-weight: 700; }
  .promo-note {
    font-size: 10px;
    line-height: 1.25;
    color: rgba(255,255,255,.78);
  }
  .promo-cta-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 1px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    box-shadow: 0 8px 18px rgba(16,16,20,.16);
  }
  .promo-cta-btn:hover {
    transform: translateY(-1px);
    background: #ffbf61;
    box-shadow: 0 14px 26px rgba(16,16,20,.26);
  }
  .promo-cta-btn.added {
    background: #25D366;
    color: #fff;
  }
  .launch-card {
    background: linear-gradient(135deg, rgba(240,178,84,.14), rgba(232,80,58,.12));
    border: 1px solid rgba(240,178,84,.18);
    border-radius: var(--radius);
    padding: 20px 18px;
    margin-top: 18px;
    box-shadow: inset 0 0 32px rgba(240,178,84,.03);
  }
  .launch-eyebrow {
    color: var(--yellow);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .launch-card h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(30px, 7vw, 52px);
    line-height: .95;
    color: var(--light);
  }
  .launch-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }
  .launch-highlight {
    color: var(--yellow);
    font-weight: 800;
  }

  /* ── FOOTER ─────────────────────────────────────────── */
  footer {
    text-align: center;
    padding: 44px 16px;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .footer-logo-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 0 24px rgba(232,80,58,.4);
    border: 2px solid rgba(232,80,58,.3);
  }
  .footer-handle {
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .footer-info { margin-bottom: 20px; }
  .footer-address {
    font-size: 13px; color: var(--muted);
    margin-bottom: 6px;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--muted);
    transition: all .25s;
  }
  .footer-link:hover {
    background: rgba(255,255,255,.12);
    color: var(--light);
    transform: translateY(-2px);
  }
  .footer-link-wa:hover {
    background: rgba(37,211,102,.15);
    border-color: rgba(37,211,102,.3);
    color: #25D366;
  }
  .wha-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 99px;
    transition: background .2s, transform .2s;
  }
  .wha-btn:hover { background: #1da852; transform: scale(1.04); }
  .copyright {
    margin-top: 30px;
    font-size: 11px;
    color: rgba(255,255,255,.2);
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  /* ── ADD TO ORDER BUTTON ─────────────────────────────── */
  .add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(232,80,58,.1);
    color: var(--red);
    font-size: 20px;
    font-weight: 500;
    border: 1px solid rgba(232,80,58,.2);
    cursor: pointer;
    transition: all .2s cubic-bezier(.4,0,.2,1);
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
    flex-shrink: 0;
    align-self: center;
  }
  .add-btn:hover, .add-btn:active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(232,80,58,.3);
  }
  .add-btn.added {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    animation: addPop .35s cubic-bezier(.4,0,.2,1);
  }
  @keyframes addPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); }
    100% { transform: scale(1); }
  }

  /* ── SIZE PICKER MODAL ──────────────────────────────── */
  .size-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .size-overlay.active { opacity: 1; pointer-events: auto; }
  .size-modal {
    background: var(--card); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 24px 20px 16px;
    width: 280px; text-align: center;
    transform: translateY(20px); transition: transform .25s;
  }
  .size-overlay.active .size-modal { transform: translateY(0); }
  .size-modal-title {
    font-family: var(--font-display); font-size: 22px;
    color: var(--light); margin-bottom: 16px;
  }
  .size-option {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 16px; margin-bottom: 8px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius); cursor: pointer;
    transition: all .2s; color: var(--light);
    -webkit-tap-highlight-color: transparent;
  }
  .size-option:hover, .size-option:active {
    background: rgba(232,80,58,.15); border-color: var(--red);
  }
  .size-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
  }
  .size-label { font-weight: 600; font-size: 15px; }
  .size-note { font-size: 11px; color: var(--muted); line-height: 1.35; }
  .size-price { font-size: 15px; color: var(--yellow); font-weight: 700; }
  .size-cancel {
    margin-top: 8px; padding: 10px; width: 100%;
    background: none; border: none; color: var(--muted);
    font-size: 14px; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .size-cancel:hover { color: var(--light); }

  /* ── ORDER BAR (mini cart) ──────────────────────────── */
  .order-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(16,16,20,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .order-bar.visible { transform: translateY(0); }
  .order-summary {
    flex: 1;
    font-family: var(--font);
    font-size: 14px;
    color: var(--light);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .order-summary strong { color: var(--yellow); }
  .order-count {
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    margin-right: 8px;
  }
  .order-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
  }
  .order-wa-btn:hover { background: #1da852; }
  .order-summary { cursor: pointer; }
  .order-info { display: flex; flex-direction: column; line-height: 1.25; }
  .order-subtotal { font-size: 12px; color: var(--yellow); font-weight: 700; }

  /* ── CART DRAWER ─────────────────────────────────── */
  .cart-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.6);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }

  .cart-drawer {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 201;
    background: var(--dark);
    border-radius: 20px 20px 0 0;
    max-height: 88vh;
    display: flex; flex-direction: column;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.32,.72,0,1);
    box-shadow: 0 -4px 32px rgba(0,0,0,.5);
  }
  .cart-drawer.open { transform: translateY(0); }

  .cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .cart-title { font-size: 18px; font-weight: 700; color: var(--light); }
  .cart-close-btn {
    background: rgba(255,255,255,.08); border: none;
    color: var(--light); font-size: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .15s;
  }
  .cart-close-btn:hover { background: rgba(255,255,255,.18); }

  .cart-items { flex: 1; overflow-y: auto; padding: 8px 0; }
  .cart-empty {
    text-align: center; color: var(--muted);
    padding: 40px 20px; font-size: 14px;
  }
  .cart-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .cart-item:last-child { border-bottom: none; }
  .cart-item-info { flex: 1; min-width: 0; }
  .cart-item-name {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--light);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .cart-item-price { font-size: 12px; color: var(--muted); }
  .cart-item-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .cart-qty-btn {
    background: rgba(255,255,255,.1); border: none;
    color: var(--light); font-size: 18px; font-weight: 300;
    width: 30px; height: 30px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .15s; line-height: 1;
  }
  .cart-qty-btn:hover { background: rgba(255,255,255,.2); }
  .cart-qty { font-size: 15px; font-weight: 700; color: var(--light); min-width: 20px; text-align: center; }

  .cart-footer {
    padding: 16px 20px calc(env(safe-area-inset-bottom, 0px) + 20px);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .cart-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .cart-total-label { font-size: 13px; color: var(--muted); }
  .cart-total-value { font-size: 22px; font-weight: 800; color: var(--yellow); }
  .cart-send-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff;
    font-family: var(--font); font-weight: 700; font-size: 15px;
    text-decoration: none;
    padding: 14px 20px; border-radius: 12px;
    width: 100%; margin-bottom: 10px;
    transition: background .2s;
  }
  .cart-send-btn:hover { background: #1da852; }
  .cart-clear-btn {
    background: none; border: none;
    color: var(--muted); font-family: var(--font);
    font-size: 12px; cursor: pointer;
    width: 100%; text-align: center;
    padding: 6px; margin-bottom: 6px;
    text-decoration: underline; text-underline-offset: 3px;
  }
  .cart-clear-btn:hover { color: var(--light); }
  .cart-note { font-size: 11px; color: rgba(255,255,255,.25); text-align: center; }

  /* ── ANIMATIONS ─────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
  }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  /* iOS: mostrar siempre si no hay JS */
  @media (hover: none) and (pointer: coarse) {
    .reveal { opacity: 1 !important; transform: none !important; }
  }

  /* ── RESPONSIVE — small screens ─────────────────────── */
  @media (max-width: 480px) {
    .share-preview {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 6px;
      padding-bottom: 18px;
    }
    .share-preview-copy {
      gap: 10px;
    }
    .wa-preview-card {
      padding: 12px;
      border-radius: 22px;
      min-height: 0;
    }
    .wa-preview-rich {
      grid-template-columns: 82px minmax(0, 1fr);
      gap: 10px;
    }
    .wa-preview-logo-wrap {
      width: 82px;
      height: 82px;
    }
    .wa-preview-title {
      font-size: 15px;
    }
    .wa-preview-desc {
      font-size: 13px;
    }
    .wa-preview-link {
      font-size: 15px;
    }
    .smash-hero-art {
      min-height: 170px;
    }
    .smash-sauce {
      left: 6px;
      bottom: 34px;
      width: 66px;
      height: 66px;
    }
    .smash-sauce::after {
      width: 44px;
      height: 20px;
      bottom: -10px;
      font-size: 15px;
    }
    .smash-fries {
      left: 58px;
      bottom: 88px;
      width: 70px;
      height: 90px;
    }
    .smash-fries span {
      width: 12px;
      bottom: 56px;
    }
    .smash-burger {
      right: 10px;
      bottom: 34px;
      width: 188px;
    }
    .smash-bun-top {
      height: 46px;
    }
    .smash-wrapper {
      width: 74px;
      height: 38px;
      margin-top: -20px;
    }
    .smash-patty {
      height: 20px;
    }
    .smash-plate {
      left: 26px;
      right: 12px;
      height: 74px;
    }
    .product-card {
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
    }
    .product-info { grid-column: 1 / -1; grid-row: 1; }
    .product-price { grid-column: 1; grid-row: 2; text-align: left; align-self: center; }
    .price-double { align-items: flex-start; flex-direction: row; gap: 10px; }
    .product-card > .add-btn { grid-column: 2; grid-row: 2; }
    .promo-banner { flex-direction: column; text-align: center; }
  }

  /* ── RESPONSIVE — desktop enhancements ─────────────── */
  @media (min-width: 600px) {
    section { padding: 60px 20px; }
    .share-preview {
      padding: 0 20px 34px;
    }
    .nav-tab { padding: 14px 20px; font-size: 13px; }
    .product-name { font-size: 26px; }
    .product-desc { font-size: 13px; }
    .product-desc em { font-size: 12px; }
    .price-value { font-size: 28px; }
    .star-badge { font-size: 9px; }
    .add-btn { width: 40px; height: 40px; font-size: 22px; }
    .extras-grid { gap: 10px; }
    .extra-item { padding: 12px 14px; }
    .extra-name { font-size: 13px; }
    .extra-price { font-size: 15px; }
    .drinks-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
    .drink-card { padding: 14px 14px 10px; }
    .drink-icon { font-size: 28px; }
    .drink-name { font-size: 14px; }
    .drink-price { font-size: 22px; }
    .promo-banner { padding: 16px 20px; gap: 12px; }
    .promo-icon { font-size: 32px; }
    .promo-text h2 { font-size: 22px; }
    .promo-text p { font-size: 12px; }
    .promo-note { font-size: 12px; }
    .promo-cta-btn { min-height: 36px; padding: 0 16px; font-size: 11px; }
    footer { padding: 48px 20px 40px; }
    .footer-logo-img { width: 100px; height: 100px; }
    .footer-handle { font-size: 15px; }
    .wha-btn { font-size: 16px; padding: 14px 28px; }
  }

  /* ── CATEGORY PILL ──────────────────────────────────── */
  .cat-pill {
    display: inline-block;
    background: rgba(232,80,58,.15);
    border: 1px solid rgba(232,80,58,.3);
    color: var(--red);
    font-family: var(--font);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
  }

/* ═══════════════════════════════════════════
   MOBILE-FIRST OVERRIDES — TASTYS 207
   Base = mobile. Desktop enhancements via min-width queries.
   ═══════════════════════════════════════════ */

/* ── Base touch improvements ── */
* { -webkit-tap-highlight-color: transparent; }
a, button { touch-action: manipulation; }

/* ── Botón flotante WA — mobile ── */
#wa-float { width: 54px !important; height: 54px !important; bottom: 18px !important; right: 14px !important; }
#wa-label { display: none; }

/* ── Desktop enhancements ── */
@media (min-width: 600px) {
  #wa-float { width: 62px !important; height: 62px !important; bottom: 24px !important; right: 20px !important; }
  #wa-label { display: block; }
}

/* ════ BREAKPOINT 480px ════ */
@media (max-width: 480px) {
  /* Hero */
  .hero-logo-row img { width: 70px; height: 70px; }
  .hero-badge { font-size: 10px; padding: 4px 11px; }

  /* Cards wrap */
  .product-card { flex-wrap: wrap; }
  .product-info { flex: 1 1 100%; }
  .product-price, .price-double { text-align: left; align-items: flex-start; }
  .product-card .add-btn { margin-left: auto; }

  /* Extras: 1 columna en pantallas muy pequeñas */
  .extras-grid { grid-template-columns: 1fr; }

  /* Drinks: 2 columnas compactas */
  .drinks-grid { grid-template-columns: 1fr 1fr; }

  /* Promo banner vertical */
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-cta-btn { align-self: center; }

  /* Section header apilado */
  .section-header { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Nav tab más compacto */
  .nav-tab { padding: 12px 11px; font-size: 11px; }

  /* Botones hero en columna */
  .hero-content > div[style*="flex"] { flex-direction: column !important; align-items: center !important; }
  .hero-cta { width: 80vw; justify-content: center; text-align: center; }
}

/* ════ BREAKPOINT 360px ════ */
@media (max-width: 360px) {
  .hero h1 { font-size: 52px; }
  .section-title { font-size: 30px; }
  .product-name { font-size: 15px; }
  .drinks-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
}

/* ════ TABLET 600px–900px ════ */
@media (min-width: 600px) and (max-width: 900px) {
  section { padding: 50px 24px; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { flex-direction: row; }
  .nav-tab { padding: 14px 18px; font-size: 13px; }
}

/* ── WhatsApp floating button ── */
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 70%{transform:scale(1.65);opacity:0} 100%{transform:scale(1.65);opacity:0} }
#wa-float { display:none; }
#wa-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,.75); }
#wa-float .pulse { position:absolute;inset:0;border-radius:50%;background:rgba(37,211,102,.35);animation:waPulse 2s infinite; }
#wa-float svg { position:relative;z-index:2; }
#wa-label { position:fixed;bottom:34px;right:92px;z-index:9998;background:#fff;color:#111;font-family:'Inter',sans-serif;font-weight:800;font-size:13px;letter-spacing:.05em;padding:8px 14px;border-radius:10px;box-shadow:0 4px 16px rgba(0,0,0,.18);white-space:nowrap;pointer-events:none;opacity:0;transform:translateX(8px);transition:opacity .25s,transform .25s; }
#wa-float:hover ~ #wa-label { opacity:1;transform:translateX(0); }
