/* ============================================================
   SILLAGE ROYALE – Premium Arabic Perfumery
   Design: Dark luxury with gold accents + clean light mode
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --gold-shine: linear-gradient(135deg, #C9A84C 0%, #F0D080 40%, #C9A84C 60%, #8B6820 100%);
  --black: #0A0A0A;
  --off-black: #111111;
  --deep: #161616;
  --surface: #1A1A1A;
  --surface2: #222222;
  --border: rgba(201,168,76,0.15);
  --text: #F5F0E8;
  --text-muted: rgba(245,240,232,0.55);
  --text-dim: rgba(245,240,232,0.35);
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
}

.logo-wrap { flex-shrink: 0; max-width: 52px; }
.logo-img {
  height: 52px; width: auto; max-width: none;
  transition: transform var(--transition);
}
.logo-img:hover { transform: scale(1.03); }

.nav { display: flex; gap: 32px; margin-left: auto; }
.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 24px; }

.cart-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all var(--transition);
}
.cart-btn svg { width: 16px; height: 16px; }
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform var(--transition);
}
.cart-count.visible { transform: scale(1); }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 300px;
  padding: 16px 0;
}
.mobile-nav .nav-link {
  padding: 12px 24px;
  display: block;
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 80% 60%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--black);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 24px;
  animation: heroIn 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  font-weight: 600;
}

.hero-logo {
  width: min(380px, 80vw);
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 40px rgba(201,168,76,0.3));
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 1.05; font-weight: 300;
  margin-bottom: 28px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 0.9rem; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 40px;
  line-height: 1.8; font-weight: 300;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
}
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; }
.hero-cta svg { width: 16px; transition: transform var(--transition); }
.hero-cta:hover { color: var(--black); }
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-ornament {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header { text-align: center; margin-bottom: 48px; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 12px;
}
.section-title em {
  font-style: italic; color: var(--gold);
}

.section-sub {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 300; letter-spacing: 0.03em;
}

/* ============================
   FILTERS & SEARCH
   ============================ */
.filters-section {
  padding: 80px 0 0;
  scroll-margin-top: var(--header-h);
}

.filter-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}

.filters { display: flex; gap: 8px; }

.filter-btn {
  padding: 8px 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  border-radius: 2px; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.search-wrap {
  position: relative; flex: 1; max-width: 420px; min-width: 200px;
}
.search-wrap svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--text-dim);
}
.search-input {
  width: 100%; padding: 9px 16px 9px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text); font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: border-color var(--transition);
  outline: none;
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--text-dim); }

/* ============================
   PRODUCTS
   ============================ */
.products-section { padding: 32px 0 80px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Skeletons */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius);
  height: 420px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Estado vazio/erro/loading */
.estado {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 24px; text-align: center;
  color: var(--text-muted);
}

.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* PRODUCT CARD */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: cardIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(201,168,76,0.4);
}

/* Image carousel */
.card-images {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface2);
}

.card-images img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.8s ease;
  z-index: 2;
}

.card-images img.active {
  opacity: 1;
}

.product-card:hover .card-images img.active {
  transform: scale(1.04);
}

.img-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 2;
}
.img-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.img-dot.active { background: var(--gold); transform: scale(1.3); }

/* Badge oferta */
.oferta-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase;
}

.discount-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: #E53935;
  color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 8px; border-radius: 2px;
}

.card-body {
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; line-height: 1.2;
  color: var(--text);
}

.card-desc {
  font-size: 0.75rem; color: var(--text-muted);
  line-height: 1.5; font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }

.price-old {
  font-size: 0.75rem; color: var(--text-dim);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.3rem; font-weight: 700;
  background: var(--gold-shine);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-normal {
  font-size: 1.3rem; font-weight: 600; color: var(--text);
}

/* ── CARD FOOTER ACTIONS (stepper + add button) ─────────────── */
.card-footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity 0.28s ease,
              transform 0.28s ease,
              margin 0.28s ease;
  pointer-events: none;
}

.card-footer-actions.card-footer-visible,
.product-card:hover .card-footer-actions {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile: always visible on touch */
@media (hover: none) {
  .card-footer-actions {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.card-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-step-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  width: 28px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  padding: 0;
}
.card-step-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.card-add-btn {
  flex: 1;
  padding: 0 10px;
  height: 32px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  white-space: nowrap;
}
.card-add-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.card-add-btn span { position: relative; z-index: 1; }
.card-add-btn:hover { color: var(--black); }
.card-add-btn:hover::before { transform: scaleX(1); }

/* ── ESGOTADO ───────────────────────────────────────────────── */

.esgotado-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #555;
  padding: 4px 14px; border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.esgotado-label-lg {
  font-size: 1rem;
  padding: 8px 20px;
  margin-top: auto;
}

.product-card:has(.card-add-btn:disabled) .card-images img {
  filter: grayscale(40%);
  opacity: 0.85;
}

/* ============================
   ============================ */

.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.sobre-text .eyebrow {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}

.sobre-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.1;
  margin-bottom: 24px;
}

.sobre-text h2 em { font-style: italic; color: var(--gold); }

.sobre-text p {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.9;
  margin-bottom: 16px;
}

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 12px 28px;
  background: #25D366; color: #fff;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-btn svg { width: 18px; }
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }

.sobre-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.sobre-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color var(--transition), transform var(--transition);
}
.sobre-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.sobre-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--gold);
}

.sobre-card .lbl {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}

/* ============================
   CART SIDEBAR
   ============================ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.visible { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1101;
  width: min(400px, 100vw);
  background: var(--deep);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content:space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
}

.cart-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.1rem; cursor: pointer; padding: 4px;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--gold); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 16px;
}

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 60px 24px; text-align: center;
  color: var(--text-dim);
}
.cart-empty svg { width: 48px; opacity: 0.4; }
.cart-empty p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.cart-empty span { font-size: 0.8rem; }

/* Cart Item */
.cart-item {
  display: flex; gap: 12px; padding: 12px;
  border-bottom: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

.cart-item-img {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 6px; flex-shrink: 0;
  background: var(--surface2);
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.8rem; color: var(--gold); margin-top: 4px; }

.cart-item-controls {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-val { font-size: 0.85rem; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; font-size: 1rem;
  padding: 4px; margin-left: auto;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #ef4444; }

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 0.9rem;
}
.total-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold);
}

.checkout-btn {
  width: 100%; padding: 16px;
  background: #25D366; color: white;
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition), transform var(--transition);
}
.checkout-btn:hover { background: #1da851; transform: translateY(-2px); }

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 0.9rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.modal-body {
  display: grid; grid-template-columns: 1fr 1fr;
}

.modal-gallery {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  aspect-ratio: 1;
  background: var(--surface2);
}
.modal-gallery img:not(.modal-blur-bg) {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}
.modal-gallery img.active:not(.modal-blur-bg) { opacity: 1; }

.modal-blur-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.7) saturate(1.2);
  transform: scale(1.1);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.modal-blur-bg.active { opacity: 1; }

.modal-thumbs {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.modal-thumb {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.2s;
}
.modal-thumb.active { background: var(--gold); transform: scale(1.4); }

.modal-prev, .modal-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(0,0,0,0.5); border: none; color: white;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.modal-prev:hover, .modal-next:hover { background: var(--gold); }
.modal-prev { left: 10px; }
.modal-next { right: 10px; }

.modal-info {
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.modal-badge { align-self: flex-start; }
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; line-height: 1.1;
}
.modal-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.modal-price { margin-top: 0; }
.modal-price .price-old { margin-bottom: 4px; }

.modal-add-btn {
  margin-top: auto;
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px;
  transition: all var(--transition);
}
.modal-add-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================
   TOAST
   ============================ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 500;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 60px 0 40px;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo { height: 60px; margin: 0 auto 16px; }
.footer-tagline { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.15em; margin-bottom: 24px; }
.footer-links { display: flex; gap: 32px; justify-content: center; margin-bottom: 24px; }
.footer-links a {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: var(--text-dim); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  /* Com o .nav oculto, o margin-left: auto precisa vir para o
     .header-actions para manter o carrinho colado à direita */
  .header-actions { margin-left: auto; }

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

  .modal-body { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; }
  .modal-info { padding: 24px; }

  .sobre-cards { grid-template-columns: 1fr 1fr; }

  .filter-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .search-wrap { max-width: 100%; min-width: 0; }
  .filter-bar-actions {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .filter-bar-actions::-webkit-scrollbar { display: none; }
  /* Todos os chips e botão nunca encolhem — o rail scroll empurra */
  .filter-chip,
  .filters-toggle-btn { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-title { font-size: 3rem; }

  /* Card compacto no mobile: imagem quadrada menor + info condensada */
  .product-card {
    flex-direction: column;
  }

  .card-images {
    aspect-ratio: 1 / 1;
  }

  .card-body {
    padding: 10px 10px 6px;
    gap: 4px;
  }

  .card-badges {
    gap: 4px;
    margin-bottom: 2px;
  }

  .card-badges .badge {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  .card-name {
    font-size: 1rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Esconder descrição no mobile — economiza muito espaço */
  .card-desc {
    display: none;
  }

  .card-price { margin-top: 4px; }

  .price-old { font-size: 0.65rem; }
  .price-current,
  .price-normal { font-size: 1rem; }

  
  .card-footer-actions {
    margin: 0 10px 10px;
    gap: 6px;
  }
  .card-step-btn { width: 24px; height: 28px; font-size: 0.9rem; }
  .card-step-num { font-size: 0.7rem; min-width: 18px; }
  .card-add-btn {
    height: 28px;
    padding: 0 6px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
}

/* ============================
   FILTROS AVANÇADOS
   ============================ */
.advanced-filters {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}



.filter-chip {
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.category-chip {
  padding: 7px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  opacity: 0.85;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  opacity: 1;
}

.filter-selects {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 8px 32px 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  min-width: 130px;
  transition: border-color var(--transition);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--gold);
  outline: none;
}

.filter-select option {
  background: var(--surface);
}

/* ── Slider de preço ── */
.price-range-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.price-range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price-range-values {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.price-range-sep { color: var(--text-dim); }

.price-slider-container {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

.slider-track {
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  border-radius: 2px;
  background: rgba(212, 175, 55, 0.2);
  pointer-events: none;
  z-index: 0;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  transition: transform 0.15s;
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.slider-min { z-index: 2; }
.slider-max { z-index: 1; }

/* ── Badges de gênero e categoria ── */
.card-badges,
.modal-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-genero {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.badge-masculino { border-color: #7aa3cc; color: #7aa3cc; background: rgba(122,163,204,0.1); }
.badge-feminino  { border-color: #cc7aa3; color: #cc7aa3; background: rgba(204,122,163,0.1); }
.badge-unissex   { border-color: #a37acc; color: #a37acc; background: rgba(163,122,204,0.1); }

.badge-categoria {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}

/* Linha de valor + botão i no modal */

/* ── Modal badges ── */
.modal-badges { margin-bottom: 10px; }
.modal-badges .badge { font-size: 0.72rem; padding: 4px 10px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .filters-row { flex-direction: column; align-items: stretch; }
  .filter-selects { justify-content: stretch; }
  .filter-select { flex: 1; min-width: 0; }
  .price-range-wrap { padding: 14px 16px; }
}

/* ============================
   FILTROS – BOTÃO & DRAWER
   ============================ */

.filter-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
}

.filters-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.filters-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
}

.filters-toggle-btn span,
.filters-toggle-btn svg { position: relative; z-index: 1; }

.filters-toggle-btn:hover { color: var(--black); }
.filters-toggle-btn:hover::before { transform: translateX(0); }

.filters-active-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background var(--transition), color var(--transition);
}

.filters-toggle-btn:hover .filters-active-count {
  background: var(--gold-dark);
  color: var(--black);
}

/* Overlay */
.filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.filters-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Drawer */
.filters-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 92vw);
  background: var(--deep);
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}

.filters-drawer.open {
  transform: translateX(0);
}

.filters-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.filters-drawer-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.filters-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.filters-drawer-close:hover { background: var(--surface2); color: var(--text); }

.filters-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.drawer-filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-select {
  min-width: 0;
  width: 100%;
}

/* Gender multi-select checkboxes */
.gender-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gender-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.gender-check-label input[type="checkbox"] {
  display: none;
}

.gender-check-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 40px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  transition: all var(--transition);
}

.gender-check-label input:checked + .gender-check-box {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.gender-check-label:hover .gender-check-box {
  border-color: rgba(201,168,76,0.5);
  color: var(--text);
}

/* Drawer footer */
.filters-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.filters-clear-btn {
  flex: 1;
  padding: 12px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.filters-clear-btn:hover { border-color: var(--text-muted); color: var(--text); }

.filters-apply-btn {
  flex: 2;
  padding: 12px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.filters-apply-btn:hover { background: var(--gold-light); }

/* ============================
   MODAL – SELETOR DE QUANTIDADE
   ============================ */

.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.modal-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-qty-btn {
  background: var(--surface2);
  border: none;
  color: var(--text);
  width: 38px; height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-qty-btn:hover { background: var(--gold); color: var(--black); }

.modal-qty-val {
  min-width: 42px;
  width: 42px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  border: none;
  outline: none;
  cursor: text;
  padding: 0;
  -moz-appearance: textfield;
}
.modal-qty-val::-webkit-outer-spin-button,
.modal-qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }
.modal-qty-val:focus {
  background: rgba(201,168,76,0.08);
  border-radius: 2px;
}

.card-step-num {
  min-width: 22px;
  width: 22px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: none;
  outline: none;
  cursor: text;
  padding: 0;
  -moz-appearance: textfield;
}
.card-step-num::-webkit-outer-spin-button,
.card-step-num::-webkit-inner-spin-button { -webkit-appearance: none; }
.card-step-num:focus {
  background: rgba(201,168,76,0.1);
  border-radius: 1px;
}

.modal-add-btn {
  flex: 1;
}

/* Price range in drawer */
.filters-drawer-body .price-range-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 480px) {
  .filter-bar-actions {
    width: 100%;
  }
  .filter-chips { justify-content: flex-start; }
  .category-chips { justify-content: flex-start; }
  .filters-toggle-btn {
    justify-content: center;
    padding: 7px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    gap: 5px;
    flex-shrink: 0;
    max-width: fit-content;
  }
  .filters-toggle-btn svg { width: 13px; height: 13px; }
  .modal-qty-row { flex-direction: column; align-items: stretch; }
  .modal-qty-control { justify-content: center; }
}

/* ============================
   MODAL – ANIMAÇÃO PREÇO   ============================ */

.modal-price-display {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Preço unitário saindo (fadeout + scale down) */
.modal-price-unit {
  transition: opacity 0.4s ease, transform 0.4s ease, font-size 0.4s ease;
  transform-origin: left center;
}

.modal-price-unit.price-fadeout {
  opacity: 0.25;
  transform: scale(0.85);
  font-size: 1.3rem !important;
}

/* Qty val pisca dourado ao atingir 6 */
@keyframes qtyGoldPulse {
  0%   { color: var(--gold-light); transform: scale(1.3); }
  60%  { color: var(--gold); transform: scale(1.1); }
  100% { color: var(--gold); transform: scale(1); }
}

.modal-qty-val.qty-milestone {
  animation: qtyGoldPulse 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

/* ============================
   ANIMAÇÕES   ============================ */

/* Preço normal sendo riscado ao atingir 6 unidades */
@keyframes strikethrough {
  0%   { text-decoration-color: transparent; opacity: 1; color: inherit; }
  40%  { text-decoration-color: #ef4444; }
  100% { text-decoration-color: #ef4444; opacity: 0.45; color: var(--text-muted); }
}

.modal-price-unit {
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* Caso onde só existe preço normal (sem old) — risca e fica menor */

/* Brilho de entrada — roda uma vez e para no estado final */

/* Flash no número da quantidade */
@keyframes qtyFlash {
  0%   { color: var(--gold); transform: scale(1);    }
  40%  { color: #fff;        transform: scale(1.35); }
  70%  { color: var(--gold); transform: scale(1.15); }
  100% { color: var(--gold); transform: scale(1);    }
}

/* ── POPUP OVERLAY BASE (decant e outros) ───────────────────── */
.atacado-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(6px);
}
.atacado-popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.atacado-popup {
  position: relative;
  background: var(--surface, #1a1410);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.atacado-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted, #999);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.atacado-popup-close:hover {
  color: var(--text, #f0e6d3);
}

/* ── POPUP DECANT ───────────────────────────────────────────── */
.decant-popup {
  max-width: 340px;
  width: calc(100vw - 32px);
  text-align: left;
  padding: 1.6rem 1.4rem 1.4rem;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.decant-popup-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.decant-popup-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.5rem;
  text-align: center;
}

.decant-popup-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0.25rem 0 0;
}

.decant-popup-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted, #a89880);
  margin: 0;
}

.decant-popup-body p strong {
  color: var(--text, #f0e6d3);
}

/* ── BOTÃO i DECANT NO MODAL ────────────────────────────────── */
.decant-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 0.58rem;
  font-style: italic;
  font-family: Georgia, serif;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.decant-info-btn:hover {
  opacity: 1;
  border-color: var(--gold);
}



/* ── Dica de atacado no carrinho ── */
.atacado-hint-msg {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #c8b46a;
  text-align: center;
  line-height: 1.5;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 6px;
  padding: 0.55rem 0.8rem;
  position: relative;
}
.atacado-hint-msg::before {
  content: '✦';
  margin-right: 0.35rem;
  font-size: 0.65rem;
  opacity: 0.7;
}
.atacado-hint-msg a {
  color: var(--gold, #d4af37);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
