/* ============================================================
   VÊNUS STORE — Stylesheet Principal
   Estética: Dark Luxury com tons dourados e roxo cósmico
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ─── VARIABLES ──────────────────────────── */
:root {
  --bg:          #08070e;
  --bg2:         #0f0e17;
  --bg3:         #16142a;
  --bg4:         #1e1b38;
  --bg5:         #262248;

  --gold:        #c9a96e;
  --gold-light:  #e0c98f;
  --gold-dark:   #a38548;
  --gold-glow:   rgba(201, 169, 110, .15);

  --purple:      #6c4f9e;
  --purple-light:#9b7fd4;
  --purple-dark: #3d2d61;

  --rose:        #c46b7a;
  --rose-light:  #e08e9b;

  --text:        #ede8e0;
  --text2:       #a09a92;
  --text3:       #6b665f;
  --text4:       #3d3a36;

  --border:      rgba(201, 169, 110, .1);
  --border2:     rgba(201, 169, 110, .2);

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', system-ui, sans-serif;

  --ease:        cubic-bezier(.16, 1, .3, 1);
  --ease-out:    cubic-bezier(.33, 1, .68, 1);
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }
img { max-width: 100%; display: block; }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── KEYFRAMES ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 193, 78, 0.479); }
  50%      { box-shadow: 0 0 40px rgba(201,169,110,.2); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.fade-up  { animation: fadeUp .8s var(--ease) both; }
.fade-in  { animation: fadeIn .6s var(--ease) both; }

/* ─── TOPBAR ─────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--purple-dark), var(--bg3), var(--purple-dark));
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.topbar-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.topbar-item {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 60px;
  color: var(--gold-light);
}
.topbar-sep { color: var(--gold-dark); }

/* ─── HEADER ─────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 14, .88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.header.scrolled { background: rgba(8, 7, 14, .96); }
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity .3s;
}
.logo:hover { opacity: .85; }
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border2);
  box-shadow: 0 0 20px rgba(201,169,110,.12);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-text span {
  font-weight: 300;
  color: var(--text2);
  font-size: 24px;
}

/* Nav */
.nav { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text2);
  cursor: pointer;
  position: relative;
  transition: color .3s;
  background: none;
  border: none;
  font-weight: 400;
  padding: 4px 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  transition: width .4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; gap: 12px; align-items: center; }
.icon-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text2);
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all .3s;
  position: relative;
  font-size: 18px;
}
.icon-btn:hover { color: var(--gold); border-color: var(--border2); background: var(--gold-glow); }
.cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  transform: scale(0);
  transition: transform .3s var(--ease);
}
.cart-badge.visible { transform: scale(1); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 24px; cursor: pointer;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(108,79,158,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201,169,110,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(196,107,122,.06) 0%, transparent 40%),
    var(--bg);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: .02;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 80px, var(--gold) 80px, var(--gold) 81px),
    repeating-linear-gradient(-45deg, transparent, transparent 80px, var(--purple) 80px, var(--purple) 81px);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .08;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--purple); top: 10%; left: -10%; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: 10%; right: -5%; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--rose); top: 50%; left: 60%; animation-delay: 5s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0.3rem 0.4rem 0.4rem 0.4rem;
}
.hero-logo-big {
  width: 255px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
  border: 2px solid var(--border2);
  box-shadow: 0 0 60px rgba(201,169,110,.15);
  animation: fadeUp .8s var(--ease) .1s both, glow 4s ease-in-out infinite;
}
.hero-badge {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border2);
  padding: 10px 28px;
  margin-bottom: 36px;
  background: rgba(201,169,110,.04);
  animation: fadeUp .8s var(--ease) .3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
  animation: fadeUp .8s var(--ease) .5s both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), #d3bc90, #e9dabd);
    background-size: 200% 200%;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: gradientShift 6s ease infinite; */
  font-weight: 400;
}
.hero-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  animation: fadeUp .8s var(--ease) .7s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .9s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text3);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp .8s var(--ease) 1.2s both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,.1));
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,169,110,.1);
}

.btn-sm { padding: 11px 28px; font-size: 10.5px; letter-spacing: 2px; }

.btn-cart {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-cart:hover { filter: brightness(1.15); }
.btn-cart-icon { flex-shrink: 0; display: block; }

/* ─── SECTION ────────────────────────────── */
.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  font-size: 10.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}
.section-desc {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

/* ─── FEATURES ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 52px 32px;
  text-align: center;
  transition: all .4s var(--ease);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-2px); }
.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
  position: relative;
}
.feature-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.7;
  position: relative;
}

/* ─── CATEGORY GRID ──────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,79,158,.06), rgba(201,169,110,.06));
  opacity: 0;
  transition: opacity .4s;
}
.cat-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  font-size: 30px;
  margin-bottom: 18px;
  display: block;
  transition: transform .4s var(--ease);
}
.cat-card:hover .cat-icon { transform: scale(1.15); }
.cat-name {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
}
.cat-count {
  font-size: 11px;
  color: var(--text3);
  margin-top: 8px;
}

/* ─── PRODUCT GRID ───────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.prod-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all .5s var(--ease);
  overflow: hidden;
  position: relative;
}
.prod-card:hover {
  border-color: rgba(201,169,110,.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 30px var(--gold-glow);
}

.prod-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.prod-img-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .5s var(--ease);
}
.prod-card:hover .prod-img-photo { transform: scale(1.06); }
.prod-img-circle {
  width: 55%; height: 55%;
  background: linear-gradient(135deg, var(--bg4), var(--bg5));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--text3);
  transition: all .6s var(--ease);
  position: relative;
  box-shadow: inset 0 0 40px rgba(108,79,158,.1);
}
.prod-img-circle::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all .5s var(--ease);
}
.prod-card:hover .prod-img-circle {
  transform: scale(1.06);
  box-shadow: inset 0 0 40px rgba(201,169,110,.1);
}
.prod-card:hover .prod-img-circle::after {
  border-color: var(--border2);
  inset: -22px;
}

.prod-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}
.prod-tag.new {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--text);
}
.prod-tag.esgotado {
  background: #3a3a3a;
  color: #888;
}
.prod-card--esgotado { opacity: .55; }
.prod-card--esgotado .btn-cart { background: #2a2a2a; color: #555; border-color: transparent; cursor: not-allowed; pointer-events: none; }

.prod-wishlist {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(8,7,14,.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text3);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .3s;
  font-size: 15px;
}
.prod-wishlist:hover { color: var(--rose); border-color: rgba(196,107,122,.3); }
.prod-wishlist.active { color: var(--rose); background: rgba(196,107,122,.15); border-color: var(--rose); }

.prod-info { padding: 24px; }
.prod-sku {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
  cursor: pointer;
  transition: color .3s;
}
.prod-name:hover { color: var(--gold); }
.prod-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  --webkit-box-orient: vertical;
  --webkit-line-clamp: 3;
  overflow: hidden;
}
.prod-material {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.prod-price {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  color: var(--gold);
}
.prod-price-old {
  font-size: 14px;
  color: var(--text3);
  text-decoration: line-through;
}
.prod-discount {
  font-size: 10px;
  color: var(--rose);
  font-weight: 600;
  background: rgba(196,107,122,.1);
  padding: 3px 8px;
  letter-spacing: .5px;
}

/* ─── FILTER BAR ─────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.filter-chip {
  padding: 11px 26px;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-body);
  font-weight: 400;
}
.filter-chip:hover { border-color: var(--gold-dark); color: var(--text); }
.filter-chip.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 500;
}

/* ─── PROMO BANNER ───────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--bg2), var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  padding: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,79,158,.08), transparent 65%);
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,.06), transparent 65%);
}
.promo-text { position: relative; z-index: 2; }
.promo-text h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 14px;
}
.promo-text h3 em { color: var(--gold-light); font-style: italic; }
.promo-text p { color: var(--text2); font-size: 14px; line-height: 1.7; max-width: 480px; }

/* ─── CART DRAWER ────────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: all .35s;
  backdrop-filter: blur(4px);
}
.overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}
.close-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text2); font-size: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s;
}
.close-btn:hover { color: var(--text); border-color: var(--border2); }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 32px; }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text3);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; display: block; opacity: .2; }

.cart-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  animation: slideRight .35s var(--ease);
}
.cart-item-thumb {
  width: 72px; height: 72px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text3);
  overflow: hidden;
}
.cart-item-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 400; margin-bottom: 3px; }
.cart-item-price { font-size: 14px; color: var(--gold); font-weight: 500; }
.cart-item-controls {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
}
.qty-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}
.qty-btn:hover { border-color: var(--gold-dark); }
.qty-val { font-size: 14px; font-weight: 500; min-width: 22px; text-align: center; }
.cart-item-remove {
  background: none; border: none;
  color: var(--text3); font-size: 11px;
  cursor: pointer; margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--rose); }

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.cart-line {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text2);
}
.cart-line.free { color: var(--gold); }
.cart-total {
  display: flex; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.cart-total span:last-child {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 26px;
}

/* ─── MODAL ──────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .25s;
  backdrop-filter: blur(6px);
}
.modal {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 600px;
  max-width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal.modal-enter { animation: scaleIn .35s var(--ease); }
.modal-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
}
.modal-body { padding: 32px; flex: 1; overflow-y: auto; }
.modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  flex-shrink: 0;
}

/* ─── FORMS ──────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-input::placeholder { color: var(--text3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  margin: 28px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.form-note { font-size: 12px; color: var(--text3); line-height: 1.6; }

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s;
}
.payment-opt:hover { border-color: var(--border2); }
.payment-opt.active { border-color: var(--gold); background: var(--gold-glow); }
.payment-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s;
}
.payment-opt.active .payment-radio { border-color: var(--gold); }
.payment-radio-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.payment-opt.active .payment-radio-inner { opacity: 1; }
.payment-label { font-size: 14px; font-weight: 400; }
.payment-sub { font-size: 11px; color: var(--text3); }

/* ─── PRODUCT DETAIL ─────────────────────── */
.detail-modal { width: 920px; max-width: 95vw; }
/* Desktop: name inside detail-info, header only has close button */
.detail-modal-header { justify-content: flex-end; }
.detail-modal-header .detail-modal-header-title { display: none; }
.detail-modal-body {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.detail-img {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  width: 45%;
  flex-shrink: 0;
}
.detail-img-fill {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
}
.detail-img-icon {
  font-size: 64px;
  color: var(--text3);
}
.detail-carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: #fff; border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 22px; line-height: 1;
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.detail-carousel-btn:disabled { opacity: .25; cursor: default; }
.detail-carousel-btn:not(:disabled):hover { background: rgba(0,0,0,.8); }
.detail-carousel-prev { left: 12px; }
.detail-carousel-next { right: 12px; }
.detail-carousel-dots {
  position: absolute; bottom: 14px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.detail-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s;
}
.detail-carousel-dot.active { background: #fff; }
.detail-info {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.detail-sku { font-size: 10px; letter-spacing: 3px; color: var(--text3); text-transform: uppercase; margin-bottom: 12px; }
.detail-name { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.detail-desc { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }
.detail-material { font-size: 12px; color: var(--text3); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.detail-price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.detail-price { font-family: var(--font-display); font-size: 38px; color: var(--gold); font-weight: 500; }
.detail-price-old { font-size: 16px; color: var(--text3); text-decoration: line-through; }
.detail-stock { font-size: 11px; color: var(--text3); margin-bottom: 24px; letter-spacing: 1px; }
.detail-stock.low { color: var(--rose); }
.detail-stock.esgotado { color: #555; }
.detail-actions { display: flex; gap: 12px; }
.detail-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border);
}
.detail-qty button {
  background: var(--bg3); border: none;
  color: var(--text);
  width: 48px; height: 50px;
  cursor: pointer; font-size: 18px;
  transition: background .2s;
}
.detail-qty button:hover { background: var(--bg4); }
.detail-qty span { padding: 0 22px; font-size: 16px; font-weight: 500; }

/* ─── SUCCESS ────────────────────────────── */
.success-screen { text-align: center; padding: 60px 40px; }
.success-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  color: var(--gold);
  animation: scaleIn .5s var(--ease);
  box-shadow: 0 0 40px var(--gold-glow);
}
.success-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
}
.success-msg { color: var(--text2); font-size: 14px; line-height: 1.9; max-width: 400px; margin: 0 auto; }
.success-code {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--gold);
}

/* ─── AGE GATE ───────────────────────────── */
.age-gate {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-gate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(108,79,158,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(201,169,110,.06) 0%, transparent 50%);
}
.age-inner {
  text-align: center;
  max-width: 440px;
  padding: 40px;
  position: relative;
  animation: scaleIn .7s var(--ease);
}
.age-logo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  border: 2px solid var(--border2);
  box-shadow: 0 0 50px rgba(201,169,110,.15);
}
.age-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.age-line { width: 60px; height: 1px; background: var(--gold); margin: 20px auto 24px; opacity: .4; }
.age-text { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 36px; }
.age-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SEARCH ─────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 150;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 130px;
  animation: fadeIn .2s;
  backdrop-filter: blur(6px);
}
.search-box {
  width: 620px;
  max-width: 92vw;
  background: var(--bg);
  border: 1px solid var(--border);
  animation: slideDown .3s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.search-input-row {
  display: flex; align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
}
.search-input-row .search-icon { color: var(--gold-dark); font-size: 20px; }
.search-input {
  flex: 1;
  padding: 22px 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  outline: none;
}
.search-input::placeholder { color: var(--text3); }
.search-results { max-height: 380px; overflow-y: auto; }
.search-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .2s;
}
.search-item:hover { background: var(--bg2); }
.search-item-thumb {
  width: 50px; height: 50px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text3);
}
.search-item-info { flex: 1; }
.search-item-name { font-size: 14px; margin-bottom: 3px; }
.search-item-price { font-size: 13px; color: var(--gold); }
.search-empty { padding: 40px 24px; text-align: center; color: var(--text3); font-size: 14px; }

/* ─── TOAST ──────────────────────────────── */
.toast {
  position: fixed;
  bottom: 36px; right: 36px;
  background: var(--bg3);
  border: 1px solid var(--gold-dark);
  padding: 16px 28px;
  display: flex; align-items: center; gap: 12px;
  z-index: 500;
  animation: slideDown .4s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.toast-icon { color: var(--gold); font-size: 18px; }
.toast-text { font-size: 13px; color: var(--text); font-weight: 400; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(108,79,158,.03), transparent);
  pointer-events: none;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border2);
}
.footer-brand .footer-logo span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.footer-brand p { color: var(--text3); font-size: 13px; line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-link {
  display: block;
  color: var(--text3);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color .3s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--text3);
}

/* ─── LOADING ────────────────────────────── */
.btn-spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 40px auto;
}

/* ─── PROD CARD — button alignment ──────────────────────── */
.prod-card {
  display: flex;
  flex-direction: column;
}
.prod-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.btn-cart {
  margin-top: auto;
}

.detail-subtotal {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .section { padding: 70px 24px; }
  .promo-banner { flex-direction: column; padding: 48px 32px; text-align: center; }
  .detail-modal-body { flex-direction: column; overflow-y: auto; }
  .detail-modal-body .detail-img { width: 100%; height: 260px; flex-shrink: 0; }
  .detail-modal-body .detail-info { padding: 20px; overflow-y: visible; }
  /* Mobile: name in modal-header, hide from detail-info */
  .detail-modal-header { justify-content: space-between; }
  .detail-modal-header .detail-modal-header-title { display: block; }
  .detail-modal-body .detail-info .detail-name { display: none; }
  .modal {
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    max-width: 100vw;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .modal-overlay {
    padding: 0;
    align-items: flex-start;
  }
  .modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg2);
  }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}
@media (max-width: 600px) {
  .hero { min-height: 80vh; }
  .logo-img { display: none; }
  .hero-content { padding: 20px; }
  .hero-logo-big {width: 152px;height: 150px;}
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }

  /* Produtos: 2 colunas com detalhes reduzidos */
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-info { padding: 12px 10px; }
  .prod-sku { display: none; }
  .prod-desc { display: none; }
  .prod-material { display: none; }
  .prod-name { font-size: 14px; margin-bottom: 4px; line-height: 1.25; }
  .prod-price { font-size: 20px; }
  .prod-price-old { font-size: 11px; }
  .prod-discount { font-size: 9px; padding: 2px 5px; }
  .prod-price-row { margin-bottom: 10px; gap: 6px; flex-wrap: wrap; }
  /* Botão adicionar: apenas ícone no mobile */
  .btn-cart-text { display: none; }
  .btn-cart { padding: 12px; justify-content: center; }
  .btn-cart-icon { width: 16px; height: 16px; }

  /* Features: 2 colunas com padding reduzido */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { padding: 28px 16px; }
  .feature-card:last-child:nth-child(odd) { grid-column: span 2; }
  .feature-title { font-size: 16px; }
  .feature-desc { font-size: 11.5px; }
  .feature-icon { font-size: 22px; margin-bottom: 12px; }

  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-header { margin-bottom: 48px; }
  .section { padding: 52px 16px; }

  /* Toast no mobile */
  .toast { bottom: 16px; right: 16px; left: 16px; }
}

/* ─── OPÇÕES DE PRODUTO (LOJA) ───────────── */
.detail-options { margin-top: 16px; }
.detail-option-group { margin-bottom: 12px; }
.detail-option-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 8px; font-weight: 400;
}
.detail-option-required { color: var(--gold); font-size: 13px; }
.detail-option-values { display: flex; flex-wrap: wrap; gap: 6px; }
.detail-option-btn {
  padding: 7px 16px; background: transparent; border: 1px solid var(--border2);
  color: var(--text2); font-family: var(--font-body, inherit); font-size: 13px;
  cursor: pointer; transition: all .2s; border-radius: 2px;
}
.detail-option-btn:hover { border-color: var(--gold-dark); color: var(--text); }
.detail-option-btn.selected {
  background: var(--gold-glow); border-color: var(--gold); color: var(--gold); font-weight: 500;
}
.detail-option-group.detail-option-error .detail-option-label { color: #f87171; }
.detail-option-group.detail-option-error .detail-option-btn:not(.selected) {
  border-color: rgba(248,113,113,.4);
  animation: shake .3s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Opções no carrinho */
.cart-item-opts {
  font-size: 11px; color: var(--text2); margin-bottom: 3px; letter-spacing: .3px;
}
.cart-item-opts strong { color: var(--text); font-weight: 500; }

/* Variação no carrinho */
.cart-item-var-row {
  display: flex; align-items: center; gap: 6px;
  margin: 3px 0 6px;
}
.cart-item-var-label {
  font-size: 11px; color: var(--text3); letter-spacing: .5px; white-space: nowrap;
}
.cart-item-var { font-size: 11px; color: var(--text2); }
.cart-var-select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .15s;
  font-family: inherit;
}
.cart-var-select:hover { border-color: var(--gold-dark); }
.cart-var-select:focus  { outline: none; border-color: var(--gold); }

