  :root {
    --canvas:   #E6DEC8;
    --paper:    #F5F0E6;
    --surface:  #FAF6EC;
    --ink:      #0E0E0C;
    --ink-70:   rgba(14,14,12,.7);
    --ink-50:   rgba(14,14,12,.5);
    --ink-30:   rgba(14,14,12,.3);
    --ink-12:   rgba(14,14,12,.12);
    --ink-06:   rgba(14,14,12,.06);
    --terra:    #B85C38;
    --olive:    #5F6B3B;
    --wheat:    #C89F5C;
    --border:   #D9CFB8;

    --display: "Fraunces", "Times New Roman", serif;
    --sans:    "Instrument Sans", system-ui, sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html.drawer-open { overflow: hidden; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01","ss02";
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }
  button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

  /* ═══════════════ STICKY HEADER ═══════════════ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
  }
  .site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px -10px rgba(14,14,12,.08);
    background: rgba(245,240,230,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 56px;
    max-width: 1680px;
    margin: 0 auto;
  }
  .site-nav .logo-s {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--ink-12);
    flex-shrink: 0;
    display: block;
    transition: transform .3s;
  }
  .site-nav .logo-s:hover { transform: rotate(-5deg); }
  .site-nav .logo-s img { width: 100%; height: 100%; object-fit: cover; }
  /* Fallback used when SiteSettings.LogoUrl is unset: a centered initial inside
     the same circular chip. Matches the example design's typographic feel. */
  .site-nav .logo-s .logo-s-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 400;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
  }
  .site-nav ul {
    display: flex; gap: 32px; list-style: none;
    font-size: 13px;
    letter-spacing: .01em;
  }
  .site-nav ul a {
    color: var(--ink); text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    font-weight: 400;
  }
  .site-nav ul a::after {
    content: "";
    position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--terra);
    transition: right .25s ease;
  }
  .site-nav ul a:hover::after { right: 0; }

  .site-nav .cta {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 12px 18px;
    background: var(--ink); color: var(--paper);
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s;
  }
  .site-nav .cta:hover { background: var(--terra); }
  .site-nav .cta .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--terra);
    box-shadow: 0 0 0 3px rgba(184,92,56,.25);
    animation: pulse 2s ease-in-out infinite;
  }

  /* ═══════════════ HERO ═══════════════ */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: calc(100vh - 76px);
  }
  .hero-left {
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background:
      radial-gradient(circle at 20% 90%, rgba(184,92,56,.06), transparent 50%),
      var(--paper);
  }
  .hero-eyebrow {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: .16em;
    color: var(--ink-70);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 32px;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--terra);
    box-shadow: 0 0 0 4px rgba(184,92,56,.15);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(184,92,56,.15); }
    50% { box-shadow: 0 0 0 8px rgba(184,92,56,.05); }
  }
  .hero h1 {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 320;
    font-size: clamp(72px, 9vw, 140px);
    line-height: .86;
    letter-spacing: -.035em;
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 320;
  }
  .hero-lede {
    font-family: var(--display);
    font-variation-settings: "opsz" 40, "wght" 360;
    font-size: 21px;
    line-height: 1.4;
    max-width: 440px;
    margin-bottom: 40px;
  }
  .hero-lede span { color: var(--terra); font-style: italic; }
  .hero-meta {
    display: flex; gap: 48px;
    flex-wrap: wrap;
  }
  .hero-meta dt {
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--ink-50);
    margin-bottom: 6px;
  }
  .hero-meta dd {
    color: var(--ink); font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
  }
  .hero-meta dd span.city { color: var(--ink-50); font-size: 12px; }

  .sched { font-family: var(--mono); font-size: 12px; line-height: 1.8; letter-spacing: .04em; }
  .sched .row { display: flex; justify-content: space-between; gap: 24px; }
  .sched .row .day { color: var(--ink-50); }
  .sched .row.closed { color: var(--ink-30); }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: #0e0e0c;
  }
  .hero-right .ph {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.04) saturate(.95);
    transition: transform 8s ease;
  }
  .hero-right:hover .ph { transform: scale(1.03); }
  /* Fallback when no hero photo is configured: warm canvas background that lets
     the wheat decoration + caption read on light. The text overlay's color is
     kept (var(--paper) on white reads poorly), so we darken the overlay text
     conditionally with the .no-photo modifier. */
  .hero-right.no-photo {
    background:
      radial-gradient(circle at 70% 30%, rgba(184,92,56,.08), transparent 60%),
      var(--canvas);
  }
  .hero-right.no-photo::after { display: none; }
  .hero-right.no-photo .hero-overlay { color: var(--ink); }
  .hero-right.no-photo .hero-overlay.caption-br small { opacity: .6; }

  /* Event detail page: the customer's flyer is portrait and looks butchered
     when used as a full-cover hero photo. This modifier shows the entire flyer
     centered with paper background and a soft shadow — like a poster on a wall. */
  .hero-right.hero-right--flyer {
    background:
      radial-gradient(circle at 50% 0%, rgba(200,159,92,.18), transparent 65%),
      var(--canvas);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 56px;
  }
  .hero-right.hero-right--flyer::after { display: none; }
  .hero-right--flyer .flyer {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    height: auto;
    object-fit: contain;
    box-shadow:
      0 1px 0 rgba(14,14,12,.04),
      0 18px 50px -12px rgba(14,14,12,.32);
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .hero-right--flyer:hover .flyer { transform: translateY(-2px); }
  .hero-right::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 50%, rgba(14,14,12,.35) 100%),
      linear-gradient(90deg, rgba(14,14,12,.08) 0%, transparent 30%);
    pointer-events: none;
  }
  .hero-overlay {
    position: absolute;
    color: var(--paper);
    z-index: 2;
    pointer-events: none;
  }
  .hero-overlay.corner-tl {
    top: 28px; left: 28px;
    display: flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: .16em;
    opacity: .9;
  }
  .hero-overlay.corner-tl::before {
    content: ""; width: 24px; height: 1px; background: currentColor;
  }
  .hero-overlay.wheat-decor {
    bottom: 40px; right: 40px;
    width: 64px;
    opacity: .85;
  }
  .hero-overlay.caption-br {
    bottom: 36px; left: 36px;
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "wght" 400;
    font-style: italic;
    font-size: 17px;
    max-width: 240px;
    line-height: 1.3;
  }
  .hero-overlay.caption-br small {
    display: block;
    font-family: var(--mono); font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-style: normal;
    opacity: .7;
    margin-top: 8px;
  }

  /* ═══════════════ MARQUEE ═══════════════ */
  .strip {
    background: var(--ink); color: var(--paper);
    padding: 16px 0;
    overflow: hidden;
  }
  .strip-track {
    display: flex; gap: 40px;
    font-family: var(--mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: .1em;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
  }
  .strip-track span { display: inline-flex; align-items: center; gap: 40px; }
  .strip-track em { color: var(--terra); font-style: normal; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ═══════════════ EVENTO PROTAGÓNICO ═══════════════ */
  .event-hero {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .event-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(184,92,56,.22), transparent 45%),
      radial-gradient(circle at 85% 80%, rgba(200,159,92,.14), transparent 45%);
    pointer-events: none;
  }
  /* Double-line ornamental frame (fileteado style) */
  .event-hero-frame {
    position: relative;
    margin: 28px 28px 0;
    padding-top: 8px;
    border: 1px solid rgba(200,159,92,.35);
  }
  .event-hero-frame::before {
    content: "";
    position: absolute; inset: 6px;
    border: 1px solid rgba(200,159,92,.18);
    pointer-events: none;
  }
  .event-hero-frame .corner {
    position: absolute;
    width: 80px; height: 80px;
    color: var(--wheat);
    opacity: .55;
    pointer-events: none;
  }
  .event-hero-frame .corner.tl { top: -2px; left: -2px; }
  .event-hero-frame .corner.tr { top: -2px; right: -2px; transform: scaleX(-1); }
  .event-hero-frame .corner.bl { bottom: -2px; left: -2px; transform: scaleY(-1); }
  .event-hero-frame .corner.br { bottom: -2px; right: -2px; transform: scale(-1, -1); }

  .event-hero-strip {
    background: var(--terra);
    color: var(--paper);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  .event-hero-strip .track {
    display: flex; gap: 48px;
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: .2em;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
  }
  .event-hero-strip .track span { display: inline-flex; align-items: center; gap: 48px; }
  .event-hero-strip .track em { font-style: normal; opacity: .5; }

  .event-hero-main {
    padding: 72px 56px 48px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1680px;
    margin: 0 auto;
  }
  .event-hero-left .label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: rgba(245,240,230,.75);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .event-hero-left .label .flourish-mini {
    width: 60px; height: 12px;
    color: var(--wheat);
    opacity: .7;
  }
  .event-hero-left h2 {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 300;
    font-size: clamp(80px, 13vw, 180px);
    line-height: .82;
    letter-spacing: -.045em;
    margin-bottom: 12px;
  }
  .event-hero-left h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 300;
    color: var(--wheat);
  }
  .event-hero-left .fil-under-title {
    width: min(280px, 100%);
    height: 20px;
    color: var(--wheat);
    opacity: .6;
    margin-bottom: 32px;
    display: block;
  }
  .event-hero-date {
    display: flex;
    gap: 28px;
    align-items: baseline;
    padding: 20px 0;
    border-top: 1px solid rgba(245,240,230,.2);
    border-bottom: 1px solid rgba(245,240,230,.2);
    margin-bottom: 32px;
    position: relative;
  }
  .event-hero-date::before,
  .event-hero-date::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(200,159,92,.3);
  }
  .event-hero-date::before { top: 4px; }
  .event-hero-date::after { bottom: 4px; }
  .event-hero-date .big {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 340;
    font-size: 76px;
    line-height: .9;
    letter-spacing: -.03em;
  }
  .event-hero-date .big em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 340;
    color: var(--wheat);
  }
  .event-hero-date .small {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    line-height: 1.7;
    color: rgba(245,240,230,.75);
  }
  .event-hero-date .small strong {
    color: var(--paper);
    display: block;
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 500;
    margin-top: 4px;
  }
  .event-hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink); color: var(--paper);
    font-family: var(--sans); font-size: 14px;
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: all .25s ease;
  }
  .btn-primary:hover { background: var(--terra); }
  .btn-primary .arrow { transition: transform .25s ease; }
  .btn-primary:hover .arrow { transform: translateX(4px); }
  .event-hero-cta .btn-primary {
    background: var(--wheat);
    color: var(--ink);
    padding: 20px 32px;
    font-size: 15px;
    font-weight: 500;
  }
  .event-hero-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
  .event-hero-cta .ghost {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--paper);
    text-decoration: none;
    opacity: .7;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(245,240,230,.3);
    transition: opacity .2s, border-color .2s;
  }
  .event-hero-cta .ghost:hover { opacity: 1; border-bottom-color: var(--paper); }

  .event-hero-right {
    position: relative;
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
  }
  .event-rays {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    color: var(--wheat);
    pointer-events: none;
    animation: slow-rotate 120s linear infinite;
  }
  .event-roses {
    position: absolute;
    width: 50px; height: 50px;
    color: var(--wheat);
    opacity: .7;
    pointer-events: none;
  }
  .event-roses.top-left { top: -10px; left: -10px; transform: rotate(-20deg); }
  .event-roses.bottom-right { bottom: -10px; right: -10px; transform: rotate(20deg); }
  .event-plate {
    width: 84%;
    aspect-ratio: 1;
    background: var(--paper);
    border-radius: 50%;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 1px rgba(245,240,230,.3), 0 0 0 6px rgba(200,159,92,.12);
    z-index: 2;
  }
  .event-plate::before {
    content: "";
    position: absolute; inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(14,14,12,.15);
  }
  .event-plate::after {
    content: "";
    position: absolute; inset: -38px;
    border-radius: 50%;
    border: 1px dashed rgba(245,240,230,.25);
  }
  @keyframes slow-rotate { to { transform: rotate(360deg); } }
  .event-plate svg.main-ill { width: 80%; height: 80%; color: var(--ink); }
  .event-tag {
    position: absolute;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    white-space: nowrap;
    z-index: 3;
  }
  .event-tag.tag-1 { top: 8%; right: -8%; }
  .event-tag.tag-2 { bottom: 14%; left: -12%; }
  .event-tag.tag-3 { bottom: -2%; right: 6%; background: var(--terra); color: var(--paper); }

  .event-hero-menu {
    padding: 32px 56px 80px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(245,240,230,.12);
    max-width: 1680px;
    margin: 0 auto;
  }
  .event-menu-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    margin-top: 24px;
  }
  .event-menu-heading h3 {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(245,240,230,.75);
    white-space: nowrap;
  }
  .event-menu-heading svg {
    flex: 1;
    height: 14px;
    color: var(--wheat);
    opacity: .5;
  }
  .event-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .event-menu-item {
    padding: 22px 20px;
    border: 1px solid rgba(245,240,230,.2);
    border-radius: 8px;
    background: rgba(245,240,230,.04);
    position: relative;
  }
  .event-menu-item h4 {
    font-family: var(--display);
    font-variation-settings: "opsz" 32, "wght" 400;
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 4px;
    margin-top: 8px;
    letter-spacing: -.01em;
  }
  .event-menu-item p {
    font-size: 11.5px;
    color: rgba(245,240,230,.6);
    line-height: 1.4;
    font-style: italic;
    min-height: 32px;
  }
  .event-menu-item .price {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--wheat);
  }

  /* Stock bar (shared) */
  .stock-bar {
    --stock: 0.85;
    width: 64px;
    height: 3px;
    background: var(--ink-12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    display: inline-block;
  }
  .stock-bar::before {
    content: "";
    position: absolute; inset: 0;
    width: 100%;
    background: var(--ink);
    transform: scaleX(var(--stock));
    transform-origin: left;
    border-radius: 2px;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
  }
  .stock-bar[data-level="low"]::before { background: var(--terra); }
  .stock-bar:not(.animated)::before { transform: scaleX(0); }
  .event-menu-item .stock-bar {
    margin-top: 0; margin-bottom: 12px;
    background: rgba(245,240,230,.18);
  }
  .event-menu-item .stock-bar::before { background: var(--wheat); }
  .event-menu-item .stock-bar[data-level="low"]::before { background: var(--terra); }

  /* ═══════════════ MOSTRADOR ═══════════════ */
  .mostrador {
    padding: 96px 56px 80px;
    background: var(--paper);
    max-width: 1680px;
    margin: 0 auto;
  }
  .mostrador-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 20px;
  }
  .mostrador-head .kicker {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-50);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .mostrador-head .kicker::before { content: "◆"; color: var(--terra); }
  .mostrador-head h2 {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 340;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .88;
    letter-spacing: -.035em;
  }
  .mostrador-head h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 340;
    color: var(--terra);
  }
  .mostrador-head .intro {
    font-family: var(--display);
    font-variation-settings: "opsz" 32, "wght" 360;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink-70);
    padding-bottom: 12px;
  }
  .mostrador-head .intro em { color: var(--terra); font-style: italic; }

  .mostrador-today {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 44px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-50);
    flex-wrap: wrap;
    gap: 16px;
  }
  .mostrador-today .live {
    display: flex; align-items: center; gap: 10px;
    color: var(--olive);
  }
  .mostrador-today .live::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--olive);
    box-shadow: 0 0 0 3px rgba(95,107,59,.2);
  }
  .mostrador-today .legend {
    display: flex; gap: 24px; flex-wrap: wrap;
  }
  .mostrador-today .legend span { display: inline-flex; align-items: center; gap: 6px; }
  .mostrador-today .legend i {
    width: 6px; height: 6px; border-radius: 50%;
    display: inline-block; font-style: normal;
  }
  .mostrador-today .legend .hoy { background: var(--olive); }
  .mostrador-today .legend .enc { background: var(--terra); }
  .mostrador-today .legend .off { background: var(--ink-30); }

  .mostrador-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 88px;
  }
  .cat-head {
    display: flex; align-items: baseline; justify-content: space-between;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }
  .cat-head h3 {
    font-family: var(--display);
    font-variation-settings: "opsz" 72, "wght" 380;
    font-size: 30px;
    letter-spacing: -.01em;
  }
  .cat-head h3 em {
    font-style: italic;
    font-variation-settings: "opsz" 72, "wght" 380;
    color: var(--terra);
  }
  .cat-head .count {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-50);
  }
  .prod-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border);
    transition: padding .2s;
  }
  .prod-row:hover { padding-left: 6px; }
  .prod-row.off { opacity: .45; cursor: pointer; }
  .prod-row.off:hover { opacity: .7; }
  .prod-ill {
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .prod-ill svg { width: 100%; height: auto; }
  .prod-ill img {
    width: 100%;
    height: 100%;
    max-height: 84px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  .prod-row.off .prod-ill { opacity: .5; }
  .prod-info h4 {
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "wght" 400;
    font-size: 19px;
    line-height: 1.15;
    margin-bottom: 3px;
  }
  .prod-row.off h4 {
    text-decoration: line-through;
    text-decoration-thickness: .5px;
    text-decoration-color: var(--ink-50);
  }
  .prod-info p {
    font-size: 12px;
    color: var(--ink-50);
    font-style: italic;
    line-height: 1.3;
  }
  .prod-state {
    text-align: right;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 1.4;
  }
  .prod-state .chip {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: .14em;
    white-space: nowrap;
  }
  .chip.hoy { background: var(--olive); color: var(--paper); }
  .chip.enc { background: var(--terra); color: var(--paper); }
  .chip.fds { background: var(--wheat); color: var(--ink); }
  .chip.off {
    background: transparent;
    color: var(--ink-50);
    border: 1px solid var(--ink-30);
  }
  .prod-state .meta {
    display: block;
    color: var(--ink-50);
    font-size: 9px;
    margin-top: 4px;
    letter-spacing: .14em;
  }

  .mostrador-foot {
    margin-top: 56px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }
  .mostrador-foot p {
    font-family: var(--display);
    font-variation-settings: "opsz" 32, "wght" 360;
    font-size: 19px;
    line-height: 1.4;
    font-style: italic;
  }
  .mostrador-foot p em { color: var(--terra); font-style: italic; }
  .mostrador-foot-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  @media (max-width: 720px) {
    .mostrador-foot { grid-template-columns: 1fr; gap: 16px; }
    .mostrador-foot-actions { flex-direction: column; }
  }

  /* ═══════════════ INFO BAND ═══════════════ */
  .info-band {
    display: grid; grid-template-columns: repeat(3, 1fr);
    padding: 48px 56px;
    gap: 32px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    max-width: 1680px;
    margin: 0 auto;
  }
  .info-item h5 {
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--ink-50);
    margin-bottom: 12px;
  }
  .info-item p {
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "wght" 360;
    font-size: 17px;
    line-height: 1.3;
  }
  .info-item a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--ink-30);
    transition: border-color .2s;
  }
  .info-item a:hover { border-bottom-color: var(--terra); color: var(--terra); }

  /* ═══════════════ FOOTER ═══════════════ */
  .site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 64px 56px 40px;
  }
  .site-footer-inner {
    max-width: 1680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .site-footer h2 {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 340;
    font-size: 56px;
    line-height: .9;
    letter-spacing: -.03em;
    margin-bottom: 16px;
  }
  .site-footer h2 em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 340;
    color: var(--wheat);
  }
  .site-footer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(245,240,230,.75);
    max-width: 320px;
  }
  .site-footer h6 {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(245,240,230,.5);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .site-footer ul { list-style: none; }
  .site-footer ul li { margin-bottom: 10px; }
  .site-footer ul a {
    color: var(--paper);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
  }
  .site-footer ul a:hover { color: var(--wheat); }
  .site-footer-bottom {
    max-width: 1680px;
    margin: 64px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(245,240,230,.1);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245,240,230,.4);
  }

  /* ═══════════════ CHECKOUT DRAWER ═══════════════ */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14,14,12,.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(960px, 100%);
    background: var(--paper);
    z-index: 201;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
    box-shadow: -20px 0 60px -20px rgba(14,14,12,.3);
  }
  .drawer.open { transform: translateX(0); }
  .drawer-head {
    position: sticky;
    top: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  .drawer-head h2 {
    font-family: var(--display);
    font-variation-settings: "opsz" 48, "wght" 400;
    font-size: 22px;
    letter-spacing: -.01em;
  }
  .drawer-head h2 em {
    font-style: italic;
    color: var(--terra);
  }
  .drawer-close {
    width: 40px; height: 40px;
    border: 1px solid var(--ink-12);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    transition: background .2s, border-color .2s;
  }
  .drawer-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .drawer-summary {
    padding: 32px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
  }
  .drawer-summary .date-box {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    padding: 18px 22px;
    text-align: center;
    min-width: 120px;
  }
  .drawer-summary .date-box .day {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--terra);
  }
  .drawer-summary .date-box .num {
    font-family: var(--display);
    font-variation-settings: "opsz" 72, "wght" 360;
    font-size: 48px;
    line-height: 1;
    margin: 4px 0;
  }
  .drawer-summary .date-box .month {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--ink-70);
  }
  .drawer-summary .title {
    font-family: var(--display);
    font-variation-settings: "opsz" 72, "wght" 360;
    font-size: 30px;
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 8px;
  }
  .drawer-summary .title em {
    font-style: italic;
    color: var(--terra);
  }
  .drawer-summary .details {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-70);
    line-height: 1.7;
  }

  .drawer-menu { padding: 32px; }
  .drawer-menu h3 {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-70);
    margin-bottom: 24px;
  }

  .item {
    display: grid;
    grid-template-columns: 44px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity .3s;
  }
  .item.empty { opacity: .4; }
  .item-ill {
    width: 44px; height: 44px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    background: var(--surface);
  }
  .item-ill svg { width: 68%; height: 68%; color: var(--ink); }
  .item h4 {
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .item p {
    font-size: 11.5px; color: var(--ink-50); font-style: italic;
    line-height: 1.3;
  }
  .stepper {
    display: flex; align-items: center;
    border: 1px solid var(--ink);
    border-radius: 999px;
    overflow: hidden;
  }
  .stepper button {
    width: 28px; height: 28px;
    font-family: var(--mono); font-size: 14px;
    color: var(--ink);
    transition: background .15s, color .15s;
    user-select: none;
  }
  .stepper button:hover { background: var(--ink); color: var(--paper); }
  .stepper button:active { background: var(--ink) !important; color: var(--paper) !important; }
  .stepper .qty {
    width: 32px; text-align: center;
    font-family: var(--mono); font-size: 12px;
    font-weight: 500;
    display: inline-block;
  }
  .item .price {
    font-family: var(--mono); font-size: 12.5px;
    text-align: right;
    min-width: 70px;
    line-height: 1.2;
  }

  .drawer-totals {
    padding: 32px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    position: sticky;
    bottom: 0;
  }
  .total-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    font-family: var(--mono); font-size: 13px;
    color: var(--ink-70);
  }
  .total-row.grand {
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    color: var(--ink);
    font-size: 15px;
  }
  .total-row.grand strong {
    font-family: var(--display);
    font-variation-settings: "opsz" 48, "wght" 400;
    font-size: 26px;
  }
  .pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
  }
  .pay-method {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    background: var(--paper);
    position: relative;
    transition: border-color .2s;
  }
  .pay-method.selected { border-color: var(--ink); }
  .pay-method .radio {
    width: 16px; height: 16px; border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pay-method.selected .radio::after {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--terra);
  }
  .pay-method h5 {
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "wght" 380;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .pay-method p { font-size: 11px; color: var(--ink-50); }
  .pay-method .tag {
    margin-left: auto;
    font-family: var(--mono); font-size: 10px;
    background: var(--olive); color: var(--paper);
    padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: .08em;
  }
  .fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
  }
  .drawer-form-hint {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--ink-50);
    margin: 4px 0 18px;
    padding-left: 2px;
  }
  .field label {
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--ink-50);
    display: block; margin-bottom: 5px;
  }
  .field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: var(--paper);
    font-family: var(--sans); font-size: 13px;
    border-radius: 6px;
    color: var(--ink);
  }
  .field input:focus { outline: none; border-color: var(--ink); }
  .field input.invalid { border-color: var(--terra); }
  .drawer-totals .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 15px;
  }
  .drawer-totals .btn-primary[disabled] {
    opacity: .5;
    cursor: not-allowed;
  }
  .policy {
    font-size: 11px;
    color: var(--ink-50);
    font-style: italic;
    margin-top: 14px;
    line-height: 1.5;
    text-align: center;
  }

  /* ═══════════════ WHATSAPP ORDER MODAL ═══════════════ */
  .wa-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14,14,12,.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 210;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .wa-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .wa-modal {
    background: var(--paper);
    border: 1px solid var(--border);
    max-width: 440px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(.96);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 30px 80px -20px rgba(14,14,12,.4);
  }
  .wa-modal-backdrop.open .wa-modal { transform: scale(1); }
  .wa-modal-head {
    padding: 24px 28px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px dashed var(--border);
  }
  .wa-modal-head .ill {
    width: 52px; height: 52px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    background: var(--surface);
    flex-shrink: 0;
    overflow: hidden;
  }
  .wa-modal-head .ill svg { width: 68%; height: 68%; color: var(--ink); }
  .wa-modal-head .ill img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .wa-modal-head h3 {
    font-family: var(--display);
    font-variation-settings: "opsz" 48, "wght" 380;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 4px;
  }
  .wa-modal-head p {
    font-size: 13px;
    color: var(--ink-50);
    font-style: italic;
    line-height: 1.4;
  }
  .wa-modal-close {
    width: 32px; height: 32px;
    border: 1px solid var(--ink-12);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
  }
  .wa-modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .wa-modal-body {
    padding: 20px 28px;
  }
  .wa-modal-field {
    margin-bottom: 16px;
  }
  .wa-modal-field label {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-50);
    display: block;
    margin-bottom: 10px;
  }
  .wa-modal-qty {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .wa-modal-qty .stepper {
    flex-shrink: 0;
  }
  .wa-modal-qty .stepper button { width: 36px; height: 36px; font-size: 16px; }
  .wa-modal-qty .stepper .qty { width: 40px; font-size: 14px; }
  .wa-modal-qty .hint {
    font-size: 12px;
    color: var(--ink-50);
    font-style: italic;
  }
  .wa-modal-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink);
    font-family: var(--sans);
    position: relative;
  }
  .wa-modal-preview::before {
    content: "Así le va a llegar el mensaje";
    position: absolute;
    top: -9px;
    left: 14px;
    background: var(--paper);
    padding: 0 8px;
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-50);
  }
  .wa-modal-preview .lines {
    white-space: pre-line;
  }
  .wa-modal-foot {
    padding: 16px 28px 24px;
    display: flex;
    gap: 12px;
  }
  .wa-modal-foot .btn-primary {
    flex: 1;
    justify-content: center;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    font-size: 14px;
  }
  .wa-modal-foot .btn-primary:hover { background: #1ea356; }
  .wa-modal-foot .btn-primary svg { width: 16px; height: 16px; }

  .prod-row[data-orderable] { cursor: pointer; }
  .prod-row[data-orderable]:hover .prod-info h4 { color: var(--terra); }
  #toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(180%);
    background: var(--ink);
    color: var(--paper);
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 300;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
    max-width: calc(100vw - 32px);
    text-align: center;
    /* When the toast has no text, the empty pill is small enough that
       translateY(180%) does not push it fully off-screen and a black sliver
       peeks up from the bottom. opacity + visibility hide the empty state
       reliably without affecting the slide-in animation when shown. */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  #toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  @media (max-width: 1200px) {
    .event-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .info-band { grid-template-columns: repeat(2, 1fr); }
    .site-footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 960px) {
    .site-nav { padding: 14px 24px; }
    .site-nav ul { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 48px 24px; }
    .hero-right { min-height: 420px; }
    .hero-meta { gap: 24px; }
    .event-hero-main { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
    .event-hero-left h2 { font-size: 72px; }
    .event-hero-date { flex-direction: column; gap: 16px; }
    .event-hero-date .big { font-size: 44px; }
    .event-hero-menu { padding: 32px 24px 56px; }
    .event-menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .mostrador { padding: 56px 24px; }
    .mostrador-head { grid-template-columns: 1fr; gap: 24px; }
    .mostrador-today { flex-direction: column; align-items: flex-start; padding: 14px 0 28px; }
    .mostrador-grid { grid-template-columns: 1fr; gap: 44px; }
    .mostrador-foot { grid-template-columns: 1fr; gap: 18px; text-align: center; }
    .info-band { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
    .site-footer { padding: 48px 24px 32px; }
    .site-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .drawer-summary { grid-template-columns: 1fr; text-align: center; }
    .drawer-summary .date-box { justify-self: center; }
    .fields-row { grid-template-columns: 1fr; }
    .pay-methods { grid-template-columns: 1fr; }
    .item { grid-template-columns: 40px 1fr auto; }
    .item .price { grid-column: 2 / -1; text-align: left; padding-top: 4px; }
    .item .stepper { grid-column: 3; grid-row: 1; }
  }

  /* ═══ Event detail page (Fase 6) ═══ */
  .hero-cta { margin-top: 28px; }

  .event-detail-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
  }

  .event-menu-heading {
    text-align: center;
    margin-bottom: 36px;
  }

  .event-menu-heading h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
  }

  .event-menu-sub {
    color: var(--ink-70);
    font-size: 14px;
  }

  .event-menu-empty {
    background: var(--surface);
    border: 1px dashed var(--border);
    color: var(--ink-50);
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
  }

  .event-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .event-detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }

  .event-detail-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
  }

  .event-detail-card p {
    color: var(--ink-70);
    font-size: 13px;
    line-height: 1.5;
  }

  .event-detail-price {
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }

  .event-detail-cupo .tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(200, 159, 92, .18);
    border: 1px solid rgba(200, 159, 92, .45);
    color: #6b4d1e;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
  }

  .event-detail-cupo .tag--agotado {
    background: rgba(184, 92, 56, .15);
    border-color: rgba(184, 92, 56, .4);
    color: var(--terra);
  }

  .event-detail-card--agotado {
    opacity: .6;
  }

  .event-detail-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    background: var(--paper);
    width: fit-content;
    /* Push the stepper to the bottom of the flex column so cards with longer
       titles still line up the controls horizontally across the row. */
    margin-top: auto;
  }

  .event-detail-stepper button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }

  .event-detail-stepper button:disabled {
    opacity: .3;
    cursor: not-allowed;
  }

  .event-detail-stepper button:hover:not(:disabled) {
    background: var(--ink-06);
  }

  .event-detail-stepper .qty {
    min-width: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
  }

  .event-detail-cta {
    text-align: center;
  }

  /* ═══ Reserva drawer extras (Fase 6) ═══ */
  .drawer-empty {
    color: var(--ink-50);
    font-size: 14px;
    padding: 16px 0;
    text-align: center;
  }

  .drawer-form-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .drawer-form-error[hidden] {
    display: none;
  }

  .drawer input.invalid {
    border-color: var(--terra) !important;
    background: rgba(184, 92, 56, .08);
  }

  /* ═══ Reserva gracias page (Fase 6) ═══ */
  .gracias-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
  }

  .gracias-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 40px;
  }

  .gracias-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(95, 107, 59, .15);
    border: 1px solid rgba(95, 107, 59, .4);
    color: var(--olive);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .gracias-eyebrow--warn {
    background: rgba(184, 92, 56, .15);
    border-color: rgba(184, 92, 56, .45);
    color: var(--terra);
  }

  .gracias-card h1 {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .gracias-lede {
    color: var(--ink-70);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .gracias-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
  }

  .gracias-meta dt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 4px;
  }

  .gracias-meta dd {
    font-size: 14px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }

  .gracias-meta code {
    font-family: var(--mono);
    font-size: 12px;
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    word-break: break-all;
  }

  .gracias-estado {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
  }

  .gracias-estado--pendiente {
    background: rgba(200, 159, 92, .2);
    color: #6b4d1e;
  }

  .gracias-estado--confirmada {
    background: rgba(95, 107, 59, .2);
    color: var(--olive);
  }

  .gracias-estado--cancelada {
    background: rgba(184, 92, 56, .18);
    color: var(--terra);
  }

  .gracias-items h2 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .gracias-items ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
  }

  .gracias-items li {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
  }

  .gracias-items li:last-child {
    border-bottom: none;
  }

  .gracias-items .item-qty {
    color: var(--ink-50);
    font-variant-numeric: tabular-nums;
  }

  .gracias-items .item-price {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  .gracias-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 16px;
    margin-top: 4px;
  }

  .gracias-total strong {
    font-size: 22px;
    font-family: var(--display);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
  }

  .gracias-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* Botones del comprobante público (encargo / reserva). Mantienen el lenguaje
     visual del CTA del navbar pero más livianos. */
  .gracias-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
    cursor: pointer;
    white-space: nowrap;
  }

  .gracias-btn--primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .gracias-btn--primary:hover { background: var(--terra); border-color: var(--terra); }

  .gracias-btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink-12, rgba(14, 14, 12, .12));
  }
  .gracias-btn--ghost:hover {
    border-color: var(--ink);
    background: rgba(14, 14, 12, .04);
  }

  @media (max-width: 480px) {
    .gracias-actions { flex-direction: column; align-items: stretch; }
    .gracias-btn { width: 100%; }
  }

  /* ═══ Reserva gracias — pagar con MP (Fase 7) ═══ */
  .gracias-flash {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    border: 1px solid transparent;
  }

  .gracias-flash--ok {
    background: rgba(95, 107, 59, .12);
    border-color: rgba(95, 107, 59, .4);
    color: var(--olive);
  }

  .gracias-flash--error {
    background: rgba(184, 92, 56, .12);
    border-color: rgba(184, 92, 56, .4);
    color: var(--terra);
  }

  .gracias-pagar {
    margin-top: 24px;
    padding: 18px 20px;
    background: rgba(95, 107, 59, .08);
    border: 1px solid rgba(95, 107, 59, .25);
    border-radius: 12px;
    text-align: center;
  }

  .gracias-pagar .btn-primary {
    font-size: 15px;
    padding: 12px 22px;
  }

  .gracias-pagar-hint {
    margin: 10px 0 0 0;
    font-size: 12px;
    color: var(--ink-50);
  }

  .gracias-pagar-error {
    margin: 10px 0 0 0;
    font-size: 13px;
    color: var(--terra);
  }

  .gracias-pagar-error[hidden] {
    display: none;
  }

  .gracias-transfer {
    margin-top: 24px;
    padding: 16px 18px;
    background: var(--paper);
    border: 1px dashed var(--border);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-70);
  }

  .gracias-transfer p {
    margin: 0 0 6px 0;
  }

  .gracias-transfer p:last-child {
    margin-bottom: 0;
  }

  .gracias-transfer-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--ink);
  }

  .gracias-transfer-lede {
    color: var(--ink-70);
    margin-bottom: 12px;
  }

  .gracias-transfer-fields {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 6px 14px;
    margin: 8px 0 12px 0;
  }

  .gracias-transfer-fields div {
    display: contents;
  }

  .gracias-transfer-fields dt {
    color: var(--ink-50);
    font-size: 13px;
    font-weight: 600;
  }

  .gracias-transfer-fields dd {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .gracias-transfer-fields code {
    background: var(--surface);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", monospace;
    font-size: 13px;
    color: var(--ink);
    word-break: break-all;
  }

  .gracias-copy {
    appearance: none;
    border: 1px solid var(--ink-12);
    background: var(--surface);
    color: var(--ink-70);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 80ms ease-in-out, color 80ms ease-in-out;
  }

  .gracias-copy:hover {
    background: var(--paper);
    color: var(--ink);
  }

  .gracias-copy[data-state="copied"] {
    background: #166534;
    color: #f9fafb;
    border-color: #166534;
  }

  .gracias-copy[data-state="copied"]::after {
    content: " ✓";
  }

  .gracias-transfer-extra {
    margin: 8px 0 12px 0;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink-70);
  }

  .gracias-transfer-hint {
    color: var(--ink-50);
    font-size: 13px;
    margin-top: 8px;
  }

  .gracias-transfer--warn {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #78350f;
  }
  /* ═══ Pedido público — patrón POS (Fase 12.5 rediseño) ═══════════════════
     Lista lineal con counter +/- inline, sidebar sticky con CTA + cart.
     Mismo patrón que el admin (.pdadmin-*) pero con la paleta del sitio
     público y sin .pd-* prefix para mantener separación.
     ════════════════════════════════════════════════════════════════════ */

  .ppos-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 96px;
  }

  .ppos-hero { margin-bottom: 28px; max-width: 720px; }

  .ppos-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 92, 56, .12);
    border: 1px solid rgba(184, 92, 56, .35);
    color: var(--terra);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .ppos-title {
    font-family: var(--display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 8px 0;
    color: var(--ink);
  }

  .ppos-lede {
    color: var(--ink-70);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 56ch;
  }

  /* Layout 2 columnas: catálogo + cliente a la izquierda, sticky CTA a la derecha. */
  .ppos-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .ppos-layout {
      grid-template-columns: 1fr;
    }
  }

  .ppos-main-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .ppos-form-error {
    background: rgba(184, 92, 56, .10);
    border: 1px solid rgba(184, 92, 56, .45);
    border-left: 4px solid var(--terra);
    color: var(--terra);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  /* Section cards */
  .ppos-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
  }

  @media (max-width: 560px) {
    .ppos-section { padding: 18px 16px; border-radius: 12px; }
  }

  .ppos-section-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  /* Section head: title + search bar en la misma fila (catálogo) */
  .ppos-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .ppos-section-head .ppos-section-title {
    margin: 0;
    flex: 0 0 auto;
  }

  .ppos-search {
    position: relative;
    flex: 1 1 240px;
    min-width: 200px;
    max-width: 360px;
  }

  .ppos-search input[type="search"] {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 32px 9px 32px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .ppos-search input[type="search"]::-webkit-search-cancel-button { display: none; }

  .ppos-search input:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, .18);
  }

  .ppos-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-50);
    font-size: 16px;
    pointer-events: none;
    line-height: 1;
  }

  .ppos-search-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    background: transparent;
    border: none;
    color: var(--ink-50);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .ppos-search-clear:hover { background: rgba(184, 92, 56, .12); color: var(--terra); }

  .ppos-search-empty {
    padding: 18px 16px;
    font-size: 13px;
    color: var(--ink-50);
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid var(--border);
  }

  /* Catálogo lista */
  .ppos-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .ppos-cat-divider {
    padding: 10px 16px 6px;
    background: transparent;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-50);
    border-top: 1px solid var(--border);
  }

  .ppos-cat-divider:first-child { border-top: none; }

  .ppos-cat-divider--custom {
    color: #6B4D1E;
    background: rgba(232, 200, 121, .10);
    border-top-color: #E8C879;
  }

  .ppos-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
    border-left: 3px solid transparent;
    transition: background-color .15s ease, border-left-color .15s ease;
  }

  /* El display: grid de arriba pisa el `display: none` que el navegador aplica
     por default al atributo [hidden]. Forzamos la regla acá para que el JS de
     búsqueda pueda ocultar rows seteando row.hidden = true. */
  .ppos-row[hidden] { display: none; }

  .ppos-row + .ppos-row { border-top: 1px solid var(--border); }
  .ppos-cat-divider + .ppos-row { border-top: none; }

  .ppos-row--active {
    background: rgba(95, 107, 59, .07);
    border-left-color: #5F6B3B;
  }

  .ppos-row--custom { background: rgba(232, 200, 121, .12); border-left-color: #E8C879; }
  .ppos-row--custom.ppos-row--active { background: rgba(232, 200, 121, .20); }

  .ppos-row-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .ppos-row-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ppos-row-meta {
    font-size: 12px;
    color: var(--ink-50);
    font-variant-numeric: tabular-nums;
  }

  /* Counter */
  .ppos-counter {
    display: inline-flex;
    align-items: center;
    gap: 0;
  }

  .ppos-counter-btn {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink-70);
    width: 36px;
    height: 36px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease;
  }

  .ppos-counter-btn--dec {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    border-right-width: 0;
  }

  .ppos-counter-btn--inc {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    background: var(--terra);
    color: #fff;
    border-color: var(--terra);
    border-left-width: 0;
  }

  .ppos-counter-btn--inc:hover { background: var(--ink); border-color: var(--ink); }
  .ppos-counter-btn--dec:hover:not([disabled]) {
    background: rgba(184, 92, 56, .08);
    color: var(--terra);
    border-color: rgba(184, 92, 56, .35);
  }

  .ppos-counter-btn[disabled] {
    opacity: .35;
    cursor: not-allowed;
  }

  .ppos-counter-value {
    min-width: 38px;
    padding: 0 10px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    color: var(--ink-50);
    transition: color .15s ease, background-color .15s ease;
  }

  .ppos-counter-value--on {
    color: var(--ink);
    background: rgba(95, 107, 59, .14);
    font-weight: 600;
    animation: ppos-counter-pop .25s ease;
  }

  @keyframes ppos-counter-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
  }

  .ppos-row-remove {
    appearance: none;
    background: transparent;
    border: 1px solid transparent;
    color: var(--ink-50);
    font-size: 20px;
    line-height: 1;
    width: 32px;
    height: 32px;
    margin-left: 6px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  }

  .ppos-row-remove:hover {
    background: rgba(184, 92, 56, .08);
    color: var(--terra);
    border-color: rgba(184, 92, 56, .35);
  }

  /* Add custom */
  .ppos-add-custom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 14px;
  }

  .ppos-add-custom input[type="text"] {
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .ppos-add-custom input:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, .18);
  }

  .ppos-btn-tonal {
    appearance: none;
    background: var(--terra);
    color: #fff;
    border: 1px solid var(--terra);
    border-radius: 10px;
    padding: 0 18px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .15s ease;
  }

  .ppos-btn-tonal:hover { background: var(--ink); border-color: var(--ink); }
  .ppos-btn-tonal:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 92, 56, .25);
  }
  .ppos-btn-tonal[disabled] { opacity: .55; cursor: not-allowed; }

  /* Cliente fields */
  .ppos-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ppos-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width: 560px) {
    .ppos-fields-row { grid-template-columns: 1fr; }
  }

  .ppos-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ppos-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
  }

  .ppos-required {
    color: var(--terra);
    font-weight: 600;
    margin-left: 2px;
  }

  .ppos-optional {
    color: var(--ink-50);
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
  }

  .ppos-field-hint {
    font-size: 12px;
    color: var(--ink-50);
    line-height: 1.4;
    margin-top: 2px;
  }

  .ppos-field input[type="text"],
  .ppos-field input[type="tel"],
  .ppos-field input[type="email"],
  .ppos-field input[type="date"],
  .ppos-field textarea {
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .ppos-field input:focus,
  .ppos-field textarea:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, .18);
  }

  .ppos-disclaimer {
    font-size: 12px;
    color: var(--ink-50);
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }

  /* ── Sidebar sticky ─────────────────────────────────────────────────────── */
  /* top: 92px deja respiro debajo del .site-header sticky (~76px alto + 16px). */
  .ppos-aside {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }

  @media (max-width: 900px) {
    .ppos-aside {
      position: static;
      max-height: none;
      overflow-y: visible;
    }
  }

  .ppos-cta-card {
    background: var(--surface);
    border: 1px solid rgba(184, 92, 56, .35);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(184, 92, 56, 0.04) 100%);
  }

  .ppos-cta-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
  }

  .ppos-cta-total-label {
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-50);
    font-weight: 500;
  }

  .ppos-cta-total-value {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
    color: var(--terra);
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .ppos-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    appearance: none;
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .15s ease, transform .12s ease;
  }

  .ppos-btn-primary:hover:not([disabled]) {
    background: var(--terra);
  }

  .ppos-btn-primary[disabled] {
    opacity: .45;
    cursor: not-allowed;
  }

  .ppos-alt-link {
    text-align: center;
    font-size: 13px;
    color: var(--terra);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 92, 56, .35);
    align-self: center;
    padding: 4px 0;
  }

  .ppos-alt-link:hover { border-bottom-color: var(--terra); }

  /* Cart card */
  .ppos-cart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
  }

  .ppos-cart-title {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }

  .ppos-cart-empty {
    font-size: 13px;
    color: var(--ink-50);
    text-align: center;
    line-height: 1.5;
    padding: 14px 8px;
  }

  .ppos-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ppos-cart-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: baseline;
    padding: 8px 10px;
    background: rgba(0, 0, 0, .025);
    border-radius: 8px;
    font-size: 13px;
  }

  .ppos-cart-row--custom {
    background: rgba(232, 200, 121, .14);
  }

  .ppos-cart-qty {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--ink);
  }

  .ppos-cart-name {
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ppos-cart-price {
    font-variant-numeric: tabular-nums;
    color: var(--ink-70);
    font-size: 12px;
    grid-column: 3;
  }

  .ppos-cart-meta {
    font-size: 10px;
    color: var(--ink-50);
    text-transform: uppercase;
    letter-spacing: .05em;
    grid-column: 3;
  }

  /* Mobile: en pantallas chicas, el aside cae abajo del catálogo. Hacemos
     el CTA-card sticky al bottom del viewport para que el botón "Hacer
     pedido" siga a la mano sin scroll hasta el final. */
  @media (max-width: 900px) {
    .ppos-cta-card {
      position: sticky;
      bottom: 12px;
      z-index: 10;
      box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }
  }

  /* ═══ Sección "Encargar" (home) ═══ */
  .encargar-cta {
    background: var(--canvas);
    padding: 96px 56px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .encargar-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .encargar-cta-head {
    max-width: 720px;
    margin-bottom: 56px;
  }

  .encargar-cta-head .kicker {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-70);
    margin-bottom: 18px;
  }

  .encargar-cta-head h2 {
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 360;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0 0 20px 0;
  }

  .encargar-cta-head h2 em {
    font-style: italic;
    color: var(--terra);
  }

  .encargar-cta-lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-70);
    max-width: 56ch;
    margin: 0;
  }

  .encargar-cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
  }

  .encargar-cta-steps li {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
  }

  .encargar-cta-steps .step-num {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--terra);
    margin-bottom: 16px;
  }

  .encargar-cta-steps h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 8px 0;
  }

  .encargar-cta-steps p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-70);
    margin: 0;
  }

  .encargar-cta-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .encargar-cta-ghost {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-70);
    text-decoration: none;
    border-bottom: 1px solid var(--ink-12);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s;
  }
  .encargar-cta-ghost:hover {
    color: var(--terra);
    border-bottom-color: var(--terra);
  }

  @media (max-width: 900px) {
    .encargar-cta { padding: 64px 24px; }
    .encargar-cta-steps { grid-template-columns: 1fr; gap: 14px; }
    .encargar-cta-head { margin-bottom: 36px; }
  }

  /* ═══ Anuncio banner (Fase 10.3) ═══ */
  .anuncio-banner {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 24px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
  }

  .anuncio-banner-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
  }

  .anuncio-banner-icon {
    color: var(--terra);
    font-size: 12px;
  }

  .info-cierres {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--ink-70);
  }

  .info-cierres strong {
    color: var(--terra);
    margin-right: 4px;
  }
</style>
