@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --sand:     #DACEC2;
  --cream:    #E8CDB1;
  --terra:    #C18D72;
  --espresso: #5E3A27;
  --choco:    #5F2F17;
  --mocha:    #A67D63;
  --latte:    #C8AC90;
  --accent:   #E87722;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-ui:    'DM Sans', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(95,47,23,.08);
  --shadow:    0 4px 16px rgba(95,47,23,.10);
  --shadow-lg: 0 8px 32px rgba(95,47,23,.15);

  --header-h:  68px;
  --t:         .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--choco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── HEADER ─────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--espresso);
  display: flex; align-items: center; gap: 14px;
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.header-logo {
  font-family: var(--font-title);
  font-size: 1.35rem; font-weight: 600;
  color: var(--cream); white-space: nowrap; flex-shrink: 0;
}
.header-logo span { color: var(--terra); }
.header-search {
  flex: 1; max-width: 380px; position: relative;
}
.header-search input {
  width: 100%; padding: 9px 16px 9px 40px;
  border-radius: 100px;
  border: 1.5px solid rgba(193,141,114,.25);
  background: rgba(255,255,255,.08);
  color: var(--cream); font-size: .875rem; outline: none;
  transition: var(--t);
}
.header-search input::placeholder { color: var(--latte); }
.header-search input:focus { border-color: var(--terra); background: rgba(255,255,255,.13); }
.search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; stroke: var(--latte); pointer-events: none;
}
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-whatsapp {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px;
  background: #25D366; color: white;
  font-family: var(--font-ui); font-size: .82rem; font-weight: 500;
  transition: var(--t);
}
.btn-whatsapp:hover { background: #1fb758; }
.btn-whatsapp svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-cart {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); transition: var(--t);
}
.btn-cart:hover { background: rgba(255,255,255,.16); }
.btn-cart svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--accent); color: white;
  border-radius: 100px; font-size: .68rem; font-weight: 700;
  font-family: var(--font-ui);
  display: none; align-items: center; justify-content: center;
}
.cart-badge.show { display: flex; }

main { padding-top: var(--header-h); }

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--terra);
  padding: 80px 24px 72px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 620px; margin: 0 auto; }
.hero-eyebrow {
  font-family: var(--font-ui); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); opacity: .7; margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 600;
  color: var(--cream); line-height: 1.15; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 1rem; color: rgba(232,205,177,.85);
  max-width: 450px; margin: 0 auto 32px; line-height: 1.65;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  background: var(--accent); color: white;
  font-family: var(--font-ui); font-size: .92rem; font-weight: 600;
  box-shadow: 0 4px 18px rgba(232,119,34,.35); transition: var(--t);
}
.btn-primary:hover { background: #cf5f12; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(232,119,34,.45); }

/* ── FILTER BAR ──────────────────────────── */
.filter-bar {
  position: sticky; top: var(--header-h); z-index: 90;
  background: var(--espresso);
  padding: 0 24px;
  border-bottom: 1px solid rgba(193,141,114,.12);
}
.filter-bar-inner {
  display: flex; gap: 6px;
  overflow-x: auto; padding: 11px 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; padding: 6px 15px; border-radius: 100px;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 500;
  color: var(--latte); background: rgba(255,255,255,.07);
  border: 1.5px solid transparent; transition: var(--t); white-space: nowrap;
}
.filter-btn:hover { color: var(--cream); background: rgba(255,255,255,.12); }
.filter-btn.active { background: var(--accent); color: white; }

/* ── SECTIONS ────────────────────────────── */
.section {
  padding: 60px 24px;
  max-width: 1280px; margin: 0 auto;
}
.section-alt { background: var(--cream); }
.section-full { max-width: 100%; padding: 60px 24px; }
.section-full .section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 40px; text-align: center; }
.section-label {
  font-family: var(--font-ui); font-size: .75rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--mocha); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600;
  color: var(--choco); line-height: 1.2;
}
.section-subtitle {
  font-size: .95rem; color: var(--mocha); margin-top: 10px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ── FEATURED ────────────────────────────── */
.featured-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px;
}
.featured-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-card-thumb {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
}
.featured-card-body { padding: 20px; }
.featured-card-name {
  font-family: var(--font-title); font-size: 1.25rem; font-weight: 600;
  color: var(--choco); margin-bottom: 4px;
}
.featured-card-price { font-size: 1.05rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.featured-card-story { font-size: .85rem; color: var(--mocha); line-height: 1.55; font-style: italic; }

/* ── OBJECTIVES ──────────────────────────── */
.objectives-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px;
}
.objective-card {
  background: var(--espresso); border-radius: var(--radius-lg);
  padding: 28px 18px; text-align: center;
  cursor: pointer; transition: transform var(--t), background var(--t);
  border: 2px solid transparent;
}
.objective-card:hover { transform: translateY(-2px); background: #6e4430; }
.objective-card.active { background: var(--accent); }
.objective-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }
.objective-name { font-family: var(--font-ui); font-size: .83rem; font-weight: 600; color: var(--cream); line-height: 1.35; }

/* ── CATALOG ─────────────────────────────── */
.catalog-controls {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.catalog-info { font-family: var(--font-ui); font-size: .83rem; color: var(--mocha); }
.catalog-info strong { color: var(--choco); }
.btn-clear { font-family: var(--font-ui); font-size: .8rem; font-weight: 500; color: var(--accent); text-decoration: underline; }
.granel-note {
  background: rgba(193,141,114,.16); border: 1.5px solid var(--terra);
  border-radius: var(--radius); padding: 14px 18px;
  margin-bottom: 28px; font-size: .87rem; color: var(--choco);
  line-height: 1.6; display: flex; align-items: flex-start; gap: 12px;
}
.granel-note-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 1px; }
.granel-note strong { color: var(--espresso); }
.category-section { margin-bottom: 48px; scroll-margin-top: calc(var(--header-h) + 52px); }
.category-title {
  font-family: var(--font-title); font-size: 1.55rem; font-weight: 600;
  color: var(--choco); padding-bottom: 12px; margin-bottom: 18px;
  border-bottom: 2px solid var(--cream);
}
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 14px;
}

/* ── PRODUCT CARD ────────────────────────── */
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card.out-of-stock { opacity: .72; }
.product-thumb {
  /* quase-quadrado (10:9): fotos quadradas preenchem quase tudo e o card não vira "torre" */
  aspect-ratio: 10 / 9; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; flex-shrink: 0; overflow: hidden;
}
.product-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  /* contain = produto sempre inteiro, sem recorte */
  object-fit: contain; padding: 4px; box-sizing: border-box; display: block;
}
.product-badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge {
  display: inline-block; padding: 3px 8px; border-radius: 100px;
  font-family: var(--font-ui); font-size: .65rem; font-weight: 600; line-height: 1.4;
}
.badge-granel  { background: #e6f4e6; color: #2d6a2d; }
.badge-embalado { background: rgba(94,58,39,.1); color: var(--espresso); }
.badge-encomenda { background: #fef3e2; color: #b45309; }
.product-body {
  padding: 13px; flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.product-name {
  font-family: var(--font-title); font-size: 1rem; font-weight: 600;
  color: var(--choco); line-height: 1.3; flex: 1;
}
.product-price { font-size: 1rem; font-weight: 600; color: var(--accent); }
.product-unit { font-size: .72rem; font-weight: 400; color: var(--mocha); }
.qty-label { font-family: var(--font-ui); font-size: .72rem; color: var(--mocha); }
.qty-granel-row { display: flex; align-items: center; gap: 8px; }
.qty-granel-row input[type="number"] {
  width: 78px; padding: 6px 8px; text-align: center;
  border: 1.5px solid var(--cream); border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--choco); outline: none; transition: var(--t);
}
.qty-granel-row input:focus { border-color: var(--terra); }
.qty-granel-row span { font-family: var(--font-ui); font-size: .75rem; color: var(--mocha); }
.qty-calc { font-family: var(--font-ui); font-size: .8rem; font-weight: 500; color: var(--mocha); }
.qty-stepper {
  display: flex; align-items: center; width: fit-content;
  border: 1.5px solid var(--cream); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-stepper button {
  width: 30px; height: 30px; background: var(--sand); color: var(--choco);
  font-size: 1.1rem; transition: var(--t); display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper span { width: 34px; text-align: center; font-size: .88rem; font-weight: 600; font-family: var(--font-ui); color: var(--choco); }
.btn-add {
  width: 100%; padding: 9px; border-radius: var(--radius-sm);
  background: var(--accent); color: white;
  font-family: var(--font-ui); font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--t);
}
.btn-add:hover:not(:disabled) { background: #cf5f12; transform: translateY(-1px); }
.btn-add:disabled { background: var(--cream); color: var(--mocha); cursor: not-allowed; transform: none; }

/* ── CART OVERLAY ────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 440px;
  background: white; z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--cream);
}
.cart-title { font-family: var(--font-title); font-size: 1.5rem; font-weight: 600; color: var(--choco); }
.btn-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.btn-close:hover { background: var(--cream); }
.btn-close svg { width: 17px; height: 17px; stroke: var(--choco); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 14px 22px; display: flex; flex-direction: column; gap: 10px; }
.cart-empty { text-align: center; padding: 48px 0; color: var(--mocha); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 10px; }
.cart-empty p { font-family: var(--font-ui); font-size: .88rem; }
.cart-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; background: var(--sand); border-radius: var(--radius-sm);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-title); font-size: .95rem; font-weight: 600; color: var(--choco); line-height: 1.3; margin-bottom: 3px; }
.cart-item-qty { font-family: var(--font-ui); font-size: .77rem; color: var(--mocha); }
.cart-item-price { font-weight: 600; color: var(--accent); font-size: .92rem; white-space: nowrap; }
.btn-remove {
  width: 26px; height: 26px; border-radius: 50%; color: var(--mocha);
  display: flex; align-items: center; justify-content: center; transition: var(--t); flex-shrink: 0;
}
.btn-remove:hover { background: #fee2e2; color: #ef4444; }
.btn-remove svg { width: 14px; height: 14px; stroke: currentColor; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--cream); background: white; }
.delivery-label { font-family: var(--font-ui); font-size: .83rem; font-weight: 600; color: var(--choco); margin-bottom: 10px; }
.delivery-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.delivery-opt {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 13px; border: 1.5px solid var(--cream); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--t);
}
.delivery-opt:hover { border-color: var(--terra); }
.delivery-opt.selected { border-color: var(--accent); background: #fff9f5; }
.delivery-opt input[type="radio"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.delivery-opt-name { font-family: var(--font-ui); font-size: .85rem; font-weight: 600; color: var(--choco); }
.delivery-opt-note { font-size: .73rem; color: var(--mocha); line-height: 1.4; margin-top: 2px; }
.cart-totals { margin-bottom: 14px; }
.total-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-ui); font-size: .85rem; color: var(--mocha); padding: 3px 0;
}
.total-row.final {
  font-size: 1.08rem; font-weight: 700; color: var(--choco);
  border-top: 1px solid var(--cream); padding-top: 10px; margin-top: 6px;
}
.btn-checkout-go {
  width: 100%; padding: 13px; background: var(--accent); color: white; border-radius: var(--radius);
  font-family: var(--font-ui); font-size: .95rem; font-weight: 700;
  letter-spacing: .03em; transition: var(--t);
}
.btn-checkout-go:hover:not(:disabled) { background: #cf5f12; transform: translateY(-1px); }
.btn-checkout-go:disabled { background: var(--cream); color: var(--mocha); cursor: not-allowed; transform: none; }

/* ── CHECKOUT MODAL ──────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg);
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  transform: scale(.96); transition: transform .3s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 0; margin-bottom: 16px;
}
.modal-title { font-family: var(--font-title); font-size: 1.55rem; font-weight: 600; color: var(--choco); }
.modal-body { padding: 0 24px 8px; }
.order-summary-box {
  background: var(--sand); border-radius: var(--radius-sm); padding: 13px;
  margin-bottom: 18px; font-family: var(--font-ui); font-size: .82rem; color: var(--mocha);
}
.order-summary-total { font-size: .95rem; font-weight: 700; color: var(--accent); margin-top: 7px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-family: var(--font-ui); font-size: .8rem; font-weight: 600; color: var(--choco); margin-bottom: 5px; }
.form-req { color: var(--accent); }
.form-input, .form-textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--cream); border-radius: var(--radius-sm);
  font-size: .88rem; color: var(--choco); outline: none; transition: var(--t); background: white;
}
.form-input:focus, .form-textarea:focus { border-color: var(--terra); }
.form-textarea { resize: vertical; min-height: 70px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--mocha); opacity: .65; }
#address-group { display: none; }
.modal-foot { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.btn-confirm {
  width: 100%; padding: 13px; background: var(--accent); color: white; border-radius: var(--radius);
  font-family: var(--font-ui); font-size: .95rem; font-weight: 700; transition: var(--t);
}
.btn-confirm:hover:not(:disabled) { background: #cf5f12; }
.btn-confirm:disabled { background: var(--cream); color: var(--mocha); cursor: not-allowed; }
.btn-back {
  width: 100%; padding: 11px; border: 1.5px solid var(--cream); border-radius: var(--radius);
  font-family: var(--font-ui); font-size: .88rem; color: var(--mocha); transition: var(--t);
}
.btn-back:hover { border-color: var(--terra); color: var(--choco); }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--espresso); padding: 48px 24px 28px; color: var(--latte); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 32px; }
.footer-brand h2 { font-family: var(--font-title); font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.footer-tagline { font-size: .85rem; font-style: italic; color: var(--terra); line-height: 1.55; }
.footer-col h3 { font-family: var(--font-ui); font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.footer-col p, .footer-col a { font-size: .85rem; color: var(--latte); line-height: 1.7; display: block; transition: var(--t); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 1280px; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid rgba(193,141,114,.18); text-align: center; font-size: .75rem; color: rgba(200,172,144,.45); font-family: var(--font-ui); }

/* ── PROMO BANNER ────────────────────────── */
.promo-banner {
  background: var(--espresso); padding: 15px 24px;
  border-bottom: 2px solid rgba(193,141,114,.2);
}
.promo-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
}
.promo-main { display: flex; align-items: center; gap: 14px; flex: 1 1 260px; min-width: 0; }
.promo-icon { font-size: 1.6rem; line-height: 1; }
.promo-headline {
  font-family: var(--font-ui); font-size: .95rem;
  color: var(--cream); line-height: 1.45; margin-bottom: 3px;
}
.promo-headline strong { color: white; }
.promo-valor { color: #4ade80; font-weight: 700; }
.promo-sub { font-family: var(--font-ui); font-size: .74rem; color: var(--latte); }
.promo-progress-wrap { flex: 1; min-width: 200px; max-width: 300px; }
.promo-progress-bar {
  height: 6px; background: rgba(255,255,255,.15);
  border-radius: 100px; overflow: hidden; margin-bottom: 6px;
}
.promo-progress-fill {
  height: 100%; width: 0%; border-radius: 100px;
  background: var(--terra); transition: width .4s ease, background .3s;
}
.promo-progress-fill.complete { background: #27AE60; }
.promo-progress-label {
  font-family: var(--font-ui); font-size: .74rem;
  color: var(--latte); text-align: right;
}
.promo-progress-label.complete { color: #4ade80; font-weight: 700; }
@media (max-width: 640px) {
  .promo-banner { padding: 14px 18px; }
  .promo-banner-inner { gap: 12px; }
  .promo-progress-wrap { min-width: 100%; max-width: 100%; }
  .promo-progress-label { text-align: left; }
}

/* ── CESTAS & PRESENTES ──────────────────── */
.cestas-section {
  background: linear-gradient(160deg, #fdf6ee 0%, #f5e8d0 100%);
  border-top: 1px solid var(--cream); border-bottom: 1px solid var(--cream);
  padding: 52px 24px;
}
.cestas-inner { max-width: 1280px; margin: 0 auto; }
.cestas-header { text-align: center; margin-bottom: 40px; }
.cestas-titulo {
  font-family: var(--font-title); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
  color: var(--choco); margin-bottom: 8px;
}
.cestas-subtitulo {
  font-family: var(--font-ui); font-size: .9rem; color: var(--mocha);
}
.cestas-subsecao {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px;
}
.cestas-prontas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-bottom: 44px;
}
.cesta-pronta-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.cesta-pronta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cesta-pronta-card.out-of-stock { opacity: .7; }
.cesta-pronta-thumb {
  height: 210px; overflow: hidden; position: relative;
  background: #f5e8d0; display: flex; align-items: center; justify-content: center;
}
.cesta-pronta-img { width: 100%; height: 100%; object-fit: contain; padding: 6px; box-sizing: border-box; display: block; }
.cesta-pronta-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.cesta-pronta-nome {
  font-family: var(--font-title); font-size: 1.25rem; font-weight: 700;
  color: var(--choco); margin-bottom: 12px;
}
.cesta-pronta-desc {
  font-family: var(--font-body); font-size: .83rem; color: var(--mocha);
  line-height: 1.75; margin-bottom: 18px; flex: 1;
  list-style: none; padding: 0;
}
.cesta-pronta-desc li::before { content: '·  '; color: var(--terra); font-weight: 700; }
.cesta-pronta-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.cesta-pronta-preco {
  font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: var(--accent);
}
.cesta-pronta-actions { display: flex; align-items: center; gap: 8px; }
.cestas-vazias-header { margin-bottom: 16px; }
.cestas-vazias-hint {
  font-family: var(--font-body); font-size: .82rem; color: var(--mocha);
  margin-top: 5px; max-width: 540px;
}
.cestas-vazias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
@media (max-width: 640px) {
  .cestas-section { padding: 40px 18px; }
  .cestas-prontas-grid { grid-template-columns: 1fr; gap: 16px; }
  .cesta-pronta-thumb { height: 200px; }
  .cestas-vazias-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── TOAST ───────────────────────────────── */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 600; display: flex; flex-direction: column; align-items: center; gap: 7px; pointer-events: none; }
.toast {
  background: var(--espresso); color: var(--cream); padding: 11px 20px; border-radius: 100px;
  font-family: var(--font-ui); font-size: .85rem; font-weight: 500;
  box-shadow: var(--shadow-lg); animation: toast-in .25s ease;
  max-width: 340px; text-align: center;
}
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── BOX TRADIÇÃO ────────────────────────── */
.btn-box-nav {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(232,119,34,.15); color: var(--cream);
  font-family: var(--font-ui); font-size: .8rem; font-weight: 500;
  border: 1px solid rgba(232,119,34,.35); white-space: nowrap;
  transition: var(--t);
}
.btn-box-nav:hover { background: rgba(232,119,34,.28); }

.box-section {
  background: var(--espresso);
  padding: 72px 24px;
}
.box-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.box-header { text-align: center; }
.box-header .section-label { color: var(--terra); }
.box-titulo {
  font-family: var(--font-title); font-size: 2.6rem; font-weight: 600;
  color: var(--cream); line-height: 1.15; margin: 8px 0 14px;
}
.box-subtitulo { color: var(--latte); font-size: .97rem; max-width: 480px; }

/* Tema do mês */
.box-mes-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(193,141,114,.25);
  border-radius: var(--radius-lg); padding: 24px 32px;
  text-align: center; width: 100%; max-width: 560px;
}
.box-mes-label { font-family: var(--font-ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--terra); margin-bottom: 6px; }
.box-mes-tema { font-family: var(--font-title); font-size: 1.55rem; font-weight: 600;
  color: var(--cream); margin-bottom: 8px; }
.box-mes-teaser { color: var(--latte); font-size: .9rem; font-style: italic; }

/* Planos */
.box-planos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%;
}
.box-plano {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(193,141,114,.2);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: border-color var(--t);
}
.box-plano:hover { border-color: rgba(193,141,114,.5); }
.box-plano-destaque {
  border-color: var(--accent); background: rgba(232,119,34,.08);
}
.box-plano-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-family: var(--font-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 100px;
}
.box-plano-nome {
  font-family: var(--font-title); font-size: 1.3rem; font-weight: 600; color: var(--cream);
}
.box-plano-preco {
  font-family: var(--font-title); font-size: 2rem; font-weight: 700; color: var(--cream);
  line-height: 1;
}
.box-plano-per { font-size: 1rem; font-weight: 400; color: var(--latte); margin-left: 2px; }
.box-plano-lista {
  list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.box-plano-lista li {
  font-size: .87rem; color: var(--latte); padding-left: 18px; position: relative;
}
.box-plano-lista li::before {
  content: '✓'; position: absolute; left: 0; color: var(--terra); font-weight: 700;
}
.btn-assinar {
  width: 100%; padding: 12px;
  background: var(--accent); color: white; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-size: .9rem; font-weight: 600;
  transition: var(--t);
}
.btn-assinar:hover { background: #cf5f12; }
.box-plano-destaque .btn-assinar { background: var(--accent); }

/* Como funciona */
.box-steps {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.box-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 140px; text-align: center;
}
.box-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(193,141,114,.2); border: 1.5px solid var(--terra);
  font-family: var(--font-title); font-size: 1.2rem; font-weight: 600; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.box-step p { font-size: .85rem; color: var(--latte); }

/* Responsivo planos */
@media (max-width: 580px) {
  .box-planos { grid-template-columns: 1fr; }
  .box-titulo { font-size: 2rem; }
  .btn-box-nav { display: none; }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 640px) {
  .header { padding: 0 14px; gap: 8px; }
  .header-search { display: none; }
  .btn-whatsapp .wz-label { display: none; }
  .btn-whatsapp { padding: 10px; }
  .hero { padding: 56px 18px 48px; }
  .section { padding: 48px 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .featured-grid { grid-template-columns: 1fr; }
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-sidebar { max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { max-width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 95vh; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .objectives-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1025px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-grid { grid-template-columns: repeat(4, 1fr); }
  .objectives-grid { grid-template-columns: repeat(5, 1fr); }
}
