/* ============================================================
   STYLE.CSS — Tocha Padaria home-v2 (vanilla)
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --bg-deep:  oklch(8%  0.015 46);
  --bg-dark:  oklch(9%  0.015 48);
  --bg:       oklch(12% 0.018 50);
  --bg-menu:  oklch(11% 0.018 49);
  --bg2:      oklch(16% 0.02  48);
  --bg3:      oklch(20% 0.022 47);
  --surface:  oklch(18% 0.02  48);

  --text:       oklch(92% 0.012 70);
  --text-muted: oklch(65% 0.015 65);
  --text-dim:   oklch(45% 0.012 60);
  --cream:      oklch(94% 0.01  75);

  --amber:        oklch(72% 0.12 60);
  --amber-bright: oklch(80% 0.14 58);
  --terra:        oklch(55% 0.1  30);

  --border:        oklch(28% 0.02  50);
  --border-hover:  oklch(36% 0.028 55);
  --border-focus:  oklch(72% 0.12  60);
  --border-subtle: oklch(22% 0.02  50);

  --success:      oklch(60% 0.16 145);
  --success-soft: oklch(55% 0.12 140);
  --error:        oklch(60% 0.12  25);

  --overlay:       oklch(0% 0 0 / 0.65);
  --overlay-heavy: oklch(0% 0 0 / 0.70);

  --radius-sharp: 2px;
  --radius-tag:   3px;
  --radius-sm:    6px;
  --radius-card:  8px;
  --radius-lg:    10px;
  --radius-pill:  999px;

  --t-fast:   0.2s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;
  --t-reveal: 0.7s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }
::selection { background: var(--amber); color: var(--bg); }

input::placeholder { color: oklch(40% 0.01 60); }
input:focus { outline: none; }
a { transition: color var(--t-fast); }
select { appearance: none; }
button { font-family: var(--font-sans); }
img { max-width: 100%; height: auto; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-wrap {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-wrap { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 32px;
  z-index: 101;
  background: var(--amber);
  color: oklch(12% 0.018 50);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 20px;
  line-height: 1;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
#announcement-bar.bar-hidden {
  transform: translateY(-100%);
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.announcement-label {
  opacity: 0.8;
  font-weight: 500;
}
#countdown {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.sep {
  margin: 0 6px;
  opacity: 0.6;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  top: 0;
  background: oklch(12% 0.018 50 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: oklch(28% 0.02 50);
}
.navbar-logo { height: 40px; filter: brightness(1.1); display: block; }
.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--amber); }
.cart-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-fast);
}
.cart-btn:hover {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}
.cart-badge {
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; line-height: 1;
}
.cart-btn:hover .cart-badge {
  background: var(--bg);
  color: var(--amber);
}
.cart-badge[data-count="0"] { display: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
  padding-left: clamp(140px, 18vw, 340px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-img {
  width: 100%; height: 115%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    oklch(10% 0.02 48 / 0.96) 0%,
    oklch(12% 0.018 50 / 0.7) 60%,
    oklch(12% 0.018 50 / 0.3) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px 0 0;
  max-width: 900px;
}
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--amber);
  border-radius: var(--radius-sharp);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber); font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500; line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.35s both;
}
.hero-h1 em { color: var(--amber); font-style: italic; }
.hero-desc {
  font-size: 18px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px; margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--bg);
  padding: 16px 36px; border-radius: var(--radius-sharp);
  text-decoration: none; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--t-base); font-family: var(--font-sans);
}
.btn-primary:hover {
  background: var(--amber-bright);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid oklch(50% 0.02 60);
  color: var(--text-muted);
  padding: 16px 36px; border-radius: var(--radius-sharp);
  text-decoration: none; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--t-base); font-weight: 500;
  font-family: var(--font-sans);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   MANIFESTO STRIP
   ============================================================ */
.manifesto-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap; width: max-content;
}
.marquee-track.running {
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-star { color: var(--amber); font-size: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#como-funciona {
  padding: 120px 0;
  background: var(--bg2);
  position: relative; overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
.how-container { max-width: 1500px; margin: 0 auto; padding: 0 40px; }
.how-header { margin-bottom: 56px; }
.section-label {
  font-size: 11px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.how-h2 {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 400; line-height: 1.1; margin-bottom: 24px;
}
.how-h2 .cream { color: var(--cream); display: block; }
.how-h2 em { color: var(--amber); font-style: italic; }
.how-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.6; font-weight: 300; max-width: 520px; margin: 0;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-bottom: 32px; width: 100%;
  align-items: stretch;
}
.step-wrap {
  opacity: 0; transform: translateY(28px);
  transition: all 0.6s ease;
}
.step-wrap.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .step-wrap { opacity: 1; transform: none; }
}
.step-card {
  background: oklch(15% 0.02 48);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  min-height: unset; box-sizing: border-box;
  display: flex; flex-direction: column;
  position: relative; line-height: 1.4;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.step-header { display: flex; align-items: center; gap: 12px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid oklch(72% 0.12 60 / 0.4);
  background: oklch(72% 0.12 60 / 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font: 600 16px var(--font-serif); flex-shrink: 0;
}
.step-label-text {
  font-size: 11px; color: oklch(45% 0.012 60);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.step-title {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 500; color: var(--cream);
  margin-top: 20px; margin-bottom: 0; line-height: 1.3;
}
.step-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.5; flex-grow: 1; margin-top: 16px; margin-bottom: 0; max-width: 260px;
}
.step-meta {
  font-size: 11px; color: var(--amber); margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid oklch(22% 0.02 50);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.info-grid {
  display: grid; grid-template-columns: 3fr 1fr; gap: 32px; width: 100%;
}
.info-card {
  background: linear-gradient(120deg, oklch(18% 0.025 55), oklch(15% 0.02 48));
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 32px; line-height: 1.4;
  width: 100%; align-self: stretch;
}
.info-label {
  font-size: 11px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.retirada-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-item-title { color: var(--cream); font-family: var(--font-serif); font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.info-item-desc  { color: var(--text-muted); font-size: 13px; line-height: 1.6; max-width: 240px; }
.politica-title  { color: var(--cream); font-family: var(--font-serif); font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.politica-desc   { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu {
  padding: 100px 0 120px;
  background: oklch(11% 0.018 49);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
.menu-container { max-width: 1560px; margin: 0 auto; padding: 0 40px; }
.menu-header {
  margin-bottom: 56px;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
}
.menu-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px; font-weight: 600;
}
.menu-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; color: var(--cream); line-height: 1.1;
}
.menu-h2 em { color: var(--amber); font-style: italic; }
.menu-search-wrap { position: relative; min-width: 260px; }
.menu-search {
  width: 100%; padding: 12px 16px 12px 40px;
  background: oklch(16% 0.02 48);
  border: 1px solid oklch(28% 0.02 50);
  border-radius: 8px; color: oklch(90% 0.012 70);
  font-size: 14px; font-family: var(--font-sans);
  outline: none; transition: border-color var(--t-fast);
}
.menu-search:focus { border-color: var(--amber); }
.menu-search.has-value { border-color: var(--amber); }
.search-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: oklch(50% 0.01 60); font-size: 16px; pointer-events: none;
}
.search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: oklch(50% 0.01 60); font-size: 16px; padding: 4px;
  display: none;
}
.search-clear.visible { display: block; }
.search-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: oklch(16% 0.02 48);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px oklch(0% 0 0 / 0.45);
  z-index: 60; overflow: hidden; display: none;
}
.search-suggestions.open { display: block; }
.search-suggestion {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  background: none; border: none;
  border-bottom: 1px solid oklch(18% 0.018 48);
  color: var(--text-muted); font-size: 13px; font-family: var(--font-sans);
  cursor: pointer; text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.search-suggestion:last-child { border-bottom: none; }
.search-suggestion:hover,
.search-suggestion:focus { background: oklch(20% 0.025 48); color: var(--cream); outline: none; }
.search-suggestion-icon { font-size: 14px; line-height: 1; flex-shrink: 0; }
.search-suggestion-name { flex: 1; }
.search-suggestion em { color: var(--amber); font-style: normal; font-weight: 600; }
.menu-layout {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 48px; align-items: start;
}
.menu-layout.search-active { grid-template-columns: 1fr; }
.menu-layout.search-active .category-nav { display: none; }
.menu-layout.search-active .cat-dropdown-wrap { display: none; }
.cat-dropdown-wrap { display: none; }

/* Category Nav */
.category-nav {
  display: flex; flex-direction: column; gap: 2px;
  position: sticky; top: 120px;
}
.cat-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px;
  border: none; cursor: pointer; text-align: left;
  background: transparent; transition: all 0.18s;
  width: 100%;
}
.cat-btn:hover:not(.active) { background: oklch(18% 0.02 50); }
.cat-btn.active { background: oklch(20% 0.025 52); }
.cat-icon { font-size: 18px; line-height: 1; }
.cat-info { flex: 1; }
.cat-name {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); transition: color 0.18s;
}
.cat-btn.active .cat-name { font-weight: 700; color: var(--amber); }
.cat-count { font-size: 11px; color: oklch(42% 0.01 60); margin-top: 1px; }
.cat-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0; opacity: 0;
}
.cat-btn.active .cat-dot { opacity: 1; }

/* Products Area */
.products-header {
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid oklch(22% 0.02 50);
}
.products-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.products-cat-icon { font-size: 28px; }
.products-cat-name {
  font-family: var(--font-serif); font-size: 28px;
  font-weight: 500; color: oklch(93% 0.01 72);
}
.products-count-badge {
  background: oklch(72% 0.12 60 / 0.12);
  border: 1px solid oklch(72% 0.12 60 / 0.3);
  color: var(--amber); padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.products-cat-desc {
  font-size: 14px; color: oklch(55% 0.015 65);
  line-height: 1.6; font-weight: 300;
}
.search-result-label { color: var(--amber); font-weight: 600; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.no-results {
  text-align: center; padding: 60px 20px;
  color: oklch(50% 0.01 60);
}
.no-results-icon { font-size: 40px; margin-bottom: 12px; }
.no-results-text { font-family: var(--font-serif); font-size: 20px; }

/* Product Card */
.product-card {
  background: oklch(16% 0.02 48);
  border: 1px solid oklch(26% 0.02 50);
  border-radius: var(--radius-card); overflow: hidden;
  transition: all 0.28s ease;
  display: flex; flex-direction: column; height: 100%;
}
.product-card:hover {
  background: oklch(19% 0.022 48);
  border-color: oklch(36% 0.028 55);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px oklch(0% 0 0 / 0.38);
}
.card-img-wrap {
  aspect-ratio: 16/10; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .card-img { transform: scale(1.06); }
.card-img-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    45deg,
    oklch(20% 0.018 48), oklch(20% 0.018 48) 2px,
    oklch(22% 0.02 47) 2px, oklch(22% 0.02 47) 12px
  );
  display: flex; align-items: center; justify-content: center;
  color: oklch(45% 0.012 60); font-size: 11px; font-family: monospace;
  text-align: center; padding: 0 16px; line-height: 1.6;
  min-height: 120px;
}
.card-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(16% 0.02 48 / 0.4) 0%, transparent 50%);
}
.card-tag {
  position: absolute; top: 10px; left: 10px;
  background: oklch(10% 0.015 48 / 0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid;
  padding: 3px 9px; border-radius: var(--radius-tag);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.card-top-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 8px;
}
.card-name {
  font-family: var(--font-serif); font-size: 17px;
  font-weight: 500; color: oklch(93% 0.01 72);
  line-height: 1.25; flex: 1;
}
.card-price {
  color: var(--amber); font-weight: 700; font-size: 16px;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.card-desc {
  font-size: 13px; color: oklch(60% 0.015 65);
  line-height: 1.6; font-weight: 300; flex: 1;
}
.card-actions { display: flex; gap: 8px; margin-top: 4px; align-items: stretch; }
.qty-ctrl {
  display: flex; align-items: center;
  background: oklch(20% 0.02 48);
  border: 1px solid oklch(26% 0.02 50);
  border-radius: 5px; overflow: hidden; flex-shrink: 0;
}
.qty-btn {
  width: 32px; height: 100%; min-height: 36px;
  background: none; border: none; cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.15s; line-height: 1;
}
.qty-btn.minus { color: oklch(35% 0.01 60); cursor: default; }
.qty-btn.minus.can-minus { color: oklch(70% 0.012 70); cursor: pointer; }
.qty-btn.plus { color: var(--amber); }
.qty-value {
  min-width: 24px; text-align: center;
  font-size: 14px; font-weight: 700;
  color: oklch(88% 0.012 70); font-variant-numeric: tabular-nums;
}
.add-btn {
  flex: 1; padding: 0 12px; min-height: 36px;
  background: oklch(22% 0.022 48);
  border: 1px solid oklch(26% 0.02 50);
  color: oklch(60% 0.015 65);
  border-radius: 5px; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; transition: all 0.22s;
  white-space: nowrap;
}
.product-card:hover .add-btn {
  background: var(--amber);
  border-color: var(--amber);
  color: oklch(12% 0.018 50);
}
.add-btn.added {
  background: var(--success) !important;
  border-color: var(--success) !important;
  color: #fff !important;
}

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.instagram-section { padding: 100px 0; background: var(--bg); overflow: hidden; }
.instagram-container { max-width: 1500px; margin: 0 auto; padding: 0 40px; }
.instagram-header { text-align: center; margin-bottom: 56px; }
.instagram-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px; font-weight: 600;
}
.instagram-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px); font-weight: 500; color: var(--cream);
}
.instagram-h2 em { color: var(--amber); font-style: italic; }
.instagram-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 40px;
}
.ig-item {
  aspect-ratio: 1; border-radius: 4px; overflow: hidden;
  cursor: pointer; position: relative;
}
.ig-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    45deg,
    oklch(20% 0.018 48), oklch(20% 0.018 48) 2px,
    oklch(22% 0.02 47) 2px, oklch(22% 0.02 47) 12px
  );
  display: flex; align-items: center; justify-content: center;
  color: oklch(45% 0.012 60); font-size: 11px; font-family: monospace;
  text-align: center; padding: 0 16px; line-height: 1.6;
}
.ig-hover {
  position: absolute; inset: 0;
  background: oklch(72% 0.12 60 / 0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.ig-item:hover .ig-hover { opacity: 1; }
.ig-heart { color: white; font-size: 28px; }
.instagram-cta { text-align: center; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); color: var(--text-muted);
  padding: 14px 32px; border-radius: var(--radius-sharp);
  text-decoration: none; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all var(--t-base); font-weight: 500;
}
.btn-ig:hover { border-color: var(--amber); color: var(--amber); }

/* ============================================================
   FOODSERVICE
   ============================================================ */
#foodservice {
  padding: 100px 0;
  background: oklch(10% 0.018 48);
  border-top: 1px solid var(--border);
}
.fs-container { max-width: 1480px; margin: 0 auto; padding: 0 24px; }
.fs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.fs-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; aspect-ratio: 1; max-width: 92%; }
.fs-img-cell { border-radius: 6px; overflow: hidden; background: oklch(20% 0.02 48); }
.fs-img-placeholder {
  width: 100%; height: 100%; min-height: 150px;
  background: repeating-linear-gradient(
    45deg,
    oklch(20% 0.018 48), oklch(20% 0.018 48) 2px,
    oklch(22% 0.02 47) 2px, oklch(22% 0.02 47) 12px
  );
  display: flex; align-items: center; justify-content: center;
  color: oklch(45% 0.012 60); font-size: 11px; font-family: monospace;
  text-align: center; padding: 0 16px; line-height: 1.6;
}
.fs-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px; font-weight: 600;
}
.fs-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px); font-weight: 600; color: var(--cream);
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.fs-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 28px; max-width: 520px;
}
.btn-fs {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--cream); color: oklch(12% 0.018 50);
  padding: 18px 40px; min-width: 280px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all var(--t-base);
}
.btn-fs:hover { background: var(--amber); color: oklch(12% 0.018 50); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 64px 40px 40px;
  background: oklch(9% 0.015 48);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { height: 48px; margin-bottom: 20px; display: block; }
.footer-tagline {
  color: var(--text-dim); font-size: 14px;
  line-height: 1.8; max-width: 300px; font-weight: 300;
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px; font-weight: 600;
}
.footer-link {
  display: block; color: var(--text-dim); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color var(--t-fast);
}
.footer-link:hover { color: var(--amber); }
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-dim); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color var(--t-fast);
}
.footer-contact-link:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: var(--text-dim); font-size: 12px; }
.footer-made { color: var(--amber); font-size: 12px; font-weight: 600; }

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
#whatsapp-btn {
  position: fixed; left: 20px; bottom: 20px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: oklch(60% 0.16 145);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px oklch(0% 0 0 / 0.3);
  transition: all var(--t-base); text-decoration: none;
}
#whatsapp-btn:hover {
  box-shadow: 0 8px 24px oklch(0% 0 0 / 0.4), 0 0 0 4px oklch(60% 0.16 145 / 0.18);
  transform: scale(1.06);
}
.whatsapp-tooltip {
  position: absolute; left: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: oklch(15% 0.02 48); border: 1px solid var(--border);
  color: var(--cream); padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 12px; letter-spacing: 0.04em; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all var(--t-fast);
  font-weight: 500;
}
#whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (hover: none) { .whatsapp-tooltip { display: none; } }

/* ============================================================
   EARLY CAPTURE MODAL
   ============================================================ */
#early-capture {
  position: fixed; inset: 0; z-index: 300;
  pointer-events: none; display: flex;
  flex-direction: column; justify-content: flex-end;
}
#early-capture.open { pointer-events: auto; }
.modal-overlay {
  position: fixed; inset: 0;
  background: oklch(0% 0 0 / 0.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.2s ease;
}
#early-capture.open .modal-overlay { opacity: 1; }
.modal-sheet {
  position: relative; z-index: 301;
  background: oklch(14% 0.02 48);
  border-top: 1px solid oklch(28% 0.02 50);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 36px;
  max-width: 480px; width: 100%; margin: 0 auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#early-capture.open .modal-sheet { transform: translateY(0); }
.modal-handle {
  width: 36px; height: 4px; background: oklch(35% 0.02 50);
  border-radius: 2px; margin: 0 auto 24px;
}
.modal-title {
  font-family: var(--font-serif); font-size: 22px;
  margin-bottom: 20px; color: var(--cream);
}
.modal-input {
  width: 100%; padding: 13px 14px;
  background: oklch(18% 0.02 48);
  border: 1px solid oklch(30% 0.02 50); border-radius: 6px;
  color: oklch(92% 0.012 70); font-size: 15px;
  font-family: var(--font-sans); outline: none; transition: border-color var(--t-fast);
}
.modal-input:focus { border-color: var(--amber); }
.modal-input + .modal-input { margin-top: 10px; }
.modal-error { color: var(--error); font-size: 12px; margin-top: 6px; display: none; }
.modal-error.visible { display: block; }
.btn-modal-confirm {
  margin-top: 16px; width: 100%; padding: 14px;
  background: var(--amber); color: oklch(12% 0.018 50);
  border: none; border-radius: 6px; cursor: pointer;
  font-size: 15px; font-weight: 700; transition: background var(--t-fast);
}
.btn-modal-confirm:hover { background: var(--amber-bright); }
.btn-modal-skip {
  margin-top: 8px; width: 100%; padding: 10px;
  background: none; border: none;
  color: var(--text-muted); cursor: pointer; font-size: 13px;
}
.btn-modal-cancel {
  margin-top: 4px; width: 100%; padding: 10px;
  background: none; border: none;
  color: var(--text-dim); cursor: pointer; font-size: 13px;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
#cart-drawer {
  position: fixed; inset: 0; z-index: 200;
  display: flex; justify-content: flex-end; align-items: stretch;
  pointer-events: none;
}
#cart-drawer.open { pointer-events: auto; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: oklch(0% 0 0 / 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.28s ease;
}
#cart-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: relative;
  width: min(380px, 90vw);
  background: oklch(13% 0.02 48);
  display: flex; flex-direction: column;
  border-radius: 16px 0 0 16px;
  box-shadow: -8px 0 48px oklch(0% 0 0 / 0.5);
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
#cart-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; gap: 4px;
  padding: 18px 20px 0; flex-shrink: 0;
}
.drawer-header-main {
  flex: 1; display: flex; flex-direction: column;
}
.drawer-summary {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 8px 20px 10px; flex-shrink: 0;
  background: oklch(10% 0.015 48);
  border-bottom: 1px solid oklch(20% 0.02 50);
  font-size: 12px; font-family: var(--font-sans);
}
.dsumm-items,
.dsumm-total  { color: var(--text-muted); }
.dsumm-total strong { color: var(--amber); font-weight: 600; }
.dsumm-sep    { color: var(--text-dim); }
.dsumm-delivery { color: var(--text-dim); }
.drawer-back-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 20px;
  padding: 4px 8px 4px 0; line-height: 1;
  display: none; align-items: center; flex-shrink: 0;
  transition: color var(--t-fast);
}
.drawer-back-btn.visible { display: flex; }
.drawer-back-btn:hover { color: var(--text); }
.drawer-title {
  font-family: var(--font-serif); font-size: 22px;
  color: var(--cream); font-weight: 500;
}
.drawer-close {
  width: 34px; height: 34px; flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 20px; line-height: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.drawer-close:hover { color: var(--text); border-color: var(--border-hover); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
  text-align: center; padding: 60px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 52px; margin-bottom: 4px; }
.cart-empty-title {
  font-family: var(--font-serif); font-size: 22px;
  color: var(--cream); font-weight: 500; margin: 0;
}
.cart-empty-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; max-width: 240px; margin: 0;
}
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid oklch(22% 0.02 50);
}
.cart-item-img {
  width: 52px; height: 52px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.cart-item-img-placeholder {
  width: 52px; height: 52px; border-radius: 8px;
  background: oklch(20% 0.02 48); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  color: var(--cream); font-size: 14px; font-weight: 500; margin-bottom: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cart-item-price { color: var(--amber); font-size: 13px; font-weight: 600; }
.cart-item-controls { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ci-btn {
  width: 30px; height: 30px;
  border: 1px solid oklch(30% 0.02 50);
  background: none; color: var(--text); cursor: pointer;
  border-radius: 50%; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast); font-family: var(--font-sans);
}
.ci-btn:hover { border-color: var(--amber); color: var(--amber); }
.ci-qty { color: var(--text); min-width: 20px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-fornada-info {
  margin-top: 16px;
  background: oklch(16% 0.02 48);
  border: 1px solid oklch(28% 0.02 50);
  border-radius: 10px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.cart-fornada-info .fi-icon { font-size: 18px; flex-shrink: 0; }
.cart-fornada-info p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.cart-fornada-info strong { color: var(--amber); font-weight: 600; }
.drawer-footer {
  padding: 14px 20px 24px; border-top: 1px solid oklch(26% 0.02 50);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.cart-total-label { color: var(--text-muted); font-size: 14px; }
.cart-total-value { color: var(--amber); font-weight: 700; font-size: 20px; }
.btn-goto-checkout {
  display: block; width: 100%; padding: 15px;
  background: var(--amber); color: oklch(12% 0.018 50);
  border: none; text-align: center; border-radius: 8px;
  font-weight: 700; font-size: 15px; font-family: var(--font-sans);
  letter-spacing: 0.04em; cursor: pointer;
  transition: background var(--t-fast), transform 0.12s;
}
.btn-goto-checkout:hover { background: var(--amber-bright); }
.btn-goto-checkout:active { transform: scale(0.97); }
.btn-clear-cart {
  display: block; width: 100%; padding: 10px;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 13px; margin-top: 6px;
  font-family: var(--font-sans); transition: color var(--t-fast);
}
.btn-clear-cart:hover { color: var(--text); }
.btn-ver-cardapio {
  margin-top: 8px; padding: 13px 32px;
  background: var(--amber); color: oklch(12% 0.018 50);
  border: none; border-radius: 8px; font-size: 14px;
  font-weight: 700; cursor: pointer; font-family: var(--font-sans);
  transition: background var(--t-fast), transform 0.12s;
}
.btn-ver-cardapio:hover { background: var(--amber-bright); }
.btn-ver-cardapio:active { transform: scale(0.97); }
.btn-whatsapp-order {
  display: block; width: 100%; padding: 15px;
  background: oklch(60% 0.16 145); color: #fff;
  text-decoration: none; text-align: center;
  border-radius: 6px; font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; transition: background var(--t-fast);
  border: none; cursor: pointer; font-family: var(--font-sans);
}
.btn-whatsapp-order:hover { background: oklch(55% 0.16 145); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .retirada-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 180px 1fr; gap: 32px; }
  .fs-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .fs-grid { grid-template-columns: 1fr; }
  #foodservice { padding: 80px 0; }
  .how-container { padding: 0 32px; }
  .menu-container { padding: 0 32px; }
  .instagram-container { padding: 0 32px; }
  .navbar-links { gap: 16px; }
  .nav-link { display: none; }
}

@media (max-width: 768px) {
  #hero { padding-left: clamp(24px, 8vw, 80px); }
  .steps-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; }
  .category-nav { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-h2 { font-size: 40px; }
  .how-container { padding: 0 24px; }
  .menu-container { padding: 0 24px; }
  .instagram-container { padding: 0 24px; }
  footer { padding: 48px 24px 32px; }
  .historia-grid { grid-template-columns: 1fr; }
  .historia-container { padding: 0 24px; }
  .historia-milestones { grid-template-columns: repeat(2, 1fr); }
  .historia-timeline-line { display: none; }
  .step-wrap:not(:last-child) .step-card::after { display: none; }
  .ss-sticky { top: 64px; height: calc(100vh - 64px); }
}

/* ============================================================
   STEP CONNECTORS (01–03) via pseudo-element
   ============================================================ */
.step-wrap:not(:last-child) .step-card::after {
  content: '›';
  position: absolute;
  right: -16px;
  top: calc(28px + 14px);
  color: oklch(35% 0.018 55);
  font-size: 20px;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .step-wrap:not(:last-child) .step-card::after { display: none; }
}

/* ============================================================
   HISTORIA SECTION
   ============================================================ */
#historia {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}
.historia-upper { padding: 120px 0 80px; }
.historia-container { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.historia-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  margin-bottom: 72px;
}
.historia-header { margin-bottom: 48px; }
.historia-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400; line-height: 1.1;
  color: var(--cream); margin-bottom: 24px;
}
.historia-h2 em { color: var(--amber); font-style: italic; }
.historia-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; font-weight: 300; max-width: 480px;
}
.historia-timeline { position: relative; padding-top: 32px; }
.historia-timeline-line {
  position: absolute; top: 40px; left: 8px; right: 0;
  height: 1px; background: var(--border);
}
.historia-milestones {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.milestone-dot-row { display: flex; align-items: center; margin-bottom: 20px; }
.milestone-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--bg);
  outline: 1px solid var(--amber);
  flex-shrink: 0;
}
.milestone-year {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--amber); margin-left: 12px;
}
.milestone-title {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 500; color: var(--cream); margin-bottom: 8px;
}
.milestone-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.historia-right-visual {
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
  background: repeating-linear-gradient(
    45deg,
    oklch(20% 0.018 48), oklch(20% 0.018 48) 2px,
    oklch(22% 0.02 47) 2px, oklch(22% 0.02 47) 12px
  );
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 13px; font-family: monospace;
  border: 1px solid var(--border);
}

/* ============================================================
   STORY SCROLLER
   ============================================================ */
#story-scroller { position: relative; }
.ss-sticky {
  position: sticky; top: 104px;
  height: calc(100vh - 104px);
  overflow: hidden;
  background: var(--bg-deep);
}
.ss-progress-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--bg2); z-index: 10;
}
.ss-fill { height: 100%; width: 0%; background: var(--amber); transition: width 0.05s linear; }
.ss-counter {
  position: absolute; top: 24px; right: 24px; z-index: 10;
  font-family: var(--font-serif); font-size: 13px;
  color: var(--text-dim); font-style: italic; pointer-events: none;
}
.ss-track { display: flex; height: 100%; will-change: transform; }
.ss-slide { height: 100%; position: relative; overflow: hidden; }
.ss-slide-emoji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(80px, 12vw, 140px); opacity: 0.18;
  user-select: none; pointer-events: none;
}
.ss-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0% 0 0 / 0.75) 0%, oklch(0% 0 0 / 0.2) 60%, transparent 100%);
}
.ss-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 5vw, 64px);
  padding-bottom: clamp(56px, 6vh, 80px);
}
.ss-year {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
}
.ss-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400; line-height: 1.1;
  color: var(--cream); margin-bottom: 16px; max-width: 640px;
}
.ss-desc {
  font-size: clamp(14px, 1.2vw, 18px); color: var(--text-muted);
  line-height: 1.65; font-weight: 300; max-width: 540px;
}
.ss-dots {
  position: absolute; bottom: 32px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px; z-index: 10;
}
.ss-dot {
  height: 8px; width: 8px; border-radius: var(--radius-pill);
  border: none; background: var(--border); cursor: pointer; padding: 0;
  transition: width var(--t-base), background var(--t-base);
}
.ss-dot.active { width: 24px; background: var(--amber); }

/* ============================================================
   DRAWER — GREETING & TABS
   ============================================================ */
.drawer-greeting {
  font-size: 13px; color: var(--text-muted);
  margin-top: 4px; font-weight: 300;
}
.drawer-tabs {
  display: flex;
  border-bottom: 1px solid oklch(26% 0.02 50);
  padding: 0 20px; flex-shrink: 0;
  margin-top: 12px;
}
.drawer-tab {
  flex: 1; padding: 12px 0; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: var(--text-dim); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all var(--t-fast);
}
.drawer-tab.active { color: var(--amber); border-bottom-color: var(--amber); }
.drawer-tab:hover:not(.active) { color: var(--text-muted); }

/* ============================================================
   ORDER NOTE BOX
   ============================================================ */
.order-note-box {
  margin-top: 20px;
  background: oklch(18% 0.022 52);
  border: 1px solid oklch(30% 0.025 55);
  border-radius: var(--radius-card);
  padding: 16px;
}
.order-note-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--amber); margin-bottom: 10px; font-weight: 600;
}
.order-note-input {
  width: 100%; background: none; border: none;
  color: var(--text); font-size: 13px; font-family: var(--font-sans);
  line-height: 1.6; resize: none; outline: none;
}
.order-note-input::placeholder { color: oklch(38% 0.01 60); }

/* ============================================================
   CHECKOUT FORM
   ============================================================ */
.checkout-form { padding: 4px 0; }
.checkout-section-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-dim); margin-bottom: 10px; font-weight: 600;
}
.checkout-input {
  width: 100%; padding: 12px 14px; margin-bottom: 10px;
  background: oklch(18% 0.02 48);
  border: 1px solid oklch(30% 0.02 50); border-radius: 6px;
  color: oklch(92% 0.012 70); font-size: 14px; font-family: var(--font-sans);
  outline: none; transition: border-color var(--t-fast); display: block;
}
.checkout-input:focus { border-color: var(--amber); }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: oklch(16% 0.02 48);
  border: 1px solid oklch(28% 0.02 50);
  border-radius: var(--radius-card); cursor: pointer;
  text-align: left; transition: all var(--t-fast); width: 100%;
}
.payment-opt.active {
  border-color: var(--amber);
  background: oklch(72% 0.12 60 / 0.06);
}
.payment-opt-icon-wrap {
  width: 36px; height: 36px; border-radius: 8px;
  background: oklch(20% 0.02 48);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.payment-opt-icon { font-size: 18px; line-height: 1; }
.payment-opt-title { color: var(--cream); font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.payment-opt-desc { color: var(--text-dim); font-size: 11px; }
.payment-opt-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid oklch(35% 0.02 50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--t-fast);
}
.payment-opt.active .payment-opt-radio { border-color: var(--amber); background: var(--amber); }
.payment-opt-radio-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(12% 0.018 50);
  opacity: 0; transition: opacity var(--t-fast);
}
.payment-opt.active .payment-opt-radio-dot { opacity: 1; }
.checkout-summary-box {
  background: oklch(16% 0.02 48);
  border: 1px solid oklch(26% 0.02 50);
  border-radius: 8px; overflow: hidden; margin-bottom: 20px;
}
.checkout-summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid oklch(22% 0.02 50);
  font-size: 13px; color: var(--text-muted);
}
.checkout-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
}
.checkout-summary-total-label { color: var(--cream); font-size: 14px; font-weight: 600; }
.checkout-summary-total-value { color: var(--amber); font-size: 18px; font-weight: 700; }
.card-tag-esgotado { border-color: var(--error) !important; color: var(--error) !important; }
.card-tag-poucas   { border-color: var(--amber) !important; color: var(--amber) !important; }
.add-btn[disabled] {
  background: oklch(18% 0.02 48) !important;
  border-color: oklch(22% 0.02 50) !important;
  color: var(--text-dim) !important;
  cursor: not-allowed !important; opacity: 1 !important;
}
.btn-primary:active { transform: scale(0.97); }
.btn-modal-confirm:active { transform: scale(0.97); }
.reveal-wrap { transform: translateY(24px); }
.reveal-wrap.visible { transform: translateY(0); }

/* ============================================================
   DRAWER STATE VIEWS (loading / pix / success / error)
   ============================================================ */
.drawer-state-view {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 48px 24px; min-height: 280px;
}
.drawer-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid oklch(26% 0.02 50);
  border-top-color: var(--amber);
  animation: spin 0.8s linear infinite;
  margin-bottom: 20px;
}
.drawer-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: oklch(60% 0.16 145 / 0.12);
  border: 2px solid oklch(60% 0.16 145 / 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--success);
  margin-bottom: 20px;
}
.drawer-error-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: oklch(60% 0.12 25 / 0.12);
  border: 2px solid oklch(60% 0.12 25 / 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--error);
  margin-bottom: 20px;
}
.pix-icon {
  font-size: 48px; margin-bottom: 16px; line-height: 1;
}
img.pix-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 1;
  filter: none;
}
img.pix-icon-pending {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(50,188,173,0.35));
}
.checkout-info {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.85;
  color: var(--text-muted);
}
.checkout-security {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.7;
  color: var(--text-muted);
}
.drawer-state-title {
  font-family: var(--font-serif); font-size: 22px;
  color: var(--cream); font-weight: 500; margin-bottom: 12px;
}
.drawer-state-text {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 8px; max-width: 280px;
}
.pix-hint { font-size: 12px; color: var(--text-dim); }
.btn-success-close {
  margin-top: 20px; background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 24px;
  color: var(--text-muted); cursor: pointer; font-size: 13px;
  transition: all var(--t-fast);
}
.btn-success-close:hover { border-color: var(--border-hover); color: var(--text); }

/* ============================================================
   PIX PENDING — QR code + copia e cola
   ============================================================ */
.pix-pending-view { padding: 28px 20px; }
.pix-qr-img {
  width: 180px; height: 180px; border-radius: var(--radius-card);
  border: 2px solid oklch(28% 0.02 50); margin-bottom: 16px;
  image-rendering: pixelated;
}
.pix-copia-wrap {
  width: 100%; margin: 16px 0 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.pix-copia-code {
  width: 100%; padding: 10px 14px;
  background: oklch(16% 0.02 48); border: 1px solid oklch(28% 0.02 50);
  border-radius: var(--radius-sm); font-size: 11px; color: var(--text-muted);
  font-family: monospace; word-break: break-all; text-align: left;
}
.btn-copy-pix {
  width: 100%; padding: 11px; background: oklch(20% 0.02 48);
  border: 1px solid oklch(32% 0.025 55); border-radius: var(--radius-sm);
  color: var(--amber); font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  font-family: var(--font-sans);
}
.btn-copy-pix:hover { background: oklch(24% 0.025 50); border-color: var(--amber); }

/* ============================================================
   ERROR — ações de fallback (cartão recusado)
   ============================================================ */
.error-actions {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; margin-top: 20px;
}
.btn-error-action {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font-sans); transition: all var(--t-fast);
}
.btn-error-retry {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-error-retry:hover { border-color: var(--border-hover); color: var(--text); }
.btn-error-pix {
  background: oklch(20% 0.02 48); border: 1px solid oklch(34% 0.03 55);
  color: var(--amber);
}
.btn-error-pix:hover { background: oklch(24% 0.025 50); border-color: var(--amber); }
.btn-error-stripe {
  background: oklch(60% 0.16 145 / 0.1); border: 1px solid oklch(60% 0.16 145 / 0.35);
  color: var(--success);
}
.btn-error-stripe:hover { background: oklch(60% 0.16 145 / 0.18); }

/* ============================================================
   MP BRICKS — wrapper no drawer
   ============================================================ */
.mp-bricks-wrap {
  padding: 16px 4px;
}
.mp-bricks-title {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px; padding: 0 4px;
}
.mp-bricks-loading {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 0; gap: 12px;
}
#mp-bricks-container { width: 100%; min-height: 40px; background: transparent !important; }
.mp-wrapper {
  background: #0a0a0a;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.mp-wrapper iframe {
  background: transparent;
  border-radius: 8px;
  filter: brightness(0.95) contrast(1.05);
}
@media (max-width: 768px) {
  .mp-wrapper {
    padding: 12px;
  }
}
