/* ============================================================
   Borbulhas de Cacau — Stylesheet
   ============================================================ */

/* --- Variáveis ------------------------------------------- */
:root {
  --espresso:  #3e221a;
  --cocoa:     #5F2A18;
  --ruby:      #833120;
  --clay:      #A9523C;
  --gold:      #F8D39E;
  --cream:     #FAF5EC;
  --paper:     #F1E6D2;
  --line:      #E6D6BE;
  --ink:       #2A1510;
  --ink-muted: #6E5144;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 2px 12px rgba(42, 21, 16, 0.12);
  --shadow-lg: 0 8px 32px rgba(42, 21, 16, 0.2);
  --max-w: 1280px;
  --header-h: 68px;
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--espresso); }
body {
  font-family: var(--font-body);
  background: var(--espresso);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* --- Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 3.5rem 0; background: var(--cream); }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

/* --- Typography ----------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { max-width: 65ch; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--espresso); color: var(--gold); }
.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-secondary:hover { background: var(--espresso); color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(248,211,158,0.4);
}
.btn-ghost:hover { background: rgba(248,211,158,0.1); border-color: var(--gold); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.78rem; }

/* --- Header --------------------------------------------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--espresso);
  border-bottom: 1px solid rgba(248,211,158,0.12);
  transition: background 0.3s, transform 0.3s, padding 0.3s;
}
#site-header.scrolled { background: rgba(63,34,27,0.97); backdrop-filter: blur(8px); }
#site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  transition: padding 0.3s;
}
#site-header.scrolled .header-inner { padding: 0.5rem 0; }

.header-logo img { height: 52px; width: auto; transition: height 0.3s; }
#site-header.scrolled .header-logo img { height: 40px; }

.header-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.header-nav a:hover,
.header-nav a.active { opacity: 1; }
.nav-orders-link { opacity: 0.45 !important; font-size: 0.78rem !important; }
.nav-orders-link:hover { opacity: 0.75 !important; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0.35rem;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.icon-btn:hover { opacity: 1; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -3px; right: -5px;
  background: var(--ruby);
  color: var(--gold);
  border-radius: 50%;
  width: 17px; height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  pointer-events: none;
}
.cart-badge.hidden { display: none; }

.menu-btn { display: flex; }

/* Mobile menu */
.mobile-menu {
  background: var(--cocoa);
  border-top: 1px solid rgba(248,211,158,0.08);
}
.mobile-menu.hidden { display: none; }
.mobile-menu a {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(248,211,158,0.08);
  opacity: 0.9;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { opacity: 1; }
.mobile-menu .container { padding-top: 0.5rem; padding-bottom: 0.75rem; }

/* --- Footer --------------------------------------------- */
#site-footer {
  background: var(--espresso);
  color: var(--gold);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img { height: 120px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p  { font-size: 0.82rem; opacity: 0.7; max-width: 24ch; line-height: 1.6; }

@media (max-width: 639px) {
  .footer-grid { text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { max-width: none; }
  .footer-col ul { list-style: none; padding: 0; }
  .footer-bottom { align-items: center; text-align: center; }
  .footer-legal { text-align: center; }
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a { font-size: 0.85rem; opacity: 0.8; transition: opacity 0.15s; }
.footer-col a:hover { opacity: 1; }
.footer-col p { font-size: 0.82rem; opacity: 0.7; margin-bottom: 0.3rem; max-width: none; }

.footer-bottom {
  border-top: 1px solid rgba(248,211,158,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-size: 0.75rem; opacity: 0.55; max-width: none; }
.footer-legal { font-size: 0.72rem; opacity: 0.5; text-align: right; }

/* --- Product Card --------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 0.5rem; left: 0.5rem;
  background: var(--ruby);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
}

.product-card-body {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-card-sub  { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.product-card-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.product-card-detail { font-size: 0.72rem; color: var(--ink-muted); }
.product-card-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.product-card-price { font-size: 1rem; font-weight: 600; color: var(--ruby); }
.btn-add {
  background: var(--gold);
  color: var(--espresso);
  border: none;
  border-radius: var(--radius);
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-add:hover { background: var(--espresso); color: var(--gold); }
.btn-add:active { transform: scale(0.95); }
.btn-add.added { background: var(--cocoa); color: var(--gold); }

/* --- Catalog Page --------------------------------------- */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .catalog-layout { grid-template-columns: 220px 1fr; }
}

.catalog-col { position: relative; }

/* Mobile: oculto e fora do fluxo do grid */
.filter-panel {
  display: none;
}

/* Dropdown absoluto dentro da .catalog-col */
@media (max-width: 899px) {
  .filter-panel.open {
    display: block;
    position: absolute;
    top: 44px;   /* logo abaixo do botão toggle */
    left: 0; right: 0;
    z-index: 50;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    max-height: calc(75vh - 44px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Desktop: primeira coluna do grid, sticky e scrollável */
@media (min-width: 900px) {
  .filter-panel {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    max-height: calc(100vh - var(--header-h) - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  /* Scrollbar discreta no tom da marca */
  .filter-panel::-webkit-scrollbar { width: 4px; }
  .filter-panel::-webkit-scrollbar-track { background: transparent; }
  .filter-panel::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 2px;
  }
  .filter-panel::-webkit-scrollbar-thumb:hover { background: var(--ruby); }
  .filter-panel { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
}

/* Botão de toggle — apenas mobile */
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s;
  margin-bottom: 0.75rem;
}
.filter-toggle:hover { border-color: var(--ruby); }
.filter-toggle svg { transition: transform 0.2s; }
.filter-toggle.open svg { transform: rotate(180deg); }
@media (min-width: 900px) { .filter-toggle { display: none; } }
.filter-panel h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.filter-group { margin-bottom: 1.5rem; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.filter-option input[type="checkbox"] { accent-color: var(--ruby); }
.filter-option label { font-size: 0.82rem; color: var(--ink); cursor: pointer; }
.filter-option .count { font-size: 0.72rem; color: var(--ink-muted); margin-left: auto; }
.filter-range { display: flex; gap: 0.5rem; }
.filter-range input {
  width: 100%;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  background: white;
  color: var(--ink);
}
.tipo-row {
  display: flex;
  align-items: center;
}
.tipo-row .filter-option { flex: 1; }

.uva-toggle {
  background: none;
  border: none;
  color: var(--ruby);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.2rem;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.uva-toggle.open { transform: rotate(90deg); }

.uva-sub-list {
  display: none;
  padding: 0.25rem 0 0.4rem 1.1rem;
  border-left: 2px solid var(--ruby);
  margin: 0.1rem 0 0.25rem 0.6rem;
  animation: uvaSlideIn 0.18s ease;
}
@keyframes uvaSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.filter-option-uva { font-size: 0.82rem; }

.filter-clear {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
  width: 100%;
  transition: border-color 0.15s, color 0.15s;
}
.filter-clear:hover { border-color: var(--ruby); color: var(--ruby); }

.catalog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.catalog-header h1 { font-size: 2rem; }
.catalog-count { font-size: 0.8rem; color: var(--ink-muted); }
.sort-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  background: white;
  color: var(--ink);
}

/* --- Product Detail Page -------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
}
@media (min-width: 768px) { .product-detail { grid-template-columns: 1fr 1fr; } }

.product-detail-img {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.product-detail-img img { max-height: 360px; object-fit: contain; }

/* Gallery (múltiplas imagens) */
.product-gallery {
  aspect-ratio: unset;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}
.gallery-main-img {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.15s ease;
}
.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.product-gallery-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: white;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: none;
  padding: 4px;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--ruby); }

.product-detail-info { display: flex; flex-direction: column; gap: 1rem; }
.product-detail-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.product-detail-name { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.15; }
.product-detail-price { font-size: 1.75rem; font-weight: 700; color: var(--ruby); font-family: var(--font-display); }

.specs-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.specs-table td { padding: 0.4rem 0; vertical-align: top; }
.specs-table td:first-child { color: var(--ink-muted); width: 35%; }
.specs-table td:last-child { font-weight: 500; }
.specs-table tr { border-bottom: 1px solid var(--line); }
.specs-table tr:last-child { border-bottom: none; }

.add-to-cart-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 32px; height: 36px;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--paper); }
.qty-val {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  height: 36px;
  line-height: 36px;
}

.detail-section { margin-top: 0.5rem; }
.detail-section h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem; }
.detail-section p { font-size: 0.85rem; line-height: 1.65; color: var(--ink); max-width: none; }
.detail-section ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.detail-section li { font-size: 0.85rem; line-height: 1.65; color: var(--ink); padding-left: 1rem; position: relative; }
.detail-section li::before { content: '•'; position: absolute; left: 0; color: var(--ruby); }

.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.78rem; color: var(--ink-muted); align-items: center; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { opacity: 0.5; }

/* --- Cart Drawer ---------------------------------------- */
#cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--espresso);
  color: var(--gold);
}
.cart-header h2 { font-size: 1.1rem; font-weight: 600; }
.cart-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-clear-btn { background: none; border: none; color: rgba(248,211,158,0.6); font-size: 0.75rem; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.cart-clear-btn:hover { color: var(--gold); }
.cart-close { background: none; border: none; color: var(--gold); font-size: 1.4rem; padding: 0.1rem 0.3rem; opacity: 0.8; }
.cart-close:hover { opacity: 1; }

.cart-shipping-bar { padding: 0.75rem 1.25rem; background: var(--paper); border-bottom: 1px solid var(--line); font-size: 0.78rem; color: var(--ink-muted); }
.shipping-progress { height: 4px; background: var(--line); border-radius: 2px; margin-top: 0.4rem; }
.shipping-progress-fill { height: 100%; background: var(--ruby); border-radius: 2px; transition: width 0.4s; }

.cart-items { flex: 1; overflow-y: auto; padding: 0.75rem 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--ink-muted); font-size: 0.9rem; }

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 56px; height: 56px; object-fit: contain; background: var(--paper); border-radius: var(--radius); padding: 4px; }
.cart-item-info { display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.cart-item-sub  { font-size: 0.72rem; color: var(--ink-muted); }
.cart-item-qty  { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.3rem; }
.cart-item-qty button { background: none; border: 1px solid var(--line); border-radius: 2px; width: 22px; height: 22px; font-size: 0.9rem; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.cart-item-qty button:hover { border-color: var(--ruby); color: var(--ruby); }
.cart-item-qty span { font-size: 0.82rem; font-weight: 500; min-width: 16px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.cart-item-price { font-size: 0.88rem; font-weight: 600; color: var(--ruby); }
.cart-remove { background: none; border: none; font-size: 0.7rem; color: var(--ink-muted); text-decoration: underline; }
.cart-remove:hover { color: var(--ruby); }

.cart-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: white;
}
.cart-shipping-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--ink-muted); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.cart-total span:first-child { font-size: 0.85rem; color: var(--ink-muted); }
.cart-total strong { font-size: 1.1rem; color: var(--ink); }

/* --- Age Gate ------------------------------------------- */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(42, 21, 16, 0.96);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--espresso);
  border: 1px solid rgba(248,211,158,0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.age-gate-box img { height: 72px; margin: 0 auto 1.5rem; }
.age-gate-box h2 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.75rem; }
.age-gate-box p  { color: rgba(248,211,158,0.7); font-size: 0.85rem; margin: 0 auto 1.5rem; max-width: 30ch; }
.age-gate-btns { display: flex; gap: 0.75rem; justify-content: center; }
.age-gate-deny { font-size: 0.78rem; color: rgba(248,211,158,0.4); margin-top: 1rem; }

/* --- Mobile Buy Bar (produto) --------------------------- */
.mobile-buy-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--espresso);
  border-top: 1px solid rgba(248,211,158,0.18);
  padding: 0.75rem 1rem;
  align-items: center;
  gap: 0.75rem;
  z-index: 120;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.mobile-buy-bar.visible { transform: translateY(0); }
@media (max-width: 767px) { .mobile-buy-bar { display: flex; } }
.mobile-buy-info { flex: 1; display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.mobile-buy-name { font-size: 0.78rem; color: rgba(248,211,158,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-buy-price { font-size: 1rem; font-weight: 600; color: var(--gold); }
.mobile-buy-btn { flex-shrink: 0; white-space: nowrap; }

/* --- WhatsApp FAB --------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 150;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.32);
}
@media (max-width: 640px) {
  .whatsapp-fab { bottom: 5rem; }
}

/* --- Search Overlay ------------------------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.search-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 5, 0.6);
  backdrop-filter: blur(2px);
}
.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--espresso);
  border-bottom: 1px solid rgba(248,211,158,0.15);
  z-index: 1;
  transform: translateY(-8px);
  transition: transform 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
  padding: 1rem 0;
}
.search-overlay.active .search-panel {
  transform: translateY(0);
}
.search-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(248,211,158,0.25);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  background: rgba(248,211,158,0.05);
}
.search-icon-sm { flex-shrink: 0; color: rgba(248,211,158,0.45); }
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.search-input::placeholder { color: rgba(248,211,158,0.35); }
.search-close-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(248,211,158,0.45);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
  transition: color 0.15s;
}
.search-close-btn:hover { color: var(--gold); }

.search-results {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(248,211,158,0.08);
  text-decoration: none;
  transition: background 0.15s;
  border-radius: var(--radius);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(248,211,158,0.05); padding-left: 0.4rem; }
.search-result-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(248,211,158,0.06);
}
.search-result-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-result-img-placeholder { width: 100%; height: 100%; }
.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.search-result-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  width: fit-content;
}
.badge-vinhos      { background: rgba(131,49,32,0.45); color: var(--gold); }
.badge-chocolates  { background: rgba(95,42,24,0.55);  color: var(--gold); }
.badge-presentes   { background: rgba(248,211,158,0.2); color: var(--gold); }
.search-result-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-sub {
  font-size: 0.72rem;
  color: rgba(248,211,158,0.45);
}
.search-result-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clay);
  flex-shrink: 0;
  margin-left: auto;
}
.search-empty {
  padding: 0.75rem 0;
  font-size: 0.88rem;
  color: rgba(248,211,158,0.5);
}
.search-empty strong { color: rgba(248,211,158,0.75); font-weight: 500; }

/* --- Cookie Banner -------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  max-width: 520px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  z-index: 150;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner.hidden { display: none; }
@media (min-width: 640px) { #cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
.cookie-banner-text p { font-size: 0.78rem; opacity: 0.8; max-width: none; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* --- Hero Carousel -------------------------------------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(248,211,158,0.12);
  border: 1px solid rgba(248,211,158,0.3);
  color: var(--gold);
  font-size: 2rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.carousel-arrow:hover { background: rgba(248,211,158,0.25); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
@media (max-width: 640px) { .carousel-arrow { display: none; } }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(248,211,158,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.carousel-counter {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  font-family: var(--font-body);
}
.counter-current {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter-line {
  width: 2rem;
  height: 1px;
  background: rgba(248,211,158,0.35);
  display: block;
}
.counter-total {
  font-size: 0.8rem;
  color: rgba(248,211,158,0.45);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) {
  .carousel-counter { display: flex; }
  .carousel-dots    { display: none; }
}

/* Slide 2: caixas sobrepostas */
.hero-img-duplo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-box-back {
  max-height: 260px;
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.45));
  transform: translateX(28px) rotate(-6deg);
  z-index: 1;
  position: relative;
}
.hero-box-front {
  max-height: 300px;
  width: auto;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.5));
  transform: translateX(-28px) rotate(4deg);
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .hero-box-back  { max-height: 320px; }
  .hero-box-front { max-height: 380px; }
}

/* Gradientes por slide */
.hero-maes::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(160,60,40,0.4) 0%, transparent 60%) !important;
}
.hero-produto::before {
  background: radial-gradient(ellipse at 75% 40%, rgba(100,70,30,0.4) 0%, transparent 60%) !important;
}

/* --- Hero Section --------------------------------------- */
.hero {
  background: var(--espresso);
  min-height: clamp(520px, 75vh, 800px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(131,49,32,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 55fr 45fr; padding: 0; }
}
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248,211,158,0.6); margin-bottom: 0.75rem; }
.hero h1, .hero-slide h2 { color: var(--gold); margin-bottom: 1rem; }
.hero-slide h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.hero p { color: rgba(248,211,158,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.75rem; max-width: 42ch; }
@media (min-width: 1200px) {
  .hero h1, .hero-slide h2 { font-size: clamp(3rem, 4vw, 5rem); }
  .hero p  { font-size: 1.05rem; }
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-img { display: flex; justify-content: center; align-items: center; }
.hero-img img { max-height: 300px; width: auto; filter: drop-shadow(0 20px 48px rgba(0,0,0,0.4)); }
@media (min-width: 768px)  { .hero-img img { max-height: clamp(380px, 48vh, 520px); } }
@media (min-width: 1200px) { .hero-img img { max-height: clamp(460px, 52vh, 580px); } }

/* --- Stats --------------------------------------------- */
.stats { background: var(--cocoa); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label  { font-size: 0.72rem; color: rgba(248,211,158,0.6); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* --- Catalog Hero --------------------------------------- */
.catalog-hero {
  background: var(--espresso);
  padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid rgba(248,211,158,0.1);
  position: relative;
  overflow: hidden;
}
.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(131,49,32,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.catalog-hero .hero-eyebrow { margin-bottom: 0.5rem; }
.catalog-hero h1 {
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0;
  line-height: 1.15;
}

/* --- Section headings ----------------------------------- */
.section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading h2 { color: var(--ink); }
.section-heading p { font-size: 0.9rem; color: var(--ink-muted); margin: 0.5rem auto 0; }

/* --- Categories ----------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--cocoa);
  text-decoration: none;
}
.category-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(42,21,16,0.35);
}
.category-card-icon {
  position: relative;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  color: var(--cream);
  flex-shrink: 0;
}
.category-card-label {
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* --- Diferentials --------------------------------------- */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .diferenciais-grid { grid-template-columns: repeat(3, 1fr); } }

.diferencial-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
}
.diferencial-icon { margin-bottom: 0.75rem; color: var(--gold); }
.diferencial-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.diferencial-card p { font-size: 0.83rem; color: var(--ink-muted); margin: 0; max-width: none; }

/* --- Harmonização — bloco editorial --------------------- */
.harm-editorial {
  background: var(--espresso);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.harm-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(131,49,32,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.harm-editorial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.harm-editorial-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  line-height: 1.85;
  color: rgba(248, 211, 158, 0.88);
  max-width: none;
}
.harm-editorial-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: rgba(248, 211, 158, 0.35);
}
.harm-editorial-divider::before,
.harm-editorial-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(248, 211, 158, 0.2);
}
.harm-editorial-divider span {
  font-size: 0.75rem;
  color: rgba(248, 211, 158, 0.45);
  letter-spacing: 0.1em;
}

/* --- Harmonizacoes page --------------------------------- */
.harmonization-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .harmonization-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .harmonization-grid { grid-template-columns: repeat(3, 1fr); } }

.harm-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.harm-card-imgs {
  display: flex;
  height: 160px;
  background: var(--paper);
}
.harm-card-imgs img { width: 50%; object-fit: cover; }
.harm-card-body { padding: 1.25rem; }
.harm-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.harm-card-body p { font-size: 0.82rem; color: var(--ink-muted); max-width: none; }
.harm-why { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--ink-muted); }
.harm-why strong { color: var(--ruby); font-weight: 500; }

/* --- Entregas page -------------------------------------- */
.info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-box h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.info-box ul { display: flex; flex-direction: column; gap: 0.3rem; }
.info-box li { font-size: 0.85rem; color: var(--ink-muted); padding-left: 1rem; position: relative; }
.info-box li::before { content: '—'; position: absolute; left: 0; color: var(--clay); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .info-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Sobre page ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .partner-grid { grid-template-columns: 1fr 1fr; } }

.partner-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--ruby);
}
.partner-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.partner-card p  { font-size: 0.85rem; color: var(--ink-muted); max-width: none; }

/* --- Related products ----------------------------------- */
.related-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.related-section h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* --- Animations ----------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Pedidos -------------------------------------------- */
.orders-page { max-width: 720px; margin: 0 auto; }
.orders-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.orders-page-header h1 { margin: 0; }
.orders-clear-btn { font-size: 0.8rem; padding: 0.4rem 1rem; }
.orders-empty { color: var(--ink-muted); font-size: 0.95rem; }
.orders-empty a { color: var(--ruby); }
.order-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 1.25rem; }
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 1rem 1.25rem; background: var(--cream); gap: 1rem; flex-wrap: wrap; }
.order-id { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.order-date { display: block; font-size: 0.82rem; color: var(--ink-muted); margin-top: 0.2rem; }
.order-total { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ruby); white-space: nowrap; }
.order-items { padding: 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.order-item { display: flex; align-items: center; gap: 0.75rem; }
.order-item-img { width: 48px; height: 48px; object-fit: contain; border-radius: 4px; background: var(--cream); flex-shrink: 0; }
.order-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.order-item-name { font-size: 0.88rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-item-qty { font-size: 0.78rem; color: var(--ink-muted); }
.order-item-price { font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.order-card-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--line); }
.order-track-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 500; color: #25D366; text-decoration: none; opacity: 0.9; transition: opacity 0.15s; }
.order-track-btn:hover { opacity: 1; }

/* --- Header logo integration ---------------------------- */
/* Cor do header (#3e221a) corresponde ao fundo medido do icone-pequeno.png */

/* --- Section contrast ----------------------------------- */
/* Stats: sombra inferior marca a transição para as seções claras */
.stats {
  box-shadow: 0 4px 18px rgba(42, 21, 16, 0.28);
}

/* Diferencial cards: branco sobre cream cria ilhas com peso visual */
.diferencial-card {
  background: white;
  border: none;
  border-top: 3px solid var(--clay);
  box-shadow: 0 4px 20px rgba(42, 21, 16, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.diferencial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(42, 21, 16, 0.13);
}

/* Seção paper: inset shadow no topo separa do cream anterior */
.section-paper {
  background: var(--paper);
  box-shadow: inset 0 5px 0 var(--line);
}

/* Seção escura: linha dourada no topo marca a transição */
.section-dark {
  background: var(--espresso);
  border-top: 3px solid rgba(248, 211, 158, 0.28);
}

/* Entrega CTA: borda suave delimita a faixa */
.strip-paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* --- Utility -------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
