/*
Theme Name: In a Bite App
Theme URI: https://inabite.com
Author: In a Bite
Description: App-like, Tropical-Bold ordering experience for In a Bite — Brazilian Taste. GSAP motion, horizontal category rails, animated side-cart. Data-driven from the WooCommerce Store API.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inabite-app
*/

/* ============================================================
   TOKENS — Tropical Bold
   ============================================================ */
:root {
  --red:        #E31837;
  --red-deep:   #B30E27;
  --yellow:     #FFC300;
  --yellow-deep:#E5A800;
  --cream:      #FFF8EC;
  --cream-2:    #FDEFD3;
  --ink:        #1A1208;
  --ink-soft:   #6B5A45;
  --leaf:       #1E8A5B;
  --white:      #ffffff;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* sticker shadow — hard offset, no blur = playful/premium */
  --sticker:    4px 4px 0 var(--ink);
  --sticker-sm: 3px 3px 0 var(--ink);
  --soft:       0 10px 30px rgba(26,18,8,.10);
  --soft-lg:    0 24px 60px rgba(26,18,8,.16);

  --header-h: 64px;
  --chips-h: 60px;
  --bottomnav-h: 64px;

  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --maxw: 1160px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
h1,h2,h3,h4 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; margin: 0; line-height: .98; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-radius: 6px; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ============================================================
   APP HEADER
   ============================================================ */
.app-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 2px solid transparent;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.app-header.is-stuck { background: var(--cream); border-bottom-color: var(--ink); }
.app-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 12px; }

.brand-wordmark { display: inline-flex; align-items: center; gap: 8px; font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 600; letter-spacing: -.03em; }
.brand-wordmark .brand-mark { font-size: 20px; transform: translateY(-1px); }
.brand-wordmark .brand-text strong { color: var(--red); font-weight: 800; }
.custom-logo { max-height: 44px; width: auto; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 46px; width: auto; display: block; border-radius: 12px; border: 2px solid var(--ink); box-shadow: var(--sticker-sm); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--r-pill); background: var(--white);
  box-shadow: var(--sticker-sm); border: 2px solid var(--ink);
  transition: transform .15s var(--ease-spring);
}
.icon-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-btn { position: relative; background: var(--red); color: var(--white); }
.cart-btn svg { stroke: var(--white); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 22px; height: 22px; padding: 0 5px;
  background: var(--yellow); color: var(--ink); border: 2px solid var(--ink);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 800;
  display: grid; place-items: center; transform: scale(0); transition: transform .3s var(--ease-spring);
  font-family: 'Bricolage Grotesque';
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump .4s var(--ease-spring); }
@keyframes bump { 0%{transform:scale(1)} 40%{transform:scale(1.35)} 100%{transform:scale(1)} }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 105% at 80% 22%, var(--yellow) 0%, var(--yellow) 40%, transparent 72%), var(--cream);
  display: flex; align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: 22px 0;
}
.hero .container { position: relative; z-index: 3; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(18px, 4vw, 56px); }
.hero-copy { max-width: 600px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-pill);
}
.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 800; text-transform: uppercase;
  margin: 16px 0 0; color: var(--ink);
}
.hero-title .hl {
  color: var(--white); background: var(--red); padding: 0 .12em;
  border-radius: 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  display: inline-block; transform: rotate(-1.5deg); box-shadow: var(--sticker);
}
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--ink-soft); max-width: 36ch; margin: 20px 0 0; line-height: 1.5; }
.hero-cta { display: inline-flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--r-pill); border: 2.5px solid var(--ink);
  transition: transform .15s var(--ease-spring), box-shadow .15s var(--ease-spring);
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--sticker); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: var(--sticker-sm); }
.btn-primary:active, .btn-ghost:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }

/* right visual column — floating salgados on a red plate */
.hero-visual { position: relative; display: grid; place-items: center; min-height: clamp(260px, 44vh, 440px); }
.hero-plate {
  position: relative; display: grid; place-items: center; will-change: transform;
  width: clamp(180px, 24vw, 290px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ff3b56, var(--red) 62%, var(--red-deep));
  border: 3px solid var(--ink); box-shadow: var(--sticker);
}
.hero-plate .plate-emoji { font-size: clamp(70px, 11vw, 130px); line-height: 1; filter: drop-shadow(0 8px 10px rgba(0,0,0,.25)); }
.hero-plate .plate-img { width: 82%; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 12px 16px rgba(0,0,0,.32)); transform: translateY(-2%); }
.steam { position: absolute; top: -6%; width: 26px; height: 72px; border-radius: 50%; filter: blur(7px); z-index: 3;
  background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1)); opacity: 0; pointer-events: none; }
.steam:nth-child(1){ left: 36%; animation: steam 3.0s ease-in-out infinite; }
.steam:nth-child(2){ left: 50%; animation: steam 3.6s ease-in-out .55s infinite; }
.steam:nth-child(3){ left: 64%; animation: steam 3.2s ease-in-out 1.1s infinite; }
@keyframes steam { 0%{opacity:0; transform: translateY(14px) scaleX(1.1);} 24%{opacity:1;} 100%{opacity:0; transform: translateY(-84px) scaleX(2.4);} }

.sticker {
  position: absolute; display: grid; place-items: center;
  width: clamp(64px, 9vw, 104px); aspect-ratio: 1;
  background: var(--white); border: 3px solid var(--ink); border-radius: 30% 70% 65% 35% / 40% 40% 60% 60%;
  box-shadow: var(--sticker); font-size: clamp(30px, 5vw, 52px); will-change: transform; z-index: 2;
}
.sticker.s2 { top: 4%;  right: 2%;  background: var(--cream-2); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.sticker.s3 { bottom: 2%; right: 12%; background: var(--yellow); }
.sticker.s4 { top: 24%; left: 0%;  width: clamp(52px,7vw,84px); background: var(--white); }
/* floating real food — no disc, just the cutout + soft shadow */
.sticker { background: transparent !important; border: 0 !important; box-shadow: none !important; width: clamp(84px, 11vw, 132px) !important; }
.sticker.s4 { width: clamp(66px, 9vw, 106px) !important; }
.sticker img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 9px 12px rgba(0,0,0,.32)); }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 14px 0 26px; }
  .hero .container { grid-template-columns: 1fr; gap: 6px; }
  .hero-copy { max-width: none; }
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .hero-sub { max-width: none; }
  .hero-visual { min-height: 220px; }
  .sticker.s4 { display: none; }
}

/* marquee strip */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden; white-space: nowrap;
  border-block: 2px solid var(--ink);
}
.marquee__track { display: inline-flex; gap: 28px; padding: 12px 14px; animation: marquee 22s linear infinite; font-family:'Bricolage Grotesque'; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.marquee__track span { display: inline-flex; align-items: center; gap: 28px; }
.marquee__track span::after { content: "●"; color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CATEGORY CHIPS (sticky, draggable)
   ============================================================ */
.cat-bar {
  position: sticky; top: var(--header-h); z-index: 150;
  background: var(--cream); border-bottom: 2px solid var(--ink);
}
.cat-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding: 11px clamp(16px,4vw,32px);
  scrollbar-width: none; scroll-snap-type: x proximity; cursor: grab;
  max-width: var(--maxw); margin-inline: auto;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.cat-scroll.fade-l { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px); mask-image: linear-gradient(90deg, transparent 0, #000 26px); }
.cat-scroll.fade-r { -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 26px), transparent 100%); mask-image: linear-gradient(90deg, #000 calc(100% - 26px), transparent 100%); }
.cat-scroll.fade-l.fade-r { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%); }
.chip {
  flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap;
  padding: 9px 18px; border-radius: var(--r-pill); border: 2px solid var(--ink);
  background: var(--white); color: var(--ink); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s, color .2s, transform .15s var(--ease-spring);
  user-select: none;
}
.chip .chip-emoji { font-size: 16px; }
.chip.active { background: var(--red); color: var(--white); box-shadow: var(--sticker-sm); }

/* ============================================================
   MENU SECTIONS + PRODUCT CARDS
   ============================================================ */
.menu { padding: 26px 0 40px; }
.cat-section { scroll-margin-top: calc(var(--header-h) + var(--chips-h) + 8px); padding-top: 18px; }
.cat-head { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 16px; }
.cat-head h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 800; text-transform: uppercase; }
.cat-head .count { color: var(--ink-soft); font-weight: 600; font-size: .9rem; }

.product-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.card {
  position: relative; background: var(--white); border: 2.5px solid var(--ink);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--sticker); transition: transform .2s var(--ease-spring), box-shadow .2s var(--ease-spring);
}
.card:hover { transform: translate(-2px,-3px); box-shadow: 7px 9px 0 var(--ink); }
.card__media {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media.is-demo { font-size: clamp(56px, 12vw, 84px); }
.card__media.grad-1 { background: radial-gradient(circle at 50% 35%, var(--yellow), var(--yellow-deep)); }
.card__media.grad-2 { background: radial-gradient(circle at 50% 35%, #FFE08A, var(--yellow)); }
.card__media.grad-3 { background: radial-gradient(circle at 50% 35%, #FFB3BE, var(--red)); }
.card__media.grad-4 { background: radial-gradient(circle at 50% 35%, #FFD9A0, #E5A800); }
.card__tag {
  position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
}
.card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__name { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.1rem; line-height: 1.1; }
.card__desc { color: var(--ink-soft); font-size: .85rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { margin-top: auto; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; }
.card__price { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.25rem; }

.add-btn {
  width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--red); color: var(--white);
  border: 2.5px solid var(--ink); box-shadow: var(--sticker-sm); display: grid; place-items: center;
  font-size: 26px; font-weight: 700; line-height: 0;
  transition: transform .15s var(--ease-spring);
}
.add-btn:hover { background: var(--red-deep); }
.add-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

/* ============================================================
   QTY STEPPER (cart lines)
   ============================================================ */
.stepper { display: inline-flex; align-items: center; border: 2px solid var(--ink); border-radius: var(--r-pill); overflow: hidden; background: var(--white); }
.stepper button { width: 34px; height: 34px; display: grid; place-items: center; font-size: 20px; font-weight: 700; color: var(--ink); }
.stepper button:hover { background: var(--cream-2); }
.stepper .qty { min-width: 28px; text-align: center; font-weight: 800; font-family:'Bricolage Grotesque'; }

/* ============================================================
   SIDE CART DRAWER
   ============================================================ */
.overlay {
  position: fixed; inset: 0; background: rgba(26,18,8,.45); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease-out), visibility .3s; z-index: 400;
}
.overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 100%);
  background: var(--cream); z-index: 500; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s var(--ease-spring);
  border-left: 2.5px solid var(--ink); box-shadow: var(--soft-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 2px solid var(--ink); }
.drawer__head h2 { font-size: 1.6rem; font-weight: 800; text-transform: uppercase; }
.drawer__close { width: 40px; height: 40px; border-radius: var(--r-pill); border: 2px solid var(--ink); background: var(--white); display: grid; place-items: center; box-shadow: var(--sticker-sm); }
.drawer__close:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

.drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center;
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 10px; box-shadow: var(--sticker-sm);
}
.line__media { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; display: grid; place-items: center; font-size: 34px; background: var(--cream-2); }
.line__media img { width:100%; height:100%; object-fit: cover; }
.line__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.line__name { font-weight: 700; font-size: .95rem; line-height: 1.15; }
.line__price { font-weight: 800; font-family:'Bricolage Grotesque'; color: var(--red); }
.line__remove { color: var(--ink-soft); font-size: .78rem; font-weight: 600; text-decoration: underline; align-self: start; }

.drawer__foot { padding: 18px 20px calc(20px + env(safe-area-inset-bottom,0px)); border-top: 2px solid var(--ink); background: var(--cream-2); }
.subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.subtotal .lbl { font-weight: 600; color: var(--ink-soft); }
.subtotal .val { font-family:'Bricolage Grotesque'; font-weight: 800; font-size: 1.8rem; }
.checkout-btn {
  width: 100%; padding: 17px; border-radius: var(--r-pill); background: var(--red); color: var(--white);
  border: 2.5px solid var(--ink); box-shadow: var(--sticker); font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s var(--ease-spring);
}
.checkout-btn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.checkout-btn:disabled { background: var(--ink-soft); cursor: not-allowed; box-shadow: var(--sticker-sm); opacity:.8; }
.demo-note { margin-top: 10px; font-size: .78rem; color: var(--ink-soft); text-align: center; line-height: 1.4; }

/* empty cart */
.cart-empty { text-align: center; margin: auto; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cart-empty .emoji { font-size: 64px; }
.cart-empty h3 { font-size: 1.4rem; font-weight: 800; }
.cart-empty p { color: var(--ink-soft); max-width: 26ch; margin: 0; }

/* ============================================================
   BOTTOM NAV
   ============================================================ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 300;
  background: var(--white); border-top: 2px solid var(--ink);
  display: flex; justify-content: space-around; align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
}
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--ink-soft); font-size: 11px; font-weight: 600; position: relative; }
.nav-item svg { width: 22px; height: 22px; }
.nav-item.active { color: var(--red); }
.nav-item .nav-badge { position: absolute; top: 6px; right: calc(50% - 22px); background: var(--red); color: #fff; border:2px solid var(--white); font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 999px; display: none; place-items: center; }
.nav-item .nav-badge.show { display: grid; }

/* Desktop: bottom-nav is a mobile pattern — hide it, move Account to the header */
.account-btn { display: none; }
@media (min-width: 900px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .account-btn { display: grid; }
  .toast-wrap { bottom: 24px; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap { position: fixed; left: 50%; bottom: calc(var(--bottomnav-h) + 18px); transform: translateX(-50%); z-index: 600; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
  background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .9rem; box-shadow: var(--soft-lg); display: inline-flex; align-items: center; gap: 8px;
  transform: translateY(20px); opacity: 0; transition: transform .35s var(--ease-spring), opacity .25s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .t-emoji { font-size: 18px; }

/* ============================================================
   SKELETON
   ============================================================ */
.skeleton .card__media, .skel-line { background: linear-gradient(100deg, #efe6d6 30%, #f7f0e2 50%, #efe6d6 70%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
.skel-text { height: 14px; border-radius: 6px; margin: 8px 0; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* fly-to-cart clone */
.fly-clone { position: fixed; z-index: 700; border-radius: 50%; pointer-events: none; display:grid; place-items:center; font-size: 30px; background: var(--white); border: 2px solid var(--ink); box-shadow: var(--sticker-sm); }

/* error / empty menu */
.menu-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.menu-state .emoji { font-size: 56px; }
.menu-state h3 { color: var(--ink); font-size: 1.5rem; margin: 12px 0 6px; }

/* footer */
.stripe-red { background: repeating-linear-gradient(90deg, var(--red) 0 16px, #cf142f 16px 32px); }
.app-footer { background: var(--ink); color: var(--cream); margin-top: 0; }
.footer-accent { height: 6px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding: 40px 0 24px; align-items: start; }
.f-col h4 { font-family: 'Bricolage Grotesque'; text-transform: uppercase; font-size: 1rem; letter-spacing: .08em; margin-bottom: 12px; color: var(--yellow); }
.f-col a { color: var(--cream); }
.f-col a:hover { color: var(--yellow); }
.app-footer .f-logo img { height: 64px; width: auto; display: block; border-radius: 14px; border: 2.5px solid #000; box-shadow: var(--sticker); }
.f-tag { color: rgba(255,255,255,.78); max-width: 30ch; margin: 14px 0; line-height: 1.5; }
.f-ig { display: inline-flex; gap: 8px; align-items: center; border: 2px solid var(--cream); padding: 9px 16px; border-radius: var(--r-pill); font-weight: 700; }
.f-col address { font-style: normal; line-height: 1.7; margin-bottom: 8px; }
.f-map { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--yellow); text-decoration: underline; }
.f-hours { list-style: none; margin: 0; padding: 0; max-width: 230px; }
.f-hours li { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.f-hours li span:first-child { color: rgba(255,255,255,.65); font-weight: 600; }
.app-footer small { display: block; padding-bottom: 26px; color: rgba(255,255,255,.55); }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   PAGES + WOOCOMMERCE (account / cart / checkout / shop)
   ============================================================ */
.page-main { padding: 30px 0 60px; min-height: 62vh; }
.page-title { font-family: 'Bricolage Grotesque'; font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 22px; }
.prose { line-height: 1.65; font-size: 1.02rem; max-width: 760px; }
.prose a { color: var(--red); text-decoration: underline; font-weight: 600; }
.prose h2 { font-family:'Bricolage Grotesque'; margin: 26px 0 10px; font-size: 1.6rem; }

.woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error { border-top-color: var(--red); border-radius: 12px; }
.woocommerce form .form-row label { font-weight: 600; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .input-text, .woocommerce input[type="text"], .woocommerce input[type="email"],
.woocommerce input[type="password"], .woocommerce input[type="tel"], .woocommerce select {
  font-size: 16px; padding: 12px 14px; border: 2px solid var(--ink); border-radius: 12px; background: #fff;
}
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce button.button.alt {
  background: var(--red); color: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  box-shadow: var(--sticker-sm); padding: 13px 24px; font-weight: 800; transition: transform .15s var(--ease-spring);
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--red-deep); color: #fff; }
.woocommerce .button:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

/* full width for app-like Woo pages (account/cart/checkout) */
.woocommerce-account .prose, .woocommerce-cart .prose, .woocommerce-checkout .prose { max-width: 1080px; }

/* My Account — sidebar + content cards */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 250px 1fr; gap: 26px; align-items: start; }
.woocommerce-account .woocommerce::before, .woocommerce-account .woocommerce::after { content: none; display: none; }
.woocommerce-MyAccount-navigation { float: none !important; width: auto !important; margin: 0 !important; background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker-sm); padding: 10px; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.woocommerce-MyAccount-navigation li { margin: 0; border: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 11px 16px; border-radius: 12px; font-weight: 700; color: var(--ink); background: transparent; border: 0; box-shadow: none; text-decoration: none; transition: background .15s; }
.woocommerce-MyAccount-navigation li a:hover { background: var(--cream-2); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--red); color: #fff; }
.woocommerce-MyAccount-content { float: none !important; width: auto !important; min-width: 0; background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker-sm); padding: 24px; }
.woocommerce-MyAccount-content a { color: var(--red); }
@media (max-width: 760px){
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-navigation ul { flex-direction: row; flex-wrap: wrap; }
  .woocommerce-MyAccount-navigation li a { padding: 9px 14px; }
}

.woocommerce table.shop_table { border: 2px solid var(--ink); border-radius: 14px; overflow: hidden; }

/* Shop archive (loja) — Tropical Bold product grid */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 0 0 30px; padding: 0; list-style: none; }
.woocommerce ul.products li.product { background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sticker); padding: 0 0 14px; text-align: left; margin: 0 !important; width: auto !important; float: none !important; transition: transform .2s var(--ease-spring), box-shadow .2s var(--ease-spring); }
.woocommerce ul.products li.product:hover { transform: translate(-2px,-3px); box-shadow: 7px 9px 0 var(--ink); }
.woocommerce ul.products li.product a img { margin: 0 0 10px; border-radius: 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 4px 14px; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1rem; }
.woocommerce ul.products li.product .price { padding: 0 14px; color: var(--red); font-family: 'Bricolage Grotesque'; font-weight: 800; }
.woocommerce ul.products li.product .button { margin: 12px 14px 0; display: inline-block; }
.woocommerce span.onsale { background: var(--red); border: 2px solid var(--ink); border-radius: 999px; color: #fff; min-height: auto; line-height: 1.4; padding: 4px 12px; }

/* Single product */
.woocommerce div.product .product_title { font-family: 'Bricolage Grotesque'; font-weight: 800; text-transform: uppercase; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--red); font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.6rem; }
.woocommerce div.product form.cart .quantity input.qty { border: 2px solid var(--ink); border-radius: 10px; padding: 10px; }
.woocommerce .woocommerce-tabs ul.tabs li { border-radius: 999px; border: 2px solid var(--ink); background: #fff; }
.woocommerce .woocommerce-tabs ul.tabs li.active { background: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card__media.is-demo { font-size: 60px; }
  .add-btn { width: 42px; height: 42px; font-size: 24px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee__track { animation: none; }
}

/* ============================================================
   WOOCOMMERCE PAGES — full Tropical Bold pass
   ============================================================ */

/* ---- Single product ---- */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 44px); }
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary { float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce div.product .woocommerce-product-gallery__wrapper img { border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker); }
.woocommerce div.product .woocommerce-product-rating { display: none; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--ink-soft); line-height: 1.65; margin-top: 10px; }
.woocommerce div.product form.cart { margin: 20px 0 0; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.woocommerce div.product .product_meta { font-size: .85rem; color: var(--ink-soft); margin-top: 18px; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 16px; }
.woocommerce div.product .woocommerce-tabs .panel { background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sticker-sm); }
.woocommerce .related.products, .woocommerce .up-sells { grid-column: 1 / -1; margin-top: 26px; }
.woocommerce .related.products > h2, .woocommerce .up-sells > h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 16px; }
@media (max-width: 768px) { .woocommerce div.product { grid-template-columns: 1fr; } }

/* ---- Order received / thank-you ---- */
.woocommerce ul.order_details { display: flex; flex-wrap: wrap; gap: 0; list-style: none; padding: 0; margin: 22px 0; border: 2.5px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sticker-sm); background: #fff; }
.woocommerce ul.order_details li { padding: 14px 20px; border-right: 2px solid var(--ink); border-bottom: 0; font-weight: 800; font-family: 'Bricolage Grotesque'; text-transform: none; flex: 1 1 auto; }
.woocommerce ul.order_details li:last-child { border-right: 0; }
.woocommerce ul.order_details li strong { display: block; font-family: 'Inter'; font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.woocommerce-order .woocommerce-column__title, .woocommerce-order h2 { font-family: 'Bricolage Grotesque'; font-weight: 800; text-transform: uppercase; }
.woocommerce-order .woocommerce-customer-details address { border: 2px solid var(--ink); border-radius: var(--r-md); padding: 16px; font-style: normal; }

/* ---- My Account inner ---- */
.woocommerce-MyAccount-content .woocommerce-Address { border: 2px solid var(--ink); border-radius: var(--r-md); padding: 16px; }
.woocommerce-MyAccount-content address { font-style: normal; line-height: 1.6; }
.woocommerce form.woocommerce-EditAccountForm, .woocommerce form.edit-account, .woocommerce form.woocommerce-address-fields { max-width: 560px; }
.woocommerce-orders-table__cell, .woocommerce-table--order-details td, .woocommerce-table--order-details th { padding: 12px 14px; }

/* ---- WooCommerce Blocks (cart + checkout) ---- */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-text-input textarea,
.wc-block-components-address-form input {
  border: 2px solid var(--ink) !important; border-radius: 12px !important; font-size: 16px !important;
}
.wc-block-components-checkout-step__title,
.wc-block-cart__totals-title,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-title {
  font-family: 'Bricolage Grotesque' !important; font-weight: 800 !important;
}
.wc-block-components-button.contained,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  background: var(--red) !important; color: #fff !important; border: 2.5px solid var(--ink) !important;
  border-radius: var(--r-pill) !important; font-weight: 800 !important; box-shadow: var(--sticker-sm); padding: 14px 26px !important;
}
.wc-block-components-button.contained:hover { background: var(--red-deep) !important; }
.wc-block-components-radio-control { border: 2.5px solid var(--ink); border-radius: var(--r-md); overflow: hidden; }
.wc-block-components-radio-control__option { border: 0 !important; border-bottom: 2px solid var(--ink) !important; border-radius: 0 !important; margin: 0 !important; padding: 14px 16px 14px 48px !important; position: relative; }
.wc-block-components-radio-control__option:last-child { border-bottom: 0 !important; }
.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-radio-control__option:has(input:checked) { background: var(--cream-2); }
.wc-block-components-totals-item__value, .wc-block-formatted-money-amount { font-family: 'Bricolage Grotesque'; font-weight: 800; }
.wp-block-woocommerce-checkout-order-summary-block { background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker-sm); padding: 18px; box-sizing: border-box; }

/* checkout/cart: kill horizontal overflow (order summary was bleeding off-screen) */
.woocommerce-checkout .prose, .woocommerce-cart .prose { max-width: 100%; }
.wp-block-woocommerce-checkout, .wc-block-checkout__main, .wc-block-checkout__sidebar,
.wp-block-woocommerce-cart, .wc-block-cart__main, .wc-block-cart__sidebar { min-width: 0 !important; max-width: 100% !important; box-sizing: border-box; }
.wc-block-components-radio-control__input { left: 16px !important; }

/* TranslatePress floating switcher — keep it clear of the side-cart */
#trp-floater-ls, .trp-floater { left: 18px !important; right: auto !important; }
body.no-scroll #trp-floater-ls, body.no-scroll .trp-floater { display: none !important; }

/* account: breathing room on order-row action buttons */
.woocommerce-orders-table .button, .woocommerce-MyAccount-content td .button { margin: 5px 0; }

/* order-received celebration — raining salgados */
.salgado-drop { position: fixed; top: 0; z-index: 9999; pointer-events: none; will-change: transform; }

/* radio: vertically center the control */
.wc-block-components-radio-control__input { top: 50% !important; bottom: auto !important; transform: translateY(-50%) !important; margin: 0 !important; }
/* payment method options get the same breathing room as shipping */
.wc-block-checkout__payment-method .wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option { padding: 16px 16px 16px 48px !important; position: relative; }
.wc-block-components-radio-control__description,
.wc-block-components-radio-control-accordion-content-wrapper { padding: 0 16px 14px 48px; color: var(--ink-soft); }

/* hero — subtle raining salgados (behind content) */
.hero-rain-drop { position: absolute; top: 0; z-index: 0; font-size: 22px; pointer-events: none; will-change: transform; }

/* payment options box = identical to the shipping options box */
.wc-block-checkout__payment-method .wc-block-components-radio-control { border: 2.5px solid var(--ink) !important; border-radius: var(--r-md) !important; overflow: hidden; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__option { margin: 0 !important; border: 0 !important; border-radius: 0 !important; padding: 14px 16px 14px 48px !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__option--checked-option-highlighted { background: var(--cream-2) !important; border-radius: 0 !important; margin: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__description { padding: 0 16px 14px 48px !important; margin: 0 !important; }
/* kill the reserved payment-icon gutter so the option aligns like shipping */
.wc-block-checkout__payment-method { padding: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__option-layout,
.wc-block-checkout__payment-method .wc-block-components-radio-control__label-group { padding-left: 0 !important; margin-left: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__input { left: 16px !important; margin: 0 !important; }

/* === Payment options — authoritative fix (real accordion structure) === */
.wc-block-checkout__payment-method .wc-block-components-radio-control { border: 2.5px solid var(--ink) !important; border-radius: var(--r-md) !important; overflow: hidden !important; padding: 0 !important; margin: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option { margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option--checked-option-highlighted { background: var(--cream-2) !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__option { position: relative !important; margin: 0 !important; padding: 15px 16px 15px 46px !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__option-layout,
.wc-block-checkout__payment-method .wc-block-components-radio-control__label-group { margin: 0 !important; padding: 0 !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-content { margin: 0 !important; padding: 4px 16px 14px 46px !important; color: var(--ink-soft) !important; }
.wc-block-checkout__payment-method .wc-block-components-radio-control__input { left: 16px !important; top: 50% !important; bottom: auto !important; transform: translateY(-50%) !important; margin: 0 !important; }

/* WooCommerce links/buttons never get the editorial underline */
.woocommerce a.button, .woocommerce button.button, .wc-block-components-button,
.wc-block-grid__product-title, .wc-block-components-product-name { text-decoration: none !important; }
.wc-block-grid__product-title, .wc-block-components-product-name { color: var(--ink) !important; }
/* cross-sell / block product "Add to cart" buttons → solid brand */
.cross-sells a.button, .wc-block-grid__product a.button,
.wp-block-woocommerce-cart-cross-sells-block a.button,
.wp-block-woocommerce-cart-cross-sells-block .wc-block-components-button,
.wc-block-grid__product .wc-block-components-button {
  background: var(--red) !important; color: #fff !important; border: 2.5px solid var(--ink) !important;
  border-radius: var(--r-pill) !important; box-shadow: var(--sticker-sm); font-weight: 800; text-decoration: none !important;
}

/* ============================================================
   HOME SECTIONS — reviews · catering CTA · instagram
   ============================================================ */
.header-link {
  font-weight: 800; font-size: .95rem; padding: 8px 4px; margin-right: 4px;
  border-bottom: 2.5px solid transparent; transition: border-color .15s var(--ease-out);
}
.header-link:hover { border-bottom-color: var(--red); }
@media (max-width: 600px) { .header-link { display: none; } }

.f-link { display: inline-block; margin-top: 12px; font-weight: 800; color: var(--red); }
.f-link:hover { text-decoration: underline; }

.sec-kicker {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--red); background: var(--cream-2);
  padding: 6px 14px; border-radius: var(--r-pill); border: 2px solid var(--ink); box-shadow: var(--sticker-sm);
}
.sec-kicker.light { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); box-shadow: none; }
.sec-title { font-size: clamp(1.9rem, 5vw, 3rem); margin: 14px 0 26px; }
.sec-title.light { color: #fff; }

/* Reviews */
.reviews { padding: clamp(40px, 7vw, 76px) 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  margin: 0; background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--sticker); padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: var(--yellow-deep); font-size: 1.1rem; letter-spacing: 2px; }
.review-card blockquote { margin: 0; font-size: 1.05rem; line-height: 1.5; font-weight: 500; }
.review-card figcaption { font-weight: 800; color: var(--ink-soft); font-size: .9rem; }

/* Catering CTA */
.catering-cta { padding: clamp(36px, 6vw, 64px) 0; }
.catering-cta__inner {
  background: var(--red); color: #fff; border: 3px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--sticker); padding: clamp(26px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.catering-cta__copy { max-width: 620px; }
.catering-cta__copy p { margin: 4px 0 0; font-size: 1.05rem; line-height: 1.5; opacity: .95; }
.catering-cta .btn-primary { background: #fff; color: var(--ink); white-space: nowrap; }

/* Instagram */
.ig-section { padding: clamp(36px, 6vw, 64px) 0 clamp(50px, 8vw, 90px); text-align: center; }
.ig-section .sec-title { margin-bottom: 20px; }
.ig-fallback { font-size: 1.1rem; color: var(--ink-soft); margin: 0 auto 22px; max-width: 520px; }
.ig-follow { margin-top: 22px; display: inline-flex; }

/* ============================================================
   CATERING PAGE
   ============================================================ */
.page-catering { padding-bottom: 40px; }
.cat-hero { background: var(--cream-2); border-bottom: 3px solid var(--ink); padding: clamp(34px, 6vw, 70px) 0; }
.page-title { font-size: clamp(2.2rem, 7vw, 4rem); }
.page-title .hl { color: var(--red); }
.page-lead { margin: 18px 0 0; font-size: 1.12rem; line-height: 1.55; max-width: 640px; color: var(--ink); }
.cat-wrap { padding-top: clamp(28px, 5vw, 52px); }
.cat-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(20px, 4vw, 44px); align-items: start; }
@media (max-width: 820px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-info h3 { font-size: 1.4rem; margin-bottom: 16px; }
.cat-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cat-list li { display: flex; gap: 12px; font-size: 1.02rem; line-height: 1.4; align-items: flex-start; }
.cat-list li span { font-size: 1.3rem; flex: none; }
.cat-note { font-size: .98rem; color: var(--ink-soft); line-height: 1.5; }
.cat-note a { color: var(--red); font-weight: 700; }

.cat-form { background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker); padding: clamp(20px, 3vw, 30px); }
.cat-form .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cat-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .cat-form .row2 { grid-template-columns: 1fr; } }
.cat-form label { font-weight: 800; font-size: .92rem; }
.cat-form .req { color: var(--red); }
.cat-form input, .cat-form textarea {
  width: 100%; font-size: 16px; font-family: inherit; color: var(--ink);
  padding: 13px 14px; border: 2.5px solid var(--ink); border-radius: var(--r-sm);
  background: var(--cream); transition: box-shadow .15s var(--ease-out);
}
.cat-form input:focus, .cat-form textarea:focus { outline: none; box-shadow: var(--sticker-sm); background: #fff; }
.cat-form textarea { resize: vertical; }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.cat-fineprint { text-align: center; font-size: .85rem; color: var(--ink-soft); margin: 12px 0 0; }

.cat-error { background: #fff; border: 2.5px solid var(--red); border-left-width: 7px; border-radius: var(--r-sm); padding: 14px 16px; font-weight: 700; margin-bottom: 22px; }
.cat-success { text-align: center; max-width: 520px; margin: 20px auto 40px; background: #fff; border: 2.5px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker); padding: clamp(30px, 5vw, 50px); }
.cat-success__emoji { font-size: 3rem; margin-bottom: 10px; }
.cat-success h2 { font-size: 2rem; margin-bottom: 12px; }
.cat-success p { font-size: 1.08rem; line-height: 1.5; color: var(--ink-soft); margin-bottom: 24px; }

/* ============================================================
   PRODUCT BADGES · SOLD OUT · CART UPSELL
   ============================================================ */
.card { position: relative; }
.card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  font-weight: 800; font-size: .7rem; letter-spacing: .04em;
  padding: 4px 9px; border-radius: var(--r-pill); border: 2px solid var(--ink); box-shadow: var(--sticker-sm);
}
.card__badge.gf { background: var(--leaf); color: #fff; }
.card__badge.sold { background: var(--ink); color: #fff; left: auto; right: 10px; }
.card.is-soldout .card__media { opacity: .5; filter: grayscale(.4); }
.card.is-soldout .card__name { color: var(--ink-soft); }
.add-btn.soldout { background: #e4e4e4; color: var(--ink-soft); cursor: not-allowed; box-shadow: none; pointer-events: none; }

.cart-upsell { margin-top: 18px; padding-top: 16px; border-top: 2px dashed rgba(26,18,8,.18); }
.cart-upsell__head { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.05rem; margin-bottom: 12px; }
.cart-upsell__row { display: flex; flex-direction: column; gap: 10px; }
.up-item {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 8px 10px;
  transition: transform .12s var(--ease-spring), box-shadow .12s var(--ease-out);
}
.up-item:hover { box-shadow: var(--sticker-sm); transform: translate(-1px,-1px); }
.up-item img, .up-item .up-emoji { width: 42px; height: 42px; border-radius: 10px; border: 2px solid var(--ink); object-fit: cover; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: #fff; flex: none; }
.up-name { font-weight: 700; font-size: .92rem; flex: 1; line-height: 1.2; }
.up-price { font-weight: 800; font-size: .9rem; }
.up-add { width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }

/* Store status / pause strip (top of every front-end page) */
.store-banner { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; font-weight: 700; text-align: center; padding: 7px 16px; background: var(--ink); color: var(--cream); line-height: 1.3; }
.store-banner .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.store-banner.is-open .dot { background: #34d27b; box-shadow: 0 0 0 3px rgba(52,210,123,.28); }
.store-banner.is-closed .dot { background: var(--yellow); }
.store-banner.is-paused { background: var(--red); color: #fff; }
.store-banner.is-paused .dot { background: #fff; }

/* Checkout time-slot picker (day chips + time pills) */
.inabite-slotpick { margin-top: 4px; }
.isp-head { font-weight: 800; font-size: .95rem; margin-bottom: 12px; }
.isp-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .isp-mode { grid-template-columns: 1fr; } }
.isp-modebtn { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; text-align: left; padding: 13px 15px; border: 2.5px solid var(--ink); border-radius: var(--r-md); background: #fff; font-weight: 800; font-size: .98rem; transition: transform .12s var(--ease-spring); }
.isp-modebtn:hover { transform: translate(-1px,-1px); }
.isp-modebtn small { font-weight: 600; font-size: .78rem; color: var(--ink-soft); }
.isp-modebtn.on { background: var(--red); color: #fff; box-shadow: var(--sticker-sm); }
.isp-modebtn.on small { color: rgba(255,255,255,.85); }
.isp-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .25s var(--ease-out), opacity .2s var(--ease-out); }
.isp-panel.open { grid-template-rows: 1fr; opacity: 1; margin-top: 14px; }
.isp-panel-inner { overflow: hidden; padding: 3px 6px 10px; }
.isp-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.isp-days::-webkit-scrollbar { display: none; }
.isp-chip { flex: none; padding: 9px 15px; border: 2px solid var(--ink); border-radius: var(--r-pill); background: #fff; font-weight: 700; font-size: .9rem; white-space: nowrap; transition: transform .12s var(--ease-spring); }
.isp-chip.on { background: var(--ink); color: var(--cream); }
.isp-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; margin-top: 12px; }
.isp-time { padding: 11px 8px; border: 2px solid var(--ink); border-radius: var(--r-sm); background: #fff; font-weight: 700; font-size: .9rem; transition: transform .12s var(--ease-spring), box-shadow .12s var(--ease-out); }
.isp-time:hover { box-shadow: var(--sticker-sm); transform: translate(-1px,-1px); }
.isp-time.on { background: var(--red); color: #fff; box-shadow: var(--sticker-sm); }

/* Order-confirmation: even spacing above the "Additional information" section */
.wc-block-order-confirmation-additional-fields-wrapper,
.wc-block-order-confirmation-additional-fields,
.wc-block-order-confirmation-additional-information { margin-top: 2.5rem; }
