/* ===== Adega Garcia — Design System ===== */

:root{
  --maroon-950:#1F070C;
  --maroon-900:#2E0B12;
  --maroon-850:#3B0E17;
  --maroon-800:#4B1216;
  --maroon-700:#671A22;
  --maroon-600:#82232E;
  --maroon-500:#9E2E3A;

  --cream-050:#FBF7EF;
  --cream-100:#F5EDDC;
  --cream-200:#EFE3C9;

  --gold-300:#E7CFA0;
  --gold-400:#CDA35E;
  --gold-500:#B98A4E;
  --gold-600:#96692F;

  --ink:#241012;
  --ink-soft:#4A3134;
  --line:rgba(75,18,22,0.14);

  --white-noise-grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/></svg>");

  --shadow-sm: 0 2px 6px rgba(43,10,15,0.10), 0 1px 2px rgba(43,10,15,0.14);
  --shadow-md: 0 10px 30px rgba(43,10,15,0.16), 0 2px 8px rgba(43,10,15,0.12);
  --shadow-lg: 0 24px 60px rgba(43,10,15,0.24), 0 6px 18px rgba(43,10,15,0.16);
  --shadow-gold: 0 8px 24px rgba(185,138,78,0.28), 0 2px 6px rgba(185,138,78,0.22);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream-050);
  color:var(--ink);
  font-family:'Inter', system-ui, sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.display{
  font-family:'Playfair Display', serif;
  letter-spacing:-0.03em;
  color:var(--maroon-800);
  margin:0;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--gold-400); color:var(--maroon-950); }

div.container{ max-width:1240px; margin:0 auto; padding:0 20px; }
@media(min-width:768px){ div.container{ padding:0 32px; } }

.eyebrow{
  font-family:'Inter',sans-serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-600);
  display:inline-flex;
  align-items:center;
  gap:.6em;
}
.eyebrow::before{ content:''; width:28px; height:1px; background:var(--gold-500); display:inline-block; }

/* ================= GRAIN OVERLAY ================= */
.grain{ position:relative; }
.grain::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:var(--white-noise-grain);
  mix-blend-mode:overlay;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(46,11,18,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(231,207,160,0.18);
  transition:box-shadow .3s var(--ease-out);
}
.site-header.scrolled{ box-shadow:var(--shadow-md); }
.site-header .header-inner{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center;
  gap:16px; padding-top:12px; padding-bottom:12px;
  max-width:1080px; margin-left:auto; margin-right:auto;
}
.brand{ display:flex; align-items:center; gap:10px; justify-self:start; }
.brand img{ height:52px; width:auto; }
.brand-name{ display:none; }
nav.main-nav{ display:none; }
@media(min-width:960px){
  nav.main-nav{
    display:flex; gap:28px; align-items:center; justify-content:center; justify-self:center;
  }
  nav.main-nav a{
    color:var(--cream-100); font-size:.92rem; font-weight:600;
    letter-spacing:.02em; position:relative; padding:6px 2px;
  }
  nav.main-nav a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
    background:var(--gold-400); transition:width .3s var(--ease-out);
  }
  nav.main-nav a:hover::after, nav.main-nav a:focus-visible::after{ width:100%; }
  nav.main-nav a:focus-visible{ outline:2px solid var(--gold-400); outline-offset:4px; border-radius:4px; }
}
.header-actions{ display:flex; align-items:center; gap:10px; justify-self:end; }
.icon-btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  background:rgba(245,237,220,0.08); border:1px solid rgba(231,207,160,0.28);
  color:var(--cream-100); transition:transform .25s var(--ease-spring), background .25s var(--ease-out);
}
.icon-btn:hover{ background:rgba(245,237,220,0.16); transform:translateY(-2px); }
.icon-btn:active{ transform:translateY(0) scale(.94); }
.icon-btn:focus-visible{ outline:2px solid var(--gold-400); outline-offset:2px; }
.cart-badge{
  position:absolute; top:-4px; right:-4px; min-width:19px; height:19px; padding:0 4px;
  border-radius:999px; background:var(--gold-500); color:var(--maroon-950);
  font-size:.68rem; font-weight:800; display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 2px var(--maroon-900);
}
.hamburger{ display:inline-flex; }
@media(min-width:960px){ .hamburger{ display:none; } }

.mobile-menu{
  display:none; flex-direction:column; gap:2px; padding:10px 0 18px;
  border-top:1px solid rgba(231,207,160,0.18);
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  color:var(--cream-100); padding:12px 6px; font-weight:600; border-radius:8px;
}
.mobile-menu a:active{ background:rgba(245,237,220,0.08); }

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px; border-radius:999px; border:none; font-weight:700; font-size:.94rem;
  transition:transform .25s var(--ease-spring), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(180deg, var(--maroon-700), var(--maroon-800));
  color:var(--cream-050);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); background:linear-gradient(180deg, var(--maroon-600), var(--maroon-700)); }
.btn-primary:active{ transform:translateY(0); }
.btn-primary:focus-visible{ outline:2px solid var(--gold-400); outline-offset:3px; }

.btn-gold{
  background:linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color:var(--maroon-950);
  box-shadow:var(--shadow-gold);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(185,138,78,0.36); }
.btn-gold:active{ transform:translateY(0); }
.btn-gold:focus-visible{ outline:2px solid var(--maroon-800); outline-offset:3px; }

.btn-outline{
  background:transparent; color:var(--cream-050);
  border:1.5px solid rgba(245,237,220,0.55);
}
.btn-outline:hover{ background:rgba(245,237,220,0.1); transform:translateY(-2px); border-color:var(--gold-400); }
.btn-outline:focus-visible{ outline:2px solid var(--gold-400); outline-offset:3px; }

.btn-outline-dark{
  background:transparent; color:var(--maroon-800);
  border:1.5px solid var(--maroon-800);
}
.btn-outline-dark:hover{ background:var(--maroon-800); color:var(--cream-050); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.btn-outline-dark:focus-visible{ outline:2px solid var(--gold-500); outline-offset:3px; }

.btn-sm{ padding:9px 16px; font-size:.82rem; }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.45; cursor:not-allowed; transform:none !important; }

/* ================= HERO ================= */
.hero{
  position:relative; color:var(--cream-050); overflow:hidden;
}
.hero-desktop{ display:none; }
.hero-mobile{ display:block; }
@media(min-width:860px){
  .hero-desktop{ display:flex; }
  .hero-mobile{ display:none; }
}

.hero-mobile{
  position:relative; width:100%; aspect-ratio:768/1239; min-height:520px;
}
.hero-mobile .hero-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center top;
}
.hero-mobile .hero-textzone{
  position:absolute; left:0; right:0; bottom:0; height:32%;
  display:flex; flex-direction:column; justify-content:flex-end; gap:14px;
  padding:22px 20px 26px;
  background:linear-gradient(180deg, rgba(31,7,12,0) 0%, rgba(31,7,12,0.62) 28%, rgba(31,7,12,0.94) 100%);
}
.hero-mobile .hero-nav-overlay{
  position:absolute; top:0; left:0; right:0; padding:16px 20px;
  display:flex; align-items:center; justify-content:space-between;
  background:linear-gradient(180deg, rgba(31,7,12,0.75), rgba(31,7,12,0));
}

.hero-desktop{ position:relative; min-height:640px; align-items:center; justify-content:flex-end; }
.hero-desktop .hero-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%;
}
.hero-desktop .hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(280deg, rgba(31,7,12,0.92) 0%, rgba(31,7,12,0.72) 32%, rgba(31,7,12,0.28) 58%, rgba(31,7,12,0.05) 78%);
}
.hero-desktop .hero-content{ position:relative; z-index:2; padding:120px 0 80px; max-width:clamp(380px, 38vw, 580px); margin-left:auto; margin-right:0; text-align:left; }

.hero-title{
  font-size:clamp(2rem, 4.6vw, 3.4rem);
  line-height:1.06;
  color:var(--cream-050);
  text-shadow:0 2px 18px rgba(0,0,0,.35);
}
.hero-title em{ font-style:italic; color:var(--gold-300); }
.hero-sub{
  font-size:1.02rem; color:rgba(245,237,220,0.86); max-width:44ch; margin-top:14px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:18px; margin-top:34px; }
.hero-badge{ display:flex; align-items:center; gap:9px; color:var(--cream-100); font-size:.84rem; font-weight:600; }
.hero-badge svg{ color:var(--gold-400); flex-shrink:0; }

/* ================= SECTION HEADERS ================= */
.section{ padding:72px 0; }
.section-tight{ padding:48px 0; }
.section-head{ max-width:640px; margin-bottom:40px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size:clamp(1.7rem,3.2vw,2.4rem); margin-top:10px; }
.section-lede{ color:var(--ink-soft); margin-top:12px; font-size:1.02rem; }

/* ================= MODELOS 3D (model-viewer) — base reutilizável ================= */
.model-3d-stage{ position:relative; width:100%; max-width:420px; aspect-ratio:1/1.05; }
.model-3d-stage-sm{ max-width:220px; aspect-ratio:1/1; margin:0 auto; }

.model-3d-glow{
  position:absolute; inset:-12%; border-radius:50%; pointer-events:none; z-index:0;
  background:radial-gradient(circle at 50% 45%, rgba(185,138,78,0.32), rgba(103,26,34,0.16) 45%, transparent 72%);
  filter:blur(6px);
  animation:glow3dPulse 5s ease-in-out infinite;
}
@keyframes glow3dPulse{ 0%,100%{ opacity:.7; transform:scale(1); } 50%{ opacity:1; transform:scale(1.05); } }

model-viewer.model-3d-viewer{
  position:relative; z-index:1; width:100%; height:100%;
  --poster-color:transparent; background-color:transparent;
  animation:model3dFloat 6s ease-in-out infinite;
}
@keyframes model3dFloat{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(16px); } }
model-viewer.model-3d-viewer-sm{ animation-name:model3dFloatSm; }
@keyframes model3dFloatSm{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(8px); } }

/* ================= ESCOLHA POR PAÍS ================= */
.country-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:8px;
}
@media(min-width:720px){
  .country-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:28px; }
}
.country-card{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  width:100%; padding:18px 12px 20px; border-radius:var(--radius-md);
  background:rgba(245,237,220,0.04); border:1px solid rgba(231,207,160,0.16);
  transition:transform .35s var(--ease-spring), background .3s var(--ease-out), border-color .3s var(--ease-out);
}
@media(min-width:720px){ .country-card{ width:200px; padding:22px 16px 24px; } }
.country-card:hover{ transform:translateY(-6px); background:rgba(245,237,220,0.08); border-color:rgba(231,207,160,0.4); }
.country-card:active{ transform:translateY(-2px); }
.country-card:focus-visible{ outline:2px solid var(--gold-400); outline-offset:3px; }
.country-card-name{
  font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--cream-050); margin-top:8px; text-align:center;
}

.model-3d-badge{
  position:absolute; top:6px; left:50%; transform:translateX(-50%); z-index:2;
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(31,7,12,0.68); border:1px solid rgba(231,207,160,0.35);
  color:var(--gold-300); font-size:.68rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; backdrop-filter:blur(6px); white-space:nowrap;
}
.model-3d-badge svg{ animation:spin3dBadge 3.5s linear infinite; flex-shrink:0; }
@keyframes spin3dBadge{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

.ar-btn-custom{ position:absolute; bottom:12px; left:50%; transform:translateX(-50%); z-index:2; }

.model-3d-progress{
  display:block; width:60%; height:4px; margin:0 auto; border-radius:99px;
  background:rgba(245,237,220,0.18); overflow:hidden; position:relative; top:46%;
}
.model-3d-progress-bar{ height:100%; width:0%; background:var(--gold-400); transition:width .3s ease; }
model-viewer.model-3d-viewer[data-progress-hidden] .model-3d-progress{ display:none; }

/* ================= VÍDEO SHOWCASE ================= */
.video-showcase{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:16/9; background:var(--maroon-950);
  border:1px solid rgba(75,18,22,0.14);
  max-width:640px; margin:0 auto;
}
.video-showcase-el{ width:100%; height:100%; object-fit:cover; display:block; }
.video-showcase-scrim{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(31,7,12,0) 55%, rgba(31,7,12,0.6) 100%);
}
.bg-maroon{ background:var(--maroon-900); color:var(--cream-100); }
.bg-maroon .section-title, .bg-maroon h3{ color:var(--cream-050); }
.bg-maroon .eyebrow{ color:var(--gold-400); }
.bg-cream-alt{ background:var(--cream-100); }

/* ================= DEPTH / SURFACES ================= */
.surface{
  background:#fff; border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm); border:1px solid var(--line);
}
.surface-elevated{ box-shadow:var(--shadow-md); }
.surface-floating{ box-shadow:var(--shadow-lg); }

/* ================= CATEGORY CARDS ================= */
.cat-grid{ display:grid; gap:18px; grid-template-columns:repeat(2,1fr); }
@media(min-width:720px){ .cat-grid{ grid-template-columns:repeat(5,1fr); } }
.cat-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  background:linear-gradient(160deg, var(--maroon-800), var(--maroon-950));
  padding:26px 18px; min-height:150px; display:flex; flex-direction:column; justify-content:flex-end; gap:6px;
  box-shadow:var(--shadow-sm); transition:transform .35s var(--ease-spring), box-shadow .35s var(--ease-out);
  border:1px solid rgba(231,207,160,0.16);
}
.cat-card::before{
  content:''; position:absolute; inset:0; opacity:.5;
  background:radial-gradient(120px 120px at 85% -10%, rgba(231,207,160,0.35), transparent 70%);
}
.cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.cat-card .cat-icon{ color:var(--gold-300); margin-bottom:6px; }
.cat-card .cat-name{ color:var(--cream-050); font-family:'Playfair Display',serif; font-size:1.1rem; }
.cat-card .cat-count{ color:rgba(245,237,220,0.65); font-size:.78rem; }
.cat-card:focus-visible{ outline:2px solid var(--gold-400); outline-offset:3px; }

/* ================= PRODUCT CARDS ================= */
.product-grid{ display:grid; gap:22px; grid-template-columns:repeat(2,1fr); }
@media(min-width:640px){ .product-grid{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:1080px){ .product-grid{ grid-template-columns:repeat(4,1fr); } }

.product-card{
  perspective:1600px; transition:transform .35s var(--ease-spring);
}
.product-card:hover{ transform:translateY(-5px); }
.card-flip-inner{
  position:relative; width:100%; height:100%;
  transition:transform .6s cubic-bezier(0.34, 1.1, 0.4, 1);
  transform-style:preserve-3d;
}
@media(hover:hover){ .product-card:hover .card-flip-inner{ transform:rotateY(180deg); } }
.product-card.flipped .card-flip-inner{ transform:rotateY(180deg); }
.card-face{
  background:#fff; border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--line); box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
}
.product-card:hover .card-face{ box-shadow:var(--shadow-md); }
.card-face-front{ position:relative; width:100%; }
.card-face-back{
  position:absolute; inset:0; transform:rotateY(180deg);
  background:linear-gradient(165deg, var(--maroon-850), var(--maroon-950));
  padding:18px; gap:6px;
}
.flip-btn{
  position:absolute; top:10px; right:10px; z-index:3; width:28px; height:28px; border-radius:50%;
  background:rgba(31,7,12,0.65); color:var(--gold-300); border:1px solid rgba(231,207,160,0.35);
  display:flex; align-items:center; justify-content:center; backdrop-filter:blur(4px);
  transition:transform .25s var(--ease-spring), background .2s;
}
.flip-btn:hover{ background:rgba(31,7,12,0.85); transform:scale(1.08); }
.flip-btn:focus-visible{ outline:2px solid var(--gold-400); outline-offset:2px; }
.flip-btn-back{
  position:relative; top:auto; right:auto; align-self:flex-end; margin-bottom:4px;
  background:rgba(245,237,220,0.12); color:var(--cream-050); border-color:rgba(245,237,220,0.28);
}
.card-back-desc{ font-size:.82rem; color:rgba(245,237,220,0.88); line-height:1.55; margin:0; }
.card-back-pairing{ font-size:.78rem; color:rgba(245,237,220,0.72); margin:0; }
.card-back-pairing strong{ color:var(--gold-300); font-weight:700; }
.product-media{
  position:relative; aspect-ratio:3/4; overflow:hidden; background:var(--cream-100);
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease-out); }
.product-card:hover .product-media img{ transform:scale(1.05); }
.product-media .media-scrim{
  position:absolute; inset:0; background:linear-gradient(180deg, rgba(31,7,12,0) 55%, rgba(31,7,12,0.42) 100%);
}
.product-tag{
  position:absolute; top:10px; left:10px; z-index:2;
  background:rgba(31,7,12,0.82); color:var(--gold-300);
  font-size:.66rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 10px; border-radius:999px; border:1px solid rgba(231,207,160,0.4);
}
.product-tag.tag-real{ background:var(--gold-500); color:var(--maroon-950); border-color:transparent; }
.product-body{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-origin{ font-size:.72rem; color:var(--gold-600); font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.product-name{ font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--maroon-850); line-height:1.25; }
.product-meta{ font-size:.78rem; color:var(--ink-soft); }
.product-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:8px; padding-top:10px; }
.product-price{ font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--maroon-800); font-weight:700; }
.product-price small{ font-size:.65rem; font-weight:400; color:var(--ink-soft); display:block; font-family:'Inter',sans-serif; }
.add-btn{
  width:42px; height:42px; border-radius:50%; background:var(--maroon-800); color:var(--cream-050);
  display:inline-flex; align-items:center; justify-content:center; border:none; flex-shrink:0;
  transition:transform .25s var(--ease-spring), background .25s var(--ease-out);
}
.add-btn:hover{ background:var(--maroon-700); transform:scale(1.08) rotate(90deg); }
.add-btn:active{ transform:scale(.94) rotate(90deg); }
.add-btn:focus-visible{ outline:2px solid var(--gold-500); outline-offset:2px; }
.add-btn.pouring{ background:var(--maroon-950); }
.add-btn.pouring:hover{ transform:scale(1.08); }
.add-btn-icon{ position:relative; width:17px; height:19px; display:inline-flex; }
.add-btn-plus, .add-btn-glass{
  position:absolute; inset:0; transition:opacity .25s ease, transform .25s ease;
}
.add-btn-glass{ opacity:0; transform:scale(.7); }
.add-btn.pouring .add-btn-plus{ opacity:0; transform:scale(.6) rotate(25deg); }
.add-btn.pouring .add-btn-glass{ opacity:1; transform:scale(1); }
.glass-liquid{
  fill:var(--wine-fill, var(--gold-400));
  transform-origin:center bottom; transform:scaleY(0);
  transition:transform .55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.add-btn.pouring .glass-liquid{ transform:scaleY(1); }

/* Illustrated bottle placeholder for simulated products */
.bottle-illust{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:var(--bottle-bg, linear-gradient(160deg, var(--maroon-800), var(--maroon-950)));
}
.bottle-illust svg{ width:46%; height:auto; filter:drop-shadow(0 10px 16px rgba(0,0,0,.25)); }
.bottle-illust .sparkle{ position:absolute; border-radius:50%; background:rgba(255,255,255,.75); }

/* ================= FILTER SIDEBAR ================= */
.filters-layout{ display:grid; gap:32px; grid-template-columns:1fr; }
@media(min-width:960px){ .filters-layout{ grid-template-columns:270px 1fr; align-items:start; } }

.filter-panel{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px 20px; box-shadow:var(--shadow-sm);
}
.filter-group{ padding:16px 0; border-bottom:1px solid var(--line); }
.filter-group:first-child{ padding-top:0; }
.filter-group:last-child{ border-bottom:none; }
.filter-group h4{
  font-family:'Inter',sans-serif; font-size:.72rem; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; color:var(--maroon-800); margin-bottom:12px;
}
.filter-option{
  display:flex; align-items:center; gap:10px; padding:6px 2px; cursor:pointer;
  font-size:.88rem; color:var(--ink-soft); border-radius:6px;
}
.filter-option:hover{ color:var(--maroon-800); }
.filter-option input{ accent-color:var(--maroon-800); width:16px; height:16px; }
.filter-option .count{ margin-left:auto; font-size:.72rem; color:#9a8a8c; }
.filter-option input:focus-visible{ outline:2px solid var(--gold-500); outline-offset:2px; }

.filter-bar-mobile{
  display:flex; gap:10px; margin-bottom:18px; overflow-x:auto; padding-bottom:4px;
}
@media(min-width:960px){ .filter-bar-mobile{ display:none; } }
.chip{
  flex-shrink:0; padding:9px 16px; border-radius:999px; border:1px solid var(--maroon-800);
  color:var(--maroon-800); font-size:.82rem; font-weight:600; background:#fff;
}
.chip.active{ background:var(--maroon-800); color:#fff; }

.active-filters{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.active-pill{
  display:inline-flex; align-items:center; gap:6px; background:var(--maroon-800); color:#fff;
  padding:6px 8px 6px 12px; border-radius:999px; font-size:.76rem; font-weight:600;
}
.active-pill button{ background:rgba(255,255,255,.2); border:none; color:#fff; border-radius:50%; width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; font-size:.7rem; }
.active-pill button:hover{ background:rgba(255,255,255,.35); }

.toolbar{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.result-count{ font-size:.88rem; color:var(--ink-soft); }
select.sort-select{
  border:1px solid var(--line); border-radius:10px; padding:9px 12px; font-size:.86rem;
  background:#fff; color:var(--ink); font-weight:600;
}
select.sort-select:focus-visible{ outline:2px solid var(--gold-500); }

.empty-state{ text-align:center; padding:60px 20px; color:var(--ink-soft); }

/* ================= FAQ ================= */
.faq-item{
  border-bottom:1px solid var(--line); padding:6px 0;
}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; text-align:left; padding:18px 4px; font-family:'Playfair Display',serif;
  font-size:1.05rem; color:var(--maroon-850);
}
.faq-q .plus{
  flex-shrink:0; width:30px; height:30px; border-radius:50%; border:1.5px solid var(--maroon-800);
  display:inline-flex; align-items:center; justify-content:center; color:var(--maroon-800);
  transition:transform .35s var(--ease-spring), background .25s var(--ease-out);
}
.faq-item.open .faq-q .plus{ transform:rotate(135deg); background:var(--maroon-800); color:#fff; }
.faq-q:focus-visible{ outline:2px solid var(--gold-500); outline-offset:3px; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease-out); }
.faq-a-inner{ padding:0 40px 20px 4px; color:var(--ink-soft); font-size:.94rem; }

/* ================= CURIOSITIES ================= */
.curio-scroll{ display:flex; gap:18px; overflow-x:auto; padding-bottom:14px; scroll-snap-type:x mandatory; }
.curio-card{
  flex:0 0 auto; width:260px; scroll-snap-align:start;
  background:linear-gradient(165deg, var(--maroon-850), var(--maroon-950));
  color:var(--cream-100); border-radius:var(--radius-md); padding:26px 22px;
  box-shadow:var(--shadow-sm); position:relative; overflow:hidden; min-height:220px;
  display:flex; flex-direction:column; gap:12px;
}
.curio-card::before{ content:'”'; position:absolute; top:-30px; right:6px; font-size:7rem; color:rgba(231,207,160,0.12); font-family:'Playfair Display',serif; }
.curio-num{ font-family:'Playfair Display',serif; color:var(--gold-400); font-size:1.6rem; }
.curio-text{ font-size:.86rem; color:rgba(245,237,220,0.88); position:relative; z-index:1; }

/* ================= TESTIMONIALS ================= */
.testi-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
@media(min-width:768px){ .testi-grid{ grid-template-columns:repeat(3,1fr); } }
.testi-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:26px 22px;
  box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:14px;
}
.stars{ color:var(--gold-500); font-size:.9rem; letter-spacing:2px; }
.testi-quote{ color:var(--ink-soft); font-size:.92rem; flex:1; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:4px; }
.avatar-initials{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-weight:700; color:#fff; font-size:.95rem; flex-shrink:0;
}
.testi-name{ font-weight:700; font-size:.9rem; color:var(--maroon-850); }
.testi-role{ font-size:.76rem; color:var(--ink-soft); }

/* ================= CONTACT/MAP ================= */
.contact-grid{ display:grid; gap:28px; grid-template-columns:1fr; }
@media(min-width:900px){ .contact-grid{ grid-template-columns:1fr 1fr; } }
.map-frame{ border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }
.info-row{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--line); }
.info-row:last-child{ border-bottom:none; }
.info-row .ic{
  width:40px; height:40px; border-radius:12px; background:var(--maroon-900); color:var(--gold-300);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-row h5{ font-family:'Inter',sans-serif; font-weight:700; font-size:.86rem; color:var(--maroon-850); margin-bottom:2px; }
.info-row p{ font-size:.88rem; color:var(--ink-soft); margin:0; }

/* ================= FOOTER ================= */
.site-footer{ background:var(--maroon-950); color:rgba(245,237,220,0.72); padding:56px 0 24px; }
.footer-grid{ display:grid; gap:36px; grid-template-columns:1fr; margin-bottom:36px; }
@media(min-width:820px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; } }
.footer-col h5{ color:var(--cream-050); font-family:'Playfair Display',serif; font-size:1.02rem; margin-bottom:14px; }
.footer-col a{ display:block; padding:5px 0; font-size:.86rem; transition:color .2s; }
.footer-col a:hover{ color:var(--gold-400); }
.footer-bottom{ border-top:1px solid rgba(245,237,220,0.14); padding-top:20px; font-size:.78rem; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; }
.social-row{ display:flex; gap:10px; margin-top:12px; }
.age-notice{
  background:rgba(231,207,160,0.08); border:1px solid rgba(231,207,160,0.22); border-radius:12px;
  padding:12px 16px; font-size:.78rem; color:rgba(245,237,220,0.75); margin-bottom:28px; display:flex; gap:10px; align-items:flex-start;
}

/* ================= WHATSAPP FAB ================= */
.wa-fab{
  position:fixed; bottom:22px; right:22px; z-index:80;
  width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(37,211,102,0.45);
  transition:transform .3s var(--ease-spring);
}
.wa-fab:hover{ transform:scale(1.08); }
.wa-fab:active{ transform:scale(.96); }
.wa-fab:focus-visible{ outline:2px solid #fff; outline-offset:3px; }

/* ================= CART DRAWER ================= */
.overlay-scrim{
  position:fixed; inset:0; background:rgba(31,7,12,0.55); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .35s var(--ease-out); z-index:200;
}
.overlay-scrim.show{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px, 100vw);
  background:var(--cream-050); z-index:210; box-shadow:var(--shadow-lg);
  transform:translateX(100%); transition:transform .4s var(--ease-out);
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform:translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:20px 22px; border-bottom:1px solid var(--line); }
.cart-head h3{ font-size:1.2rem; }
.close-x{ width:36px; height:36px; border-radius:50%; border:1px solid var(--line); background:#fff; display:flex; align-items:center; justify-content:center; color:var(--maroon-800); }
.close-x:hover{ background:var(--cream-100); }
.cart-items{ flex:1; overflow-y:auto; padding:14px 22px; display:flex; flex-direction:column; gap:14px; }
.cart-item{ display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); }
.cart-item img{ width:60px; height:80px; object-fit:cover; border-radius:8px; flex-shrink:0; background:var(--cream-100); }
.cart-item-info{ flex:1; display:flex; flex-direction:column; gap:4px; }
.cart-item-info .nm{ font-family:'Playfair Display',serif; font-size:.92rem; color:var(--maroon-850); }
.qty-row{ display:flex; align-items:center; gap:10px; margin-top:4px; }
.qty-btn{ width:26px; height:26px; border-radius:50%; border:1px solid var(--line); background:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--maroon-800); }
.qty-btn:hover{ background:var(--cream-100); }
.remove-link{ font-size:.74rem; color:#a34; text-decoration:underline; margin-top:2px; align-self:flex-start; }
.cart-foot{ padding:18px 22px 24px; border-top:1px solid var(--line); }
.cart-sub-row{ display:flex; justify-content:space-between; font-size:.9rem; padding:4px 0; color:var(--ink-soft); }
.cart-sub-row.total{ font-weight:800; color:var(--maroon-850); font-size:1.05rem; padding-top:10px; border-top:1px dashed var(--line); margin-top:6px; }

/* ================= CHECKOUT MODAL ================= */
.checkout-modal{
  position:fixed; inset:0; z-index:220; display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease-out);
}
.checkout-modal.open{ opacity:1; pointer-events:auto; }
@media(min-width:720px){ .checkout-modal{ align-items:center; } }
.checkout-card{
  background:#fff; width:100%; max-width:640px; max-height:92vh; overflow-y:auto;
  border-radius:22px 22px 0 0; padding:26px 22px 32px;
  transform:translateY(24px); transition:transform .4s var(--ease-out);
}
@media(min-width:720px){ .checkout-card{ border-radius:var(--radius-lg); padding:34px; } }
.checkout-modal.open .checkout-card{ transform:translateY(0); }
.steps-row{ display:flex; gap:8px; margin-bottom:24px; }
.step-dot{ flex:1; height:4px; border-radius:99px; background:var(--line); }
.step-dot.active{ background:var(--maroon-800); }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid .full{ grid-column:1 / -1; }
.field label{ display:block; font-size:.78rem; font-weight:700; color:var(--maroon-800); margin-bottom:6px; }
.field input, .field select, .field textarea{
  width:100%; padding:11px 13px; border-radius:10px; border:1px solid var(--line);
  font-family:inherit; font-size:.92rem; background:var(--cream-050); color:var(--ink);
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--maroon-700); box-shadow:0 0 0 3px rgba(103,26,34,0.14);
}
.delivery-option{
  display:flex; align-items:center; gap:12px; border:1.5px solid var(--line); border-radius:12px;
  padding:12px 14px; cursor:pointer; margin-bottom:10px; transition:border-color .2s, background .2s;
}
.delivery-option.selected{ border-color:var(--maroon-800); background:rgba(75,18,22,0.05); }
.delivery-option input{ accent-color:var(--maroon-800); width:18px; height:18px; }
.delivery-option .do-name{ font-weight:700; font-size:.9rem; color:var(--maroon-850); }
.delivery-option .do-desc{ font-size:.76rem; color:var(--ink-soft); }
.delivery-option .do-price{ margin-left:auto; font-weight:800; color:var(--maroon-800); }

.pay-tabs{ display:flex; gap:10px; margin-bottom:16px; }
.pay-tab{
  flex:1; padding:12px; border-radius:12px; border:1.5px solid var(--line); text-align:center;
  font-weight:700; font-size:.86rem; color:var(--ink-soft); display:flex; flex-direction:column; align-items:center; gap:6px;
}
.pay-tab.active{ border-color:var(--maroon-800); color:var(--maroon-800); background:rgba(75,18,22,0.05); }
.pix-box{ background:var(--cream-100); border-radius:14px; padding:20px; text-align:center; }
.pix-key{ font-family:monospace; background:#fff; border:1px dashed var(--line); border-radius:10px; padding:10px 12px; font-size:.82rem; margin:12px 0; word-break:break-all; }

.success-check{
  width:78px; height:78px; border-radius:50%; background:var(--maroon-800); color:#fff;
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
  animation:pop .5s var(--ease-spring);
}
@keyframes pop{ from{ transform:scale(0); opacity:0; } to{ transform:scale(1); opacity:1; } }

/* ================= SCROLL REVEAL ================= */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *{ transition-delay:calc(var(--i,0) * 70ms); }

/* Toast */
.toast{
  position:fixed; bottom:24px; left:50%; transform:translate(-50%, 16px); z-index:300;
  background:var(--maroon-900); color:var(--cream-050); padding:14px 22px; border-radius:999px;
  box-shadow:var(--shadow-md); font-size:.86rem; font-weight:600; opacity:0; pointer-events:none;
  transition:opacity .3s var(--ease-out), transform .3s var(--ease-out); display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translate(-50%, 0); }

@media(prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}
