:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-2: #111111;
  --panel-3: #181818;
  --text: #f5f5f0;
  --muted: #a8a8a8;
  --muted-2: #707070;
  --line: rgba(255,255,255,.12);
  --acid: #f5f5f0;
  --violet: #d6d6d6;
  --metal: #c7c7c7;
  --danger: #d8d8d8;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,.46);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(255,255,255,.07), transparent 30rem),
    radial-gradient(circle at 8% 28%, rgba(255,255,255,.04), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #090909 46%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--acid);
  color: #0a0d10;
  padding: 8px 12px;
  z-index: 20;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,6,8,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 340px) auto;
  gap: 24px;
  align-items: center;
}
.brand-logo { width: 152px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 20px; }
.desktop-nav a, .nav-actions a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a:hover, .desktop-nav a.is-active, .nav-actions a:hover { color: var(--text); }
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-pill {
  border: 1px solid var(--line);
  padding: 9px 12px;
  border-radius: 999px;
}
.cart-pill span {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--acid);
  color: #060807;
  font-size: 11px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 16px; height: 2px; margin: 4px auto; background: var(--text); }
.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px 22px 22px;
  background: rgba(5,6,8,.96);
}
.mobile-drawer a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-drawer.is-open { display: block; }

.hero-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px 48px;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 36px;
  align-items: stretch;
}
.hero-copy, .hero-visual, .page-hero, .drop-band, .manifesto-section, .newsletter-section, .lobby-card, .auth-card, .cart-empty-card, .order-summary, .checkout-form {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 42px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(34px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy::after, .hero-visual::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
  pointer-events: none;
}
.eyebrow {
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 124px);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
h3 { letter-spacing: -.02em; }
p { color: var(--muted); }
.hero-copy p { max-width: 600px; font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn-primary { background: #f5f5f0; color: #050505; border-color: #f5f5f0; }
.btn-secondary { background: rgba(255,255,255,.04); color: var(--text); }
.btn:hover { transform: translateY(-1px); }
.hero-metrics {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.24);
}
.hero-metrics strong { display: block; color: var(--metal); font-size: 24px; }
.hero-metrics span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.15), transparent 40%),
    radial-gradient(circle at center, rgba(255,255,255,.10), transparent 36%),
    linear-gradient(180deg, #111722, #06080d);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}
.omega-mark {
  position: relative;
  z-index: 2;
  font-size: clamp(170px, 22vw, 300px);
  font-weight: 200;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  text-shadow: 0 0 70px rgba(255,255,255,.22);
}
.hero-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(5,6,8,.72);
  color: var(--metal);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
}
.hero-card-top { top: 70px; right: 46px; }
.hero-card-bottom { bottom: 62px; left: 42px; }

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 22px;
}
.section-tight { padding-top: 42px; }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.row-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; max-width: none; }
.text-link { color: var(--acid); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.text-link.small { font-size: 11px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.collection-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  position: relative;
  overflow: hidden;
}
.collection-card::after {
  content: "Ω";
  position: absolute;
  right: 18px;
  bottom: -28px;
  font-size: 108px;
  color: rgba(255,255,255,.035);
}
.collection-card span, .product-info span, .filter-block span {
  color: var(--muted-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.collection-card h3 { margin: 18px 0 8px; font-size: 24px; text-transform: uppercase; line-height: 1; }
.collection-card p { margin-bottom: 0; }
.collection-card:hover { border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.drop-band {
  max-width: calc(var(--max) - 44px);
  margin: 22px auto 0;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,.10)),
    #0a0d12;
}
.drop-band h2 { margin-bottom: 0; }
.drop-band p { margin-bottom: 0; }
.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-list article, .community-grid article, .product-tabs article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  padding: 24px;
}
.feature-list h3, .community-grid h2, .product-tabs h2 { margin-bottom: 10px; text-transform: uppercase; }
.feature-list p, .community-grid p, .product-tabs p { margin-bottom: 0; }
.lobby-section { max-width: var(--max); margin: 0 auto; padding: 0 22px 70px; }
.lobby-card { min-height: 420px; padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.05)), #080b10; }
.lobby-card span { color: var(--acid); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.lobby-card h2 { max-width: 840px; }
.lobby-card p { max-width: 620px; font-size: 18px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.product-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); }
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #151b25, #080a0e);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-media img { transform: scale(1.03); }
.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5,6,8,.76);
  border: 1px solid var(--line);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-badge.standalone { position: static; display: inline-flex; margin-bottom: 14px; }
.product-info { padding: 16px; }
.product-info h3 { min-height: 48px; margin: 6px 0 18px; font-size: 17px; line-height: 1.2; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-row strong { font-size: 18px; }
.product-row button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 9px 10px;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-row button:hover { border-color: var(--acid); color: var(--acid); }

.manifesto-section, .newsletter-section {
  max-width: calc(var(--max) - 44px);
  margin: 0 auto 72px;
  padding: 42px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.manifesto-section p { font-size: clamp(20px, 3vw, 34px); line-height: 1.08; color: var(--text); letter-spacing: -.04em; margin-bottom: 0; }
.newsletter-section { grid-template-columns: 1fr 1fr; }
.newsletter-form, .footer-form { display: flex; gap: 10px; }
.newsletter-form input, .footer-form input, .checkout-form input, .auth-card input, .quantity-line input, .catalog-toolbar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
}
.newsletter-form input:focus, .footer-form input:focus, .checkout-form input:focus, .auth-card input:focus { border-color: rgba(255,255,255,.62); }
.newsletter-form button, .footer-form button {
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: #050608;
  font-weight: 900;
  padding: 0 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.page-hero {
  max-width: calc(var(--max) - 44px);
  margin: 42px auto 0;
  padding: clamp(38px, 6vw, 72px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero.compact { min-height: 280px; }
.page-hero p { max-width: 760px; font-size: 20px; }
.product-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
}
.filter-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  padding: 20px;
}
.filter-panel h2 { font-size: 22px; margin-bottom: 14px; }
.filter-panel a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.filter-panel a.is-active, .filter-panel a:hover { color: var(--acid); }
.filter-block { margin-top: 18px; }
.filter-block p { font-size: 13px; margin: 6px 0 0; }
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
}
.catalog-toolbar select { width: auto; min-width: 190px; color-scheme: dark; }

.product-detail-shell {
  max-width: var(--max);
  margin: 42px auto 0;
  padding: 0 22px 50px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}
.product-gallery, .product-buy-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.035);
  padding: 18px;
}
.product-main-image {
  border-radius: 24px;
  overflow: hidden;
  background: #0b0f16;
}
.product-main-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.thumb-row { display: flex; gap: 10px; margin-top: 12px; }
.thumb-row button {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
  overflow: hidden;
}
.product-buy-box { padding: clamp(24px, 5vw, 46px); align-self: start; }
.product-buy-box h1 { font-size: clamp(42px, 5vw, 72px); }
.detail-price { display: block; font-size: 36px; margin: 20px 0; }
.limited-alert, .future-stack-note {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
}
.future-stack-note { margin-top: 18px; color: var(--muted); border-color: var(--line); background: rgba(255,255,255,.035); }
.option-block { margin-top: 22px; }
.option-block > span, .quantity-line label { display: block; margin-bottom: 10px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}
.chip-row button:hover { border-color: var(--acid); }
.quantity-line { margin-top: 22px; }
.quantity-line input { max-width: 120px; }
.buy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 10px; }
.compact-list { grid-template-columns: repeat(3, 1fr); }

.auth-shell {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 60px 22px;
}
.auth-card { width: min(520px, 100%); padding: 34px; }
.auth-card h1 { font-size: 58px; }
.auth-card form { display: grid; gap: 14px; margin: 20px 0; }
.auth-card label, .checkout-form label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.auth-card input, .checkout-form input { margin-top: 8px; }
.admin-auth .auth-card { border-color: rgba(255,255,255,.32); }
.cart-preview, .checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.cart-empty-card, .order-summary, .checkout-form { padding: 28px; }
.order-summary h2, .checkout-form h2 { font-size: 28px; }
.order-summary div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 14px 0; color: var(--muted); }
.order-summary .btn { width: 100%; margin-top: 20px; }
.checkout-form .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.checkout-form .btn { margin-top: 22px; }
.text-stack p { font-size: 18px; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.community-grid article span { color: var(--acid); font-weight: 900; letter-spacing: .14em; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #050608;
  padding: 54px 22px 24px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}
.footer-logo { width: 142px; margin-bottom: 14px; }
.footer-tagline { color: var(--text); font-size: 20px; font-weight: 900; }
.site-footer h3 { font-size: 13px; color: var(--text); text-transform: uppercase; letter-spacing: .12em; }
.site-footer a { display: block; color: var(--muted); margin: 10px 0; font-size: 14px; }
.site-footer a:hover { color: var(--acid); }
.footer-form { margin-top: 14px; }
.footer-bottom {
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .nav-search { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .split-section, .product-detail-shell, .manifesto-section, .newsletter-section, .cart-preview, .checkout-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .drop-band { grid-template-columns: 1fr; }
  .feature-list, .product-tabs, .community-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-shell { min-height: 66px; padding: 0 16px; gap: 12px; }
  .brand-logo { width: 126px; }
  .nav-actions a:not(.cart-pill) { display: none; }
  .hero-section { padding: 34px 16px 28px; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 30px; }
  h1 { font-size: clamp(48px, 17vw, 72px); }
  h2 { font-size: clamp(31px, 11vw, 46px); }
  .hero-metrics { grid-template-columns: 1fr; margin-top: 26px; }
  .hero-visual { min-height: 340px; }
  .omega-mark { font-size: 190px; }
  .hero-card-top { top: 32px; right: 22px; }
  .hero-card-bottom { bottom: 28px; left: 20px; }
  .section-shell { padding: 48px 16px; }
  .collection-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 12px; }
  .product-info h3 { font-size: 14px; min-height: 50px; }
  .product-row { align-items: flex-start; flex-direction: column; }
  .product-row button { width: 100%; }
  .drop-band, .manifesto-section, .newsletter-section { margin-left: 16px; margin-right: 16px; padding: 26px; }
  .lobby-section { padding-left: 16px; padding-right: 16px; }
  .lobby-card { padding: 28px; min-height: 360px; }
  .page-hero { margin: 24px 16px 0; padding: 30px; }
  .page-hero p { font-size: 16px; }
  .catalog-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
  .catalog-toolbar select { width: 100%; }
  .product-detail-shell { padding-left: 16px; padding-right: 16px; }
  .buy-actions { grid-template-columns: 1fr; }
  .checkout-form .form-grid { grid-template-columns: 1fr; }
  .newsletter-form, .footer-form { flex-direction: column; }
  .newsletter-form button, .footer-form button { min-height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Build 02 — catálogo dinâmico */
.catalog-filter-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.catalog-filter-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.catalog-filter-form select,
.catalog-filter-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
  border-radius: 14px;
  padding: 0 12px;
  outline: none;
  color-scheme: dark;
}
.catalog-filter-form select:focus,
.catalog-filter-form input:focus { border-color: rgba(255,255,255,.62); }
.catalog-filter-form button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: #050608;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.filter-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.clear-filter {
  text-align: center;
  border-bottom: 0 !important;
  padding: 4px 0 0 !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.catalog-source {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted-2);
}
.empty-state {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.04));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 38px;
}
.empty-state span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--acid);
  font-size: 42px;
  margin-bottom: 12px;
}
.empty-state h3 { margin-bottom: 7px; }
.empty-state p { max-width: 360px; }

/* Build 03 — carrinho funcional */
.flash-message {
  position: fixed;
  z-index: 80;
  top: 92px;
  right: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 11, 16, .94);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.flash-message.success { border-color: rgba(255,255,255,.44); }
.flash-message.error { border-color: rgba(255, 92, 92, .55); }

.product-purchase-form { display: grid; gap: 22px; }
.selectable-row { align-items: center; }
.select-chip { cursor: pointer; }
.select-chip input { position: absolute; opacity: 0; pointer-events: none; }
.select-chip span,
.chip-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.select-chip input:checked + span {
  border-color: var(--acid);
  background: rgba(255,255,255,.12);
  color: var(--acid);
}
.buy-actions button { width: 100%; }
.quick-add-form { margin: 0; }
.quick-add-form button,
.product-row button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.cart-live-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 380px;
}
.cart-items-panel,
.cart-update-form { display: grid; gap: 16px; }
.cart-line-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}
.cart-line-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #07090d;
}
.cart-line-media img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.cart-line-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cart-line-info h2 { margin: 0 0 6px; font-size: clamp(22px, 2.2vw, 34px); }
.cart-line-info p { margin: 0 0 10px; }
.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.cart-line-actions label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cart-line-actions input {
  width: 88px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  color: var(--text);
  padding: 0 10px;
  font-weight: 900;
}
.cart-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.sticky-summary { position: sticky; top: 96px; }
.summary-note {
  margin: -4px 0 8px;
  font-size: 12px;
}
.summary-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mini-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mini-form label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mini-form div { display: flex; gap: 8px; }
.mini-form input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  color: var(--text);
  padding: 0 12px;
}
.mini-form button {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.clear-cart-form { margin-top: 12px; text-align: center; }
.text-link.danger {
  color: #ff8585;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.btn.is-disabled { opacity: .65; }
.checkout-item-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-item-line span { color: var(--text); }
.checkout-item-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .cart-live-grid { grid-template-columns: 1fr; }
  .sticky-summary { position: static; }
  .cart-line-item { grid-template-columns: 96px minmax(0, 1fr); }
  .cart-line-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    justify-items: start;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .flash-message { top: auto; bottom: 18px; right: 12px; left: 12px; max-width: none; }
  .cart-line-item { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; padding: 12px; }
  .cart-line-info h2 { font-size: 20px; }
  .cart-line-actions { grid-template-columns: 1fr; justify-items: stretch; }
  .cart-line-actions input { width: 100%; }
  .mini-form div { flex-direction: column; }
}

/* Build 04 — autenticação e minha conta */
.nav-logout-form, .mobile-logout-form { margin: 0; }
.nav-logout-form button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
}
.nav-logout-form button:hover, .mobile-logout-form button:hover { color: var(--text); }
.mobile-logout-form button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
}
.auth-card.wide { width: min(760px, 100%); }
.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field-error {
  display: block;
  margin-top: 7px;
  color: #ff8a9c;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: none;
}
.field-error.block { margin: -4px 0 10px; }
.inline-alert {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
}
.inline-alert a { color: var(--acid); font-weight: 900; }
.inline-alert.success { border-color: rgba(255,255,255,.34); }
.inline-alert.warning { border-color: rgba(255,194,92,.34); }
.inline-alert code { color: var(--text); }
.auth-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.auth-links span, .password-rules, .account-form small {
  color: var(--muted-2);
  font-size: 12px;
}
.checkbox-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 14px !important;
}
.checkbox-line input { width: auto; margin-top: 4px !important; }
.password-rules {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.account-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
}
.account-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 42px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
}
.account-card h2 { font-size: clamp(30px, 3vw, 44px); }
.account-summary-card {
  position: sticky;
  top: 98px;
  align-self: start;
}
.account-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  margin: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.account-status-row strong { color: var(--acid); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.account-form { display: grid; gap: 16px; }
.account-orders-card { grid-column: 2; }
.empty-account-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
}
.empty-account-state strong { display: block; margin-bottom: 8px; }
.empty-account-state .btn { margin-top: 12px; }
.orders-table { display: grid; gap: 10px; }
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
}
.order-row strong { color: var(--acid); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }

@media (max-width: 1080px) {
  .account-grid { grid-template-columns: 1fr; }
  .account-summary-card { position: static; }
  .account-orders-card { grid-column: auto; }
}
@media (max-width: 720px) {
  .auth-card h1 { font-size: 42px; }
  .auth-card { padding: 26px; }
  .auth-form-grid { grid-template-columns: 1fr; }
  .nav-logout-form { display: none; }
}


/* Build 04.1 - correção de botões inativos */
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.admin-credentials-preview {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  margin-top: 16px;
}
.admin-credentials-preview small,
.admin-credentials-preview span {
  color: var(--muted);
}
.footer-form a,
.newsletter-form a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--acid);
  color: #061009;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.footer-form input:disabled,
.newsletter-form input:disabled {
  opacity: .72;
  cursor: not-allowed;
}

/* Build 05 — checkout/pedidos */
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.check-line input {
  width: auto !important;
  margin-top: 2px !important;
}
.checkout-confirm {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}
.field-error {
  display: block;
  margin-top: 7px;
  color: #ff8c8c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.block-error { margin-top: 8px; }
.order-success-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.checkout-item-line small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
@media (max-width: 860px) {
  .order-success-grid { grid-template-columns: 1fr; }
}

/* Build 09 — MelhorEnvio */
.shipping-options {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.mini-label {
  color: var(--muted, #a7adba);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}
.shipping-option.is-selected {
  border-color: rgba(151,255,78,.55);
  box-shadow: 0 0 0 1px rgba(151,255,78,.14), 0 16px 30px rgba(0,0,0,.22);
}
.shipping-option span {
  display: grid;
  gap: 3px;
}
.shipping-option small,
.mini-form small {
  color: var(--muted, #a7adba);
  font-size: .78rem;
}
.shipping-option b {
  white-space: nowrap;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.block-error {
  display: block;
  margin-top: 8px;
}

/* Build 10.1 - Mercado Pago Checkout Transparente */
.payment-brick-box,
.payment-pix-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.payment-pix-box h3 { margin-top: 0; }
.payment-pix-box textarea {
  color: #10131a;
  background: #f7f7f2;
  border: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  resize: vertical;
}

/* Revamp 0.1 — Home Hero */
.home-hero-revamp {
  width: 100%;
  margin: 0 0 46px;
  padding: 0;
  overflow: visible;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 0;
  min-height: 640px;
  width: 100%;
}
.hero-mosaic-card,
.hero-carousel-slide {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: #080a0f;
  text-decoration: none;
  color: var(--text);
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
  transition: transform .32s ease, z-index .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.hero-mosaic-card { margin: -1px 0 0 -1px; }
.hero-mosaic-card::before,
.hero-carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.16) 100%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}
.hero-mosaic-card::after,
.hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.28), transparent 30%, rgba(255,255,255,.2) 100%);
  opacity: .28;
  transition: opacity .28s ease;
}
.hero-mosaic-card img,
.hero-carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.96) contrast(1.04);
  transition: transform .55s ease, filter .55s ease;
}
.hero-mosaic-card:hover img,
.hero-carousel-slide:hover img {
  transform: scale(1.085);
  filter: saturate(1.08) contrast(1.08);
}
.hero-mosaic-card:hover,
.hero-carousel-slide:hover {
  z-index: 4;
  transform: scale(1.014);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
  border-color: rgba(255,255,255,.4);
}
.hero-mosaic-card:hover::after,
.hero-carousel-slide:hover::after { opacity: .65; }
.hero-mosaic-card.is-main {
  min-height: 640px;
  grid-row: 1 / span 3;
}
.hero-mosaic-card.is-side {
  min-height: 214px;
}
.hero-mosaic-count-1 { grid-template-columns: 1fr; }
.hero-mosaic-count-1 .hero-mosaic-card.is-main { min-height: 720px; }
.hero-mosaic-count-2 { grid-template-columns: 1fr 1fr; }
.hero-mosaic-count-2 .hero-mosaic-card.is-main { grid-row: auto; }
.hero-mosaic-count-2 .hero-mosaic-card.is-side { min-height: 640px; }
.hero-banner-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 34px;
  display: grid;
  gap: 10px;
}
.hero-banner-overlay span,
.hero-card-index {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 900;
}
.hero-banner-overlay h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(25px, 4vw, 58px);
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero-mosaic-card.is-side .hero-banner-overlay h2 { font-size: clamp(18px, 2.1vw, 30px); }
.hero-banner-overlay p {
  max-width: 560px;
  margin: 0;
  color: rgba(238,241,247,.78);
  line-height: 1.45;
}
.hero-mosaic-card.is-side .hero-banner-overlay p { font-size: 13px; }
.hero-banner-button {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,12,18,.78);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.hero-banner-button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  color: #071011;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}
.hero-card-index {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.7);
}
.hero-carousel {
  position: relative;
  min-height: 700px;
  width: 100%;
}
.hero-carousel-track,
.hero-carousel-slide {
  min-height: 700px;
}
.hero-carousel-slide {
  display: none;
}
.hero-carousel-slide.is-active {
  display: block;
}
.hero-carousel-slide .hero-banner-overlay {
  padding: clamp(28px, 5vw, 64px);
}
.hero-carousel-slide .hero-banner-overlay h2 {
  font-size: clamp(42px, 7vw, 98px);
  max-width: 780px;
}
.hero-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(5,7,12,.72);
  backdrop-filter: blur(14px);
}
.hero-carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.hero-carousel-dots {
  display: flex;
  gap: 7px;
}
.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.35);
}
.hero-carousel-dots button.is-active { background: var(--acid); }

@media (max-width: 980px) {
  .hero-mosaic,
  .hero-mosaic-count-2 { grid-template-columns: 1fr; min-height: auto; }
  .hero-mosaic-card.is-main,
  .hero-mosaic-count-2 .hero-mosaic-card.is-side { min-height: 420px; grid-row: auto; }
  .hero-mosaic-card.is-side { min-height: 240px; }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 520px; }
}

@media (max-width: 640px) {
  .home-hero-revamp { width: 100%; margin-top: 0; }
  .hero-mosaic-card.is-main { min-height: 420px; }
  .hero-mosaic-card.is-side { min-height: 210px; }
  .hero-banner-overlay { padding: 22px; }
  .hero-banner-overlay p { font-size: 13px; }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 500px; }
  .hero-carousel-controls { left: 18px; right: 18px; justify-content: space-between; bottom: 18px; }
}


.admin-form-row.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-check-grid .admin-checkbox-label {
  min-height: 54px;
  justify-content: flex-start;
}
@media (max-width: 980px) {
  .admin-form-row.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .admin-form-row.four { grid-template-columns: 1fr; }
}


/* Revamp 0.2 — Home Coleções */
.home-collections-revamp {
  width: min(100% - 40px, 1480px);
  margin: 0 auto 58px;
  padding: 18px 0 6px;
}
.home-collections-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}
.home-collections-head h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.4vw, 72px);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.home-collection-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.home-collection-tabs button {
  min-width: 118px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: transparent;
  color: rgba(245,247,250,.66);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.home-collection-tabs button:hover,
.home-collection-tabs button.is-active {
  color: #071011;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  transform: translateY(-1px);
}
.collection-carousel-panel { display: none; }
.collection-carousel-panel.is-active { display: block; }
.collection-carousel-frame { position: relative; }
.collection-card-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.collection-card-track::-webkit-scrollbar { display: none; }
.collection-card-track.is-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.home-collection-card {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  overflow: hidden;
  background: #080a0f;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  isolation: isolate;
}
.collection-card-track.is-carousel .home-collection-card {
  flex: 0 0 calc((100% - 56px) / 5);
  scroll-snap-align: start;
}
.home-collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.96) contrast(1.04);
  transition: transform .48s ease, filter .48s ease;
}
.collection-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 44%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.18), transparent 38%);
}
.collection-card-copy {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 68px;
  bottom: 22px;
}
.collection-card-copy h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 31px);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.collection-card-copy p {
  margin: 9px 0 0;
  color: rgba(238,241,247,.72);
  font-size: 13px;
  line-height: 1.42;
}
.collection-card-cta {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}
.home-collection-card:hover img { transform: scale(1.075); filter: saturate(1.08) contrast(1.08); }
.home-collection-card:hover .collection-card-cta {
  transform: translate(6px, -8px) rotate(-45deg);
  background: var(--acid);
  color: #071011;
}
.collection-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(7,8,11,.72);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
}
.collection-arrow.is-visible { display: inline-flex; }
.collection-arrow-prev { left: -18px; }
.collection-arrow-next { right: -18px; }
.collection-arrow:hover { background: var(--acid); color: #071011; }

@media (max-width: 1180px) {
  .collection-card-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .collection-card-track.is-carousel .home-collection-card { flex-basis: calc((100% - 28px) / 3); }
}
@media (max-width: 760px) {
  .home-collections-revamp { width: min(100% - 24px, 1480px); }
  .home-collections-head { align-items: flex-start; flex-direction: column; }
  .home-collection-tabs { width: 100%; }
  .home-collection-tabs button { flex: 1; min-width: 0; }
  .collection-card-track,
  .collection-card-track.is-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .home-collection-card,
  .collection-card-track.is-carousel .home-collection-card { flex: 0 0 82%; min-height: 390px; scroll-snap-align: start; }
  .collection-arrow { display: none !important; }
}

/* Revamp 0.3 — Home Vitrines de Produtos */
.home-product-showcase {
  width: min(100% - 40px, 1480px);
  margin: 0 auto 58px;
  padding: 12px 0 6px;
}
.showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.showcase-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 62px);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.showcase-head-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.showcase-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}
.showcase-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  background: transparent;
  color: rgba(245,247,250,.66);
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.showcase-tabs button:hover,
.showcase-tabs button.is-active {
  color: #071011;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  transform: translateY(-1px);
}
.showcase-view-all {
  color: rgba(245,247,250,.78);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 4px;
}
.showcase-panel { display: none; }
.showcase-panel.is-active { display: block; }
.showcase-frame { position: relative; }
.showcase-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.is-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.showcase-product-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8,10,15,.78);
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
}
.showcase-track.is-carousel .showcase-product-card {
  flex: 0 0 calc((100% - 56px) / 5);
  scroll-snap-align: start;
}
.showcase-product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #080a0f;
}
.showcase-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .42s ease, filter .42s ease;
}
.showcase-product-card:hover .showcase-product-media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.08);
}
.showcase-product-badge,
.showcase-discount-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(5,7,12,.74);
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.showcase-discount-badge {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  color: #071011;
}
.showcase-product-copy {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
}
.showcase-product-copy span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.showcase-product-copy h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -.02em;
  min-height: 34px;
}
.showcase-product-copy h3 a { color: #fff; text-decoration: none; }
.showcase-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.showcase-price-row del { color: rgba(245,247,250,.38); font-size: 12px; }
.showcase-price-row strong { color: var(--acid); font-size: 16px; }
.showcase-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(7,8,11,.72);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
}
.showcase-arrow.is-visible { display: inline-flex; }
.showcase-arrow-prev { left: -18px; }
.showcase-arrow-next { right: -18px; }
.showcase-arrow:hover { background: var(--acid); color: #071011; }

@media (max-width: 1180px) {
  .showcase-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-track.is-carousel .showcase-product-card { flex-basis: calc((100% - 28px) / 3); }
}
@media (max-width: 760px) {
  .home-product-showcase { width: min(100% - 24px, 1480px); }
  .showcase-head { align-items: flex-start; flex-direction: column; }
  .showcase-head-right { width: 100%; align-items: flex-start; justify-content: space-between; }
  .showcase-tabs { max-width: 100%; overflow-x: auto; }
  .showcase-tabs button { white-space: nowrap; }
  .showcase-track,
  .showcase-track.is-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .showcase-product-card,
  .showcase-track.is-carousel .showcase-product-card { flex: 0 0 58%; scroll-snap-align: start; }
  .showcase-arrow { display: none !important; }
}
@media (max-width: 520px) {
  .showcase-product-card,
  .showcase-track.is-carousel .showcase-product-card { flex-basis: 74%; }
}

/* Revamp 0.4 — Drop, CTA e Categorias */
.home-drop-card-revamp {
  width: min(1440px, calc(100% - 40px));
  margin: 42px auto 0;
}
.drop-revamp-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  background: #07090e;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
  isolation: isolate;
}
.drop-revamp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(.96) contrast(1.04);
  transition: transform .5s ease, filter .5s ease;
}
.drop-revamp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(0,0,0,.82), rgba(0,0,0,.42) 48%, rgba(0,0,0,.14)),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.24), transparent 32%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
}
.drop-revamp-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.08);
}
.drop-revamp-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 430px;
  max-width: 680px;
  padding: clamp(32px, 6vw, 74px);
  gap: 14px;
}
.drop-revamp-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 86px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.drop-revamp-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(238,241,247,.76);
  font-size: 16px;
  line-height: 1.6;
}
.drop-revamp-button,
.home-cta-card-copy span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,10,15,.72);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.drop-revamp-button i,
.home-cta-card-copy span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  color: #071011;
  font-style: normal;
  line-height: 1;
  transition: transform .25s ease;
}
.drop-revamp-card:hover .drop-revamp-button i,
.home-cta-card:hover .home-cta-card-copy span i { transform: translate(3px, -3px); }

.home-cta-cards-revamp {
  width: 100%;
  margin: 1px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.home-cta-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #080a0f;
  color: var(--text);
  text-decoration: none;
  isolation: isolate;
}
.home-cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.96) contrast(1.04);
  transition: transform .52s ease, filter .52s ease;
}
.home-cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.82));
  transition: opacity .28s ease;
}
.home-cta-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}
.home-cta-card:hover::after { opacity: .92; }
.home-cta-card-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 9px;
  padding: clamp(22px, 3.4vw, 42px);
}
.home-cta-card-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 58px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.home-cta-card-copy strong {
  color: var(--acid);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-cta-card-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(238,241,247,.74);
  line-height: 1.48;
}

.home-category-icons-revamp {
  width: min(1440px, calc(100% - 40px));
  margin: 44px auto 0;
}
.home-category-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px;
  justify-items: stretch;
}
.home-category-icon-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 146px;
  padding: 18px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  color: var(--text);
  text-decoration: none;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.home-category-icon-card span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}
.home-category-icon-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  transition: transform .24s ease;
}
.home-category-icon-card strong {
  text-align: center;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-category-icon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.36);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.03));
  box-shadow: 0 20px 44px rgba(0,0,0,.32);
}
.home-category-icon-card:hover img { transform: translateY(-3px) scale(1.06); }

@media (max-width: 900px) {
  .home-cta-cards-revamp { grid-template-columns: 1fr; }
  .home-cta-card { min-height: 360px; }
}
@media (max-width: 640px) {
  .home-drop-card-revamp,
  .home-category-icons-revamp { width: calc(100% - 24px); }
  .drop-revamp-card { min-height: 380px; border-radius: 24px; }
  .drop-revamp-copy { min-height: 380px; padding: 26px; }
  .home-category-icons-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .home-category-icon-card { min-height: 116px; border-radius: 18px; padding: 14px 8px; }
  .home-category-icon-card span { width: 50px; height: 50px; border-radius: 16px; }
  .home-category-icon-card img { width: 32px; height: 32px; }
  .home-category-icon-card strong { font-size: 10px; }
}


/* Revamp 0.5 — Performance, CTA spacing e Newsletter Wizard */
.home-cta-cards-revamp {
  width: calc(100% - 28px);
  margin-left: auto;
  margin-right: auto;
  gap: 6px;
}
.home-cta-card { border-radius: 24px; }
.performance-config-section { padding-top: 78px; padding-bottom: 72px; }
.performance-section-copy h2 { max-width: 560px; }
.performance-card-list { gap: 14px; }
.performance-card-list .performance-card {
  position: relative;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  padding: 24px;
  color: var(--text);
  text-decoration: none;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.performance-card-list .performance-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  transform: scale(1.02);
  transition: transform .32s ease, opacity .32s ease;
}
.performance-card-list .performance-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,6,10,.12), rgba(4,6,10,.88));
  pointer-events: none;
}
.performance-card-list .performance-card > *:not(img) { position: relative; z-index: 1; }
.performance-card-list .performance-card span {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}
.performance-card-list .performance-card h3 { margin-bottom: 10px; }
.performance-card-list .performance-card p { color: var(--muted); }
.performance-card-list a.performance-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.05);
  box-shadow: 0 24px 52px rgba(0,0,0,.34);
}
.performance-card-list a.performance-card:hover img { transform: scale(1.08); opacity: .58; }
.newsletter-wizard-section {
  width: 100%;
  max-width: none;
  margin: 0 0 72px;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.14), transparent 30%),
    #080a0f;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .64fr);
}
.newsletter-copy h2 { max-width: 720px; }
.newsletter-copy p { max-width: 620px; color: var(--muted); }
.newsletter-wizard-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.045);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.newsletter-step[hidden] { display: none !important; }
.newsletter-step > span,
.newsletter-field span {
  display: block;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}
.newsletter-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.newsletter-choice-grid button,
.newsletter-back {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  cursor: pointer;
}
.newsletter-choice-grid button:hover,
.newsletter-back:hover { border-color: rgba(255,255,255,.42); color: var(--acid); }
.newsletter-lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.newsletter-field { display: grid; gap: 6px; }
.newsletter-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
}
.newsletter-lead-form button[type="submit"] { min-height: 52px; }
.newsletter-back { background: transparent; min-height: 48px; }
.newsletter-success strong { display: block; font-size: clamp(28px, 4vw, 52px); letter-spacing: -.04em; text-transform: uppercase; }
.newsletter-success p { color: var(--muted); font-size: 18px; }
@media (max-width: 900px) {
  .newsletter-wizard-section { grid-template-columns: 1fr; }
  .newsletter-lead-form { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .home-cta-cards-revamp { width: calc(100% - 18px); gap: 6px; }
  .home-cta-card { border-radius: 22px; }
  .newsletter-choice-grid { grid-template-columns: 1fr; }
}


/* Revamp 0.5.1 — CTA spacing + compact newsletter wizard */
.home-cta-cards-revamp {
  width: calc(100% - 40px);
  margin: 32px auto 0;
  gap: 8px;
  background: transparent;
}
.home-cta-card {
  border-radius: 24px;
  border: 0;
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
}
.newsletter-wizard-section {
  min-height: auto;
  margin: 34px 0 64px;
  padding: clamp(24px, 3.4vw, 46px) clamp(18px, 4vw, 58px);
  grid-template-columns: minmax(0, .92fr) minmax(320px, .48fr);
  gap: clamp(20px, 4vw, 54px);
  border-radius: 0;
}
.newsletter-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: .92;
}
.newsletter-copy p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
}
.newsletter-wizard-card {
  min-height: 188px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(0,0,0,.22);
}
.newsletter-step[hidden],
.newsletter-field[hidden] {
  display: none !important;
}
.newsletter-step > span,
.newsletter-field span {
  margin-bottom: 10px;
  font-size: 10px;
}
.newsletter-choice-grid button,
.newsletter-back,
.newsletter-field input,
.newsletter-lead-form button[type="submit"] {
  min-height: 46px;
}
.newsletter-lead-form {
  gap: 10px;
}
.newsletter-success strong {
  font-size: clamp(24px, 3.4vw, 42px);
}
.newsletter-success p {
  font-size: 15px;
}
@media (max-width: 900px) {
  .newsletter-wizard-section { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .home-cta-cards-revamp {
    width: calc(100% - 22px);
    margin-top: 24px;
    gap: 7px;
  }
  .newsletter-wizard-section {
    margin-bottom: 42px;
    padding: 24px 16px;
  }
}

/* Revamp 0.6.1 — Footer */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-footer.footer-revamp {
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.045), transparent 32%),
    linear-gradient(180deg, #050608 0%, #030406 100%);
  padding: clamp(44px, 5.5vw, 74px) 22px 28px;
  text-align: center;
  overflow: hidden;
}
.footer-glitch-wrap {
  display: grid;
  place-items: center;
  min-height: clamp(42px, 5.6vw, 76px);
  margin: 0 auto clamp(38px, 4.8vw, 62px);
}
.footer-glitch-text {
  position: relative;
  width: min(100%, 980px);
  min-height: clamp(42px, 5.6vw, 76px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: #f7f7f2;
  font-size: clamp(28px, 5.2vw, 76px);
  white-space: nowrap;
  overflow: visible;
}
.footer-glitch-text span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.10));
  will-change: opacity, transform, clip-path;
}
.footer-glitch-text span::before,
.footer-glitch-text span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.footer-glitch-text span::before {
  color: var(--acid);
  clip-path: inset(0 0 52% 0);
  transform: translate(2px, -1px);
  animation: footerGlitchNoise 5.6s infinite;
}
.footer-glitch-text span::after {
  color: var(--violet);
  clip-path: inset(48% 0 0 0);
  transform: translate(-2px, 1px);
  animation: footerGlitchNoise 5.6s infinite reverse;
}
.footer-glitch-text span:nth-child(1) { animation: footerStageBreak 5.6s steps(1, end) infinite; }
.footer-glitch-text span:nth-child(2) { animation: footerStageBreakThe 5.6s steps(1, end) infinite; }
.footer-glitch-text span:nth-child(3) { animation: footerStageFinal 5.6s steps(1, end) infinite; }
@keyframes footerStageBreak {
  0%, 8% { opacity: 1; transform: translate(0,0) skewX(0deg); }
  2% { transform: translate(-2px, 0) skewX(-4deg); }
  4% { transform: translate(2px, -1px) skewX(3deg); }
  8.01%, 100% { opacity: 0; }
}
@keyframes footerStageBreakThe {
  0%, 8% { opacity: 0; }
  9%, 17% { opacity: 1; transform: translate(0,0) skewX(0deg); }
  11% { transform: translate(2px, 0) skewX(3deg); }
  14% { transform: translate(-1px, 1px) skewX(-2deg); }
  17.01%, 100% { opacity: 0; }
}
@keyframes footerStageFinal {
  0%, 17% { opacity: 0; }
  18%, 94% { opacity: 1; transform: translate(0,0) skewX(0deg); }
  20% { transform: translate(-2px, 1px) skewX(-2deg); }
  23% { transform: translate(2px, -1px) skewX(2deg); }
  26%, 94% { transform: translate(0,0) skewX(0deg); }
  94.01%, 100% { opacity: 0; }
}
@keyframes footerGlitchNoise {
  0%, 1%, 3%, 9%, 10%, 12%, 18%, 19%, 21%, 100% { opacity: 0; }
  .5%, 2%, 9.5%, 11%, 18.5%, 20% { opacity: .65; }
}
.footer-quick-links {
  width: min(100%, 1100px);
  margin: 0 auto clamp(34px, 5vw, 56px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 78px);
  flex-wrap: wrap;
}
.footer-link-section {
  min-width: 122px;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.footer-link-section h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f7f7f2;
}
.footer-link-section a {
  display: block;
  margin: 0;
  color: rgba(226,232,240,.64);
  font-size: 13px;
  line-height: 1.35;
  transition: color .18s ease, transform .18s ease;
}
.footer-link-section a:hover {
  color: var(--acid);
  transform: translateY(-1px);
}
.footer-center-logo {
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.footer-center-logo img {
  width: min(152px, 52vw);
  height: auto;
  opacity: .94;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}
.footer-social-link {
  --social-color: #f5f5f0;
  width: 36px;
  height: 36px;
  display: inline-grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(246,248,251,.76) !important;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.footer-social-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social-link:hover {
  color: var(--social-color) !important;
  border-color: color-mix(in srgb, var(--social-color) 48%, transparent);
  background: color-mix(in srgb, var(--social-color) 12%, transparent);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--social-color) 8%, transparent);
}
.footer-social-link[data-platform="instagram"] { --social-color: #e4405f; }
.footer-social-link[data-platform="tiktok"] { --social-color: #00f2ea; }
.footer-social-link[data-platform="youtube"] { --social-color: #ff0033; }
.footer-social-link[data-platform="x"] { --social-color: #ffffff; }
.footer-social-link[data-platform="facebook"] { --social-color: #1877f2; }
.footer-social-link[data-platform="discord"] { --social-color: #5865f2; }
.footer-social-link[data-platform="whatsapp"] { --social-color: #25d366; }
.footer-social-link[data-platform="linkedin"] { --social-color: #0a66c2; }
.footer-legal-block {
  width: min(100%, 980px);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(226,232,240,.46);
  font-size: 12px;
  line-height: 1.55;
  display: grid;
  gap: 4px;
}
.footer-legal-block p { margin: 0; }
@media (max-width: 760px) {
  .site-footer.footer-revamp { padding-top: 42px; }
  .footer-glitch-wrap { min-height: 42px; margin-bottom: 36px; }
  .footer-glitch-text { min-height: 42px; font-size: clamp(25px, 9vw, 42px); letter-spacing: -.035em; }
  .footer-quick-links { gap: 26px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-link-section { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-glitch-text span,
  .footer-glitch-text span::before,
  .footer-glitch-text span::after { animation: none !important; }
  .footer-glitch-text span:nth-child(3) { opacity: 1; }
}

/* Revamp 0.7 — Home Mobile / Responsividade */
@media (hover: none) and (pointer: coarse) {
  .hero-mosaic-card:hover,
  .hero-carousel-slide:hover,
  .home-collection-card:hover,
  .showcase-product-card:hover,
  .drop-revamp-card:hover,
  .home-cta-card:hover,
  .performance-card-list a.performance-card:hover,
  .home-category-icon-card:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  body { background-size: 1200px auto; }

  .site-header {
    background: rgba(5,6,8,.9);
    backdrop-filter: blur(16px);
  }
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 62px;
    padding: 0 12px;
    gap: 10px;
  }
  .brand-logo { width: 112px; }
  .nav-actions { justify-content: flex-end; gap: 8px; }
  .cart-pill {
    padding: 8px 10px;
    font-size: 0 !important;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cart-pill::before {
    content: 'Bag';
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
  }
  .cart-pill span { margin-left: 5px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-drawer {
    padding: 10px 16px 16px;
    max-height: calc(100svh - 62px);
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
  }
  .mobile-drawer a,
  .mobile-logout-form button {
    padding: 14px 0;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .home-hero-revamp { margin-bottom: 30px; }
  .hero-mosaic,
  .hero-mosaic-count-2 {
    display: flex;
    width: 100%;
    min-height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .hero-mosaic::-webkit-scrollbar { display: none; }
  .hero-mosaic-card,
  .hero-mosaic-card.is-main,
  .hero-mosaic-card.is-side,
  .hero-mosaic-count-2 .hero-mosaic-card.is-side {
    flex: 0 0 86%;
    min-height: 430px;
    grid-row: auto;
    scroll-snap-align: start;
    margin: 0;
    border-radius: 0;
  }
  .hero-mosaic-card.is-side { min-height: 430px; }
  .hero-card-index { top: 16px; right: 16px; font-size: 10px; }
  .hero-banner-overlay {
    padding: 22px 18px 24px;
    gap: 8px;
  }
  .hero-banner-overlay h2,
  .hero-mosaic-card.is-side .hero-banner-overlay h2 {
    font-size: clamp(28px, 10vw, 44px);
    max-width: 92%;
  }
  .hero-banner-overlay p { max-width: 90%; font-size: 13px; line-height: 1.45; }
  .hero-banner-button { padding: 10px 14px; font-size: 10px; }
  .hero-banner-button i { width: 24px; height: 24px; }
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 430px; }
  .hero-carousel-slide .hero-banner-overlay { padding: 24px 18px 30px; }
  .hero-carousel-slide .hero-banner-overlay h2 { font-size: clamp(32px, 12vw, 56px); }
  .hero-carousel-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: space-between;
    padding: 8px;
  }
  .hero-carousel-controls button { width: 38px; height: 38px; }

  .home-collections-revamp,
  .home-product-showcase {
    width: calc(100% - 22px);
    padding: 18px 0 6px;
  }
  .home-collections-head,
  .showcase-head {
    gap: 14px;
    margin-bottom: 16px;
  }
  .home-collections-head h2,
  .showcase-head h2,
  .newsletter-copy h2,
  .performance-section-copy h2 {
    font-size: clamp(28px, 10vw, 44px);
    line-height: .92;
  }
  .home-collection-tabs,
  .showcase-tabs {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 4px;
    gap: 6px;
    scroll-snap-type: x mandatory;
  }
  .home-collection-tabs::-webkit-scrollbar,
  .showcase-tabs::-webkit-scrollbar { display: none; }
  .home-collection-tabs button,
  .showcase-tabs button {
    min-height: 40px;
    padding: 0 14px;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .collection-card-track,
  .collection-card-track.is-carousel {
    gap: 10px;
    padding: 0 6px 4px 0;
  }
  .home-collection-card,
  .collection-card-track.is-carousel .home-collection-card {
    flex: 0 0 78%;
    min-height: 360px;
    border-radius: 22px;
  }
  .collection-card-copy { padding: 20px; }
  .collection-card-copy h3 { font-size: clamp(25px, 9vw, 39px); }
  .collection-card-copy p { font-size: 13px; }
  .collection-card-cta { width: 42px; height: 42px; right: 18px; bottom: 18px; }

  .showcase-head-right {
    width: 100%;
    gap: 12px;
  }
  .showcase-view-all {
    align-self: flex-end;
    font-size: 11px;
    padding-right: 4px;
  }
  .showcase-track,
  .showcase-track.is-carousel {
    gap: 10px;
    padding: 0 4px 4px 0;
  }
  .showcase-product-card,
  .showcase-track.is-carousel .showcase-product-card {
    flex: 0 0 63%;
    border-radius: 18px;
  }
  .showcase-product-media { aspect-ratio: 4 / 4.8; }
  .showcase-product-copy { padding: 12px; }
  .showcase-product-copy h3 { min-height: 42px; font-size: 13px; line-height: 1.18; }
  .showcase-product-copy span { font-size: 9px; }
  .showcase-price-row strong { font-size: 14px; }
  .showcase-product-badge,
  .showcase-discount-badge { top: 9px; left: 9px; padding: 6px 8px; font-size: 8px; }
  .showcase-discount-badge { left: auto; right: 9px; }

  .home-drop-card-revamp {
    width: calc(100% - 22px);
    margin-top: 28px;
  }
  .drop-revamp-card {
    min-height: 320px;
    border-radius: 22px;
  }
  .drop-revamp-copy {
    min-height: 320px;
    padding: 24px 20px;
    gap: 10px;
  }
  .drop-revamp-copy h2 { font-size: clamp(30px, 11vw, 48px); }
  .drop-revamp-copy p { font-size: 13px; max-width: 94%; }
  .drop-revamp-button { padding: 10px 14px; font-size: 10px; }

  .home-cta-cards-revamp {
    width: calc(100% - 22px);
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }
  .home-cta-card {
    min-height: 310px;
    border-radius: 22px;
  }
  .home-cta-card-copy { padding: 22px 18px; }
  .home-cta-card-copy h3 { font-size: clamp(28px, 10vw, 44px); }
  .home-cta-card-copy strong { font-size: 10px; }
  .home-cta-card-copy p { font-size: 13px; max-width: 92%; }
  .home-cta-card-copy span { padding: 10px 14px; font-size: 10px; }

  .home-category-icons-revamp {
    width: calc(100% - 22px);
    margin-top: 28px;
  }
  .home-category-icons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .home-category-icon-card {
    min-height: 110px;
    border-radius: 16px;
    padding: 12px 6px;
    gap: 8px;
  }
  .home-category-icon-card span { width: 46px; height: 46px; border-radius: 14px; }
  .home-category-icon-card img { width: 30px; height: 30px; }
  .home-category-icon-card strong { font-size: 9px; letter-spacing: .08em; line-height: 1.18; }

  .performance-config-section {
    width: calc(100% - 22px);
    padding: 40px 0 44px;
  }
  .performance-section-copy { padding: 0 2px; }
  .performance-card-list { gap: 10px; }
  .performance-card-list .performance-card {
    min-height: 190px;
    border-radius: 20px;
    padding: 20px;
  }
  .performance-card-list .performance-card span { font-size: 9px; }
  .performance-card-list .performance-card h3 { font-size: 22px; line-height: 1; }
  .performance-card-list .performance-card p { font-size: 13px; }

  .newsletter-wizard-section {
    margin: 0 0 42px;
    padding: 30px 16px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .newsletter-copy h2 { max-width: 96%; }
  .newsletter-copy p { max-width: 94%; font-size: 13px; }
  .newsletter-wizard-card {
    width: 100%;
    min-height: 172px;
    padding: 18px;
    border-radius: 20px;
  }
  .newsletter-choice-grid { grid-template-columns: 1fr; gap: 8px; }
  .newsletter-choice-grid button,
  .newsletter-back,
  .newsletter-field input,
  .newsletter-lead-form button[type="submit"] { min-height: 44px; }
  .newsletter-lead-form { grid-template-columns: 1fr; gap: 9px; }
  .newsletter-success strong { font-size: 28px; }
  .newsletter-success p { font-size: 14px; }

  .site-footer.footer-revamp {
    padding: 38px 14px 24px;
  }
  .footer-glitch-wrap {
    min-height: 34px;
    margin-bottom: 28px;
  }
  .footer-glitch-text {
    min-height: 34px;
    font-size: clamp(22px, 8vw, 34px);
    letter-spacing: -.02em;
    width: 100%;
  }
  .footer-quick-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    margin-bottom: 32px;
  }
  .footer-link-section { gap: 7px; }
  .footer-link-section h3 { font-size: 10px; margin-bottom: 4px; }
  .footer-link-section a { font-size: 12px; }
  .footer-center-logo img { width: 124px; }
  .footer-socials { gap: 8px; margin-bottom: 22px; }
  .footer-social-link { width: 34px; height: 34px; }
  .footer-legal-block {
    padding-top: 16px;
    font-size: 11px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .hero-mosaic-card,
  .hero-mosaic-card.is-main,
  .hero-mosaic-card.is-side,
  .hero-mosaic-count-2 .hero-mosaic-card.is-side,
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 390px; }
  .home-collection-card,
  .collection-card-track.is-carousel .home-collection-card { flex-basis: 84%; min-height: 340px; }
  .showcase-product-card,
  .showcase-track.is-carousel .showcase-product-card { flex-basis: 72%; }
  .home-category-icons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-quick-links { grid-template-columns: 1fr; }
}

/* Revamp 0.8 — Product Page */
.product-revamp-shell {
  width: min(100% - 44px, 1480px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 24px;
  align-items: start;
}
.product-revamp-gallery,
.product-revamp-buybox,
.product-tech-section,
.product-info-section,
.product-related-section {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.027);
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}
.product-revamp-gallery {
  padding: 12px;
  position: sticky;
  top: 94px;
}
.product-gallery-main {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(140deg, #111722, #05070b);
}
.product-gallery-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.36) 100%);
  background-size: 42px 42px, 42px 42px, auto;
  pointer-events: none;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}
.product-gallery-main:hover img { transform: scale(1.045); filter: contrast(1.06) saturate(1.08); }
.product-gallery-mark {
  position: absolute;
  right: 22px;
  bottom: 16px;
  z-index: 3;
  color: rgba(255,255,255,.16);
  font-size: clamp(70px, 11vw, 150px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
}
.product-revamp-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(5,8,12,.72);
  backdrop-filter: blur(14px);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.product-gallery-thumbs button {
  position: relative;
  min-height: 112px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  background: #090c12;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  opacity: .72;
  transition: opacity .22s ease, border-color .22s ease, transform .22s ease;
}
.product-gallery-thumbs button:hover,
.product-gallery-thumbs button.is-active { opacity: 1; border-color: rgba(255,255,255,.45); transform: translateY(-1px); }
.product-gallery-thumbs img { width: 100%; height: 100%; min-height: 112px; object-fit: cover; display: block; filter: brightness(.8); }
.product-gallery-thumbs span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-revamp-buybox {
  padding: clamp(24px, 4vw, 52px);
  position: sticky;
  top: 94px;
}
.product-buy-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.product-buy-kicker span,
.product-buy-kicker strong,
.product-option-head span,
.product-quantity-block > span {
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-buy-kicker strong { color: var(--acid); }
.product-revamp-buybox h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.product-revamp-subtitle {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(238,241,247,.72);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}
.product-price-stack {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.product-price-stack strong {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}
.product-price-stack small { color: var(--muted); }
.product-price-stack em {
  position: absolute;
  right: 0;
  top: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--acid);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
.compare-price { color: rgba(255,255,255,.44); text-decoration: line-through; font-weight: 800; }
.product-limited-strip {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
}
.product-limited-strip span {
  flex: 0 0 auto;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-limited-strip p { margin: 0; color: rgba(238,241,247,.74); font-size: 13px; }
.product-revamp-form { display: grid; gap: 22px; }
.product-option-block { margin: 0; }
.product-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.product-option-head small,
.product-option-head a {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}
.product-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.product-select-chip { cursor: pointer; }
.product-select-chip input { position: absolute; opacity: 0; pointer-events: none; }
.product-select-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  color: rgba(238,241,247,.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}
.product-select-chip:hover span,
.product-select-chip input:checked + span {
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.10);
  color: #fff;
  transform: translateY(-1px);
}
.product-size-row .product-select-chip span { min-width: 52px; padding: 0 12px; }
.product-quantity-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-quantity-block div {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}
.product-quantity-block button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.product-quantity-block input {
  width: 58px;
  height: 44px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: #fff;
  text-align: center;
  outline: none;
}
.product-buy-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
.product-buy-actions .btn { min-height: 54px; justify-content: center; }
.product-buy-actions .btn-primary {
  background: linear-gradient(135deg, #f5f5f0, #ffffff);
  color: #071011;
  box-shadow: 0 18px 38px rgba(255,255,255,.13);
}
.product-shipping-card {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
}
.product-shipping-card label {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-shipping-card div { display: flex; gap: 8px; }
.product-shipping-card input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0 14px;
  outline: none;
}
.product-shipping-card button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.product-shipping-card small { color: var(--muted); }
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.product-trust-grid span {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  color: rgba(238,241,247,.68);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-tech-section,
.product-info-section,
.product-related-section {
  width: min(100% - 44px, 1480px);
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 48px);
}
.product-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.product-section-heading:not(.row-heading) { display: block; }
.product-section-heading h2 {
  margin: 6px 0 0;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.product-section-heading p { max-width: 620px; margin: 12px 0 0; color: var(--muted); }
.product-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.product-tech-grid article {
  min-height: 220px;
  padding: 24px;
  background: #080b11;
}
.product-tech-grid span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.product-tech-grid h3 { margin: 32px 0 10px; text-transform: uppercase; }
.product-tech-grid p { margin: 0; color: rgba(238,241,247,.72); }
.product-info-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}
.product-ideal-card {
  min-height: 420px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 38%),
    #080b11;
  border: 1px solid rgba(255,255,255,.08);
}
.product-ideal-card h2 {
  margin: 8px 0 22px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.product-ideal-list { display: flex; flex-wrap: wrap; gap: 8px; }
.product-ideal-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-accordion {
  border-top: 1px solid rgba(255,255,255,.10);
}
.product-accordion-item { border-bottom: 1px solid rgba(255,255,255,.10); }
.product-accordion-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.product-accordion-item button i { color: var(--acid); font-style: normal; font-size: 24px; transition: transform .22s ease; }
.product-accordion-item.is-open button i { transform: rotate(45deg); }
.product-accordion-item [data-accordion-content] {
  display: none;
  padding: 0 0 22px;
  color: rgba(238,241,247,.72);
}
.product-accordion-item.is-open [data-accordion-content] { display: block; }
.product-accordion-item p { max-width: 760px; margin: 0; }
.product-related-section { overflow: hidden; }
.product-related-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-mini-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.product-mini-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #080b11;
}
.product-mini-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .32s ease; }
.product-mini-card:hover .product-mini-media img { transform: scale(1.04); }
.product-mini-media span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 9px;
  background: rgba(5,8,12,.72);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-mini-card div { padding: 14px; }
.product-mini-card small { color: var(--muted-2); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-mini-card h3 { min-height: 42px; margin: 7px 0 12px; font-size: 15px; line-height: 1.15; }
.product-mini-card h3 a { color: #fff; text-decoration: none; }
.product-mini-card strong { font-size: 16px; }
.product-related-last { margin-bottom: 52px; }
.product-mobile-sticky { display: none; }

@media (max-width: 1180px) {
  .product-revamp-shell { grid-template-columns: 1fr; }
  .product-revamp-gallery,
  .product-revamp-buybox { position: static; }
  .product-gallery-main,
  .product-gallery-main img { min-height: 540px; }
  .product-info-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body[class*="page-produto"] .site-footer { padding-bottom: 92px; }
  .product-revamp-shell,
  .product-tech-section,
  .product-info-section,
  .product-related-section { width: 100%; margin-top: 0; border-left: 0; border-right: 0; }
  .product-revamp-shell { gap: 0; }
  .product-revamp-gallery { padding: 0; border-top: 0; box-shadow: none; }
  .product-gallery-main,
  .product-gallery-main img { min-height: min(82vh, 560px); }
  .product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 12px 12px;
    margin: 0;
    scroll-snap-type: x mandatory;
  }
  .product-gallery-thumbs button {
    flex: 0 0 34%;
    min-height: 86px;
    scroll-snap-align: start;
  }
  .product-gallery-thumbs img { min-height: 86px; }
  .product-revamp-buybox { padding: 24px 18px; border-top: 0; box-shadow: none; }
  .product-revamp-buybox h1 { font-size: clamp(38px, 14vw, 58px); }
  .product-price-stack { margin: 20px 0; }
  .product-limited-strip { align-items: flex-start; flex-direction: column; gap: 6px; }
  .product-quantity-block { align-items: flex-start; flex-direction: column; }
  .product-shipping-card div { flex-direction: column; }
  .product-trust-grid { grid-template-columns: 1fr 1fr; }
  .product-tech-section,
  .product-info-section,
  .product-related-section { padding: 28px 18px; }
  .product-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .product-section-heading h2 { font-size: clamp(32px, 12vw, 52px); }
  .product-tech-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .product-tech-grid article { min-height: 210px; scroll-snap-align: start; }
  .product-ideal-card { min-height: 320px; padding: 22px; }
  .product-related-row { display: flex; overflow-x: auto; gap: 10px; scroll-snap-type: x mandatory; }
  .product-mini-card { flex: 0 0 64%; scroll-snap-align: start; }
  .product-mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(5,7,12,.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.42);
  }
  .product-mobile-sticky strong { color: #fff; font-size: 17px; }
  .product-mobile-sticky button {
    min-height: 44px;
    border: 0;
    background: var(--acid);
    color: #071011;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .product-gallery-thumbs button { flex-basis: 44%; }
  .product-mini-card { flex-basis: 76%; }
  .product-trust-grid { grid-template-columns: 1fr; }
  .product-price-stack em { position: static; width: max-content; margin-top: 6px; }
}

/* Revamp 0.8.1 — Produto: medidas, comunidade e seções por coleção */
.product-size-guide-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--acid);
  font: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  cursor: pointer;
}
.product-size-guide-link:hover { color: #fff; }
.product-community-section,
.product-custom-sections {
  width: min(1440px, calc(100% - 40px));
  margin: 58px auto 0;
}
.product-community-section .product-section-heading p strong { color: var(--acid); }
.community-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 0 12px;
}
.community-photo-card {
  position: relative;
  flex: 0 0 220px;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: #080a0f;
  color: #fff;
  cursor: pointer;
  scroll-snap-align: start;
  padding: 0;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.community-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .32s ease, filter .32s ease;
}
.community-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.74));
}
.community-photo-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}
.community-photo-card:hover img { transform: scale(1.08); filter: saturate(1.1) contrast(1.08); }
.community-empty-card {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  padding: 28px;
}
.community-empty-card span {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 11px;
}
.community-empty-card p { margin: 0; color: var(--muted); }
.product-custom-sections { display: grid; gap: 18px; }
.product-custom-block,
.product-custom-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  background: rgba(255,255,255,.035);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.product-custom-block.is-banner {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(26px, 5vw, 58px);
}
.product-custom-block.is-banner > img,
.product-custom-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .72;
  transform: scale(1.02);
  transition: transform .42s ease, opacity .42s ease;
}
.product-custom-block.is-banner::after,
.product-custom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(2,4,8,.86), rgba(2,4,8,.48) 52%, rgba(2,4,8,.22));
}
.product-custom-block.is-banner > div,
.product-custom-card > *:not(img) { position: relative; z-index: 2; }
.product-custom-block h2,
.product-custom-block h3,
.product-custom-card h3 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(32px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.product-custom-block p,
.product-custom-card p {
  max-width: 620px;
  color: rgba(238,241,247,.74);
  line-height: 1.55;
}
.product-custom-block strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 900;
}
.product-custom-block strong i { color: var(--acid); font-style: normal; }
.product-custom-block.is-banner:hover img,
.product-custom-card:hover img { transform: scale(1.08); opacity: .86; }
.product-custom-block.is-text {
  padding: clamp(28px, 5vw, 66px);
  text-align: center;
}
.product-custom-block.is-text h2,
.product-custom-block.is-text p { margin-left: auto; margin-right: auto; }
.product-custom-two-cards,
.product-custom-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.product-custom-card-count-1 { grid-template-columns: 1fr; }
.product-custom-card-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.product-custom-card-count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-custom-card:only-child { min-height: 420px; }

.product-custom-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 32px;
}
.product-custom-card span {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.product-modal[hidden] { display: none !important; }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(8px);
}
.product-modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.product-size-modal,
.community-submit-modal,
.community-post-modal {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: #080a0f;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.product-size-modal {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1fr);
}
.size-modal-media { min-height: 560px; background: #10131a; }
.size-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.size-modal-content { padding: clamp(28px, 5vw, 56px); }
.size-modal-content h2 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 72px); line-height: .92; letter-spacing: -.05em; text-transform: uppercase; }
.size-modal-content p { color: var(--muted); }
.size-table-wrap { overflow-x: auto; margin-top: 22px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.size-table th,
.size-table td { border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 10px; text-align: left; }
.size-table th { color: var(--acid); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.community-submit-modal { width: min(720px, 100%); background: #f7f7f4; color: #17191f; }
.community-submit-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.community-submit-tabs span {
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(23,25,31,.42);
  border-bottom: 2px solid transparent;
}
.community-submit-tabs span.is-active { color: #111; border-color: #111; }
.community-submit-form { padding: clamp(28px, 5vw, 58px); }
.community-step { display: grid; gap: 18px; }
.community-step[hidden] { display: none !important; }
.community-step h3 { margin: 0; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.02em; }
.community-source-options { display: grid; gap: 10px; }
.community-source-options button,
.community-upload-box {
  min-height: 72px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  background: #fff;
  color: #17191f;
  font-weight: 800;
  cursor: pointer;
}
.community-upload-box {
  position: relative;
  border-radius: 28px;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
}
.community-upload-box input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.community-upload-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.community-upload-box span { position: relative; z-index: 2; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.9); }
.community-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.community-step label { display: grid; gap: 8px; font-weight: 800; }
.community-step input,
.community-step textarea {
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 18px;
  min-height: 48px;
  padding: 0 14px;
  font: inherit;
}
.community-step textarea { padding: 14px; resize: vertical; }
.community-modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.community-post-modal {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 420px;
  background: #0a0b10;
}
.community-post-image { min-height: 640px; background: #050608; }
.community-post-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.community-post-info { padding: 34px; display: grid; align-content: start; gap: 22px; }
.community-post-profile { display: flex; gap: 12px; align-items: center; }
.community-post-profile > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: var(--acid); color: #071011; font-weight: 900; }
.community-post-profile strong { display: block; color: #fff; }
.community-post-profile small { color: var(--muted); }
.community-post-info h3 { margin: 12px 0 0; text-transform: uppercase; letter-spacing: -.02em; }
.community-look-product { display: flex; gap: 12px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: #fff; text-decoration: none; background: rgba(255,255,255,.04); }
.community-look-product img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.community-look-product small { color: var(--muted); }
.community-look-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.community-look-icons span { padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.1); color: var(--acid); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
@media (max-width: 900px) {
  .product-size-modal,
  .community-post-modal { grid-template-columns: 1fr; }
  .size-modal-media,
  .community-post-image { min-height: 360px; }
  .product-custom-two-cards, .product-custom-card-grid { grid-template-columns: 1fr; }
  .community-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .product-community-section,
  .product-custom-sections { width: calc(100% - 24px); margin-top: 38px; }
  .community-photo-card { flex-basis: 72%; height: 280px; }
  .product-custom-block.is-banner { min-height: 360px; border-radius: 24px; padding: 24px; }
  .product-custom-card { border-radius: 24px; min-height: 300px; padding: 24px; }
  .product-modal { padding: 10px; }
  .product-size-modal,
  .community-submit-modal,
  .community-post-modal { border-radius: 24px; max-height: calc(100vh - 20px); }
  .community-submit-tabs span { font-size: 11px; padding: 14px 4px; }
  .community-submit-form { padding: 28px 18px; }
}
body.has-product-modal { overflow: hidden; }

/* Revamp 0.8.2 — Community upload/admin hotfix */
.community-submit-modal {
  width: min(760px, calc(100% - 18px));
  max-height: min(820px, calc(100vh - 24px));
  overflow: hidden auto;
  border-radius: 28px;
  background: #f7f7f3;
  color: #15171d;
}
.community-submit-modal .product-modal-close,
.product-modal-close.community-close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.055);
  color: #14161b;
  font-size: 24px;
  z-index: 10;
}
.community-submit-header {
  position: relative;
  padding: 34px 70px 20px 34px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.community-submit-header span {
  display: block;
  margin-bottom: 8px;
  color: #2e861f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.community-submit-header h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.community-submit-header p,
.community-step-text {
  margin: 8px 0 0;
  color: rgba(21,23,29,.64);
  line-height: 1.5;
}
.community-submit-tabs span {
  font-weight: 800;
  letter-spacing: .02em;
}
.community-submit-tabs span.is-active {
  color: #121318;
  border-color: #121318;
}
.community-submit-form { padding: clamp(24px, 4vw, 40px); }
.community-step h3 {
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}
.community-source-options button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.community-source-options button strong { font-size: 16px; }
.community-source-options button small {
  max-width: 280px;
  color: rgba(21,23,29,.55);
  text-align: right;
  line-height: 1.35;
}
.community-source-options button:hover {
  border-color: rgba(67,214,44,.8);
  background: #f9fff5;
  transform: translateY(-1px);
}
.community-upload-box {
  min-height: 310px;
  border: 1.5px dashed rgba(21,23,29,.22);
  background:
    linear-gradient(135deg, rgba(67,214,44,.08), transparent 38%),
    #fff;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.community-upload-box.is-dragover {
  border-color: rgba(67,214,44,.9);
  background: #f3ffed;
  transform: translateY(-1px);
}
.community-upload-box.is-invalid {
  border-color: rgba(255,70,70,.9);
  animation: communityUploadShake .22s linear 0s 2;
}
.community-upload-box.has-preview {
  border-style: solid;
  background: #0a0b10;
}
.community-upload-box img {
  z-index: 1;
  filter: saturate(1.04) contrast(1.02);
}
.community-upload-placeholder {
  display: grid;
  gap: 4px;
  text-align: center;
  color: #14161b;
}
.community-upload-placeholder strong { font-size: 17px; }
.community-upload-placeholder small { color: rgba(21,23,29,.55); }
.community-form-grid input,
.community-step textarea {
  background: #fff;
  color: #15171d;
}
.community-form-grid input::placeholder,
.community-step textarea::placeholder { color: rgba(21,23,29,.38); }
.community-primary-btn,
.community-secondary-btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid rgba(21,23,29,.14);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}
.community-primary-btn {
  color: #071011;
  background: linear-gradient(135deg, var(--acid), #E7E7E7);
  border-color: rgba(67,214,44,.45);
}
.community-secondary-btn { color: #15171d; background: #fff; }
.community-review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  padding: 12px;
  background: #fff;
}
.community-review-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
}
.community-review-card strong { display: block; }
.community-review-card small { color: rgba(21,23,29,.58); }
@keyframes communityUploadShake {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@media (max-width: 640px) {
  .community-submit-header { padding: 28px 62px 18px 22px; }
  .community-submit-form { padding: 24px 16px; }
  .community-source-options button {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    border-radius: 22px;
    padding: 18px;
  }
  .community-source-options button small { max-width: none; text-align: left; }
  .community-upload-box { min-height: 260px; }
}

/* Revamp 0.8.7 — Produto: sticky buy desktop full width */
.product-desktop-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 58;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(7,8,11,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 60px rgba(0,0,0,.42);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease;
}
.product-desktop-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.product-desktop-sticky-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
}
.product-desktop-sticky span {
  min-width: 0;
  overflow: hidden;
  color: rgba(238,241,247,.84);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-desktop-sticky strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.product-desktop-sticky button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5f5f0, #bdbdbd);
  color: #071011;
  cursor: pointer;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}
.product-desktop-sticky button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
@media (max-width: 860px) {
  .product-desktop-sticky { display: none !important; }
}


/* Revamp 0.8.10 — Product custom editorial/media sections */
.product-custom-block > video,
.product-custom-card > video,
.product-custom-editorial-frame > video,
.product-custom-editorial-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-custom-block.is-banner > video,
.product-custom-card > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .76;
  transform: scale(1.02);
  transition: transform .42s ease, opacity .42s ease;
}
.product-custom-block.no-overlay::after,
.product-custom-card-grid.no-overlay .product-custom-card::after,
.product-custom-editorial.no-overlay .product-custom-editorial-frame::after {
  display: none;
}
.product-custom-block.no-overlay > img,
.product-custom-block.no-overlay > video,
.product-custom-card-grid.no-overlay .product-custom-card > img,
.product-custom-card-grid.no-overlay .product-custom-card > video {
  opacity: 1;
}
.product-custom-block.is-banner:hover video,
.product-custom-card:hover video { transform: scale(1.08); opacity: .9; }
.product-custom-editorial {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 74px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.09);
  background: #f6f6f2;
  color: #101116;
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}
.product-custom-editorial.media-left .product-custom-editorial-copy { order: 2; }
.product-custom-editorial.media-left .product-custom-editorial-media { order: 1; }
.product-custom-editorial-copy .eyebrow { color: #4b4e56; }
.product-custom-editorial-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: none;
}
.product-custom-editorial-copy p {
  max-width: 680px;
  color: #3d4148;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
}
.product-custom-editorial-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: #101116;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.product-custom-editorial-copy a i { color: #6bcf25; font-style: normal; }
.product-custom-editorial-media {
  display: grid;
  gap: 10px;
  min-height: 440px;
}
.product-custom-editorial-count-1 { grid-template-columns: 1fr; }
.product-custom-editorial-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-custom-editorial-count-3 { grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr 1fr; }
.product-custom-editorial-count-3 .product-custom-editorial-frame:first-child { grid-row: span 2; }
.product-custom-editorial-frame {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 22px;
  background: #11141b;
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
}
.product-custom-editorial-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(2,4,8,.42), rgba(2,4,8,.08));
  pointer-events: none;
}
.product-custom-editorial-frame img,
.product-custom-editorial-frame video {
  transition: transform .45s ease, opacity .45s ease;
}
.product-custom-editorial:hover .product-custom-editorial-frame img,
.product-custom-editorial:hover .product-custom-editorial-frame video { transform: scale(1.045); }
@media (max-width: 900px) {
  .product-custom-editorial,
  .product-custom-editorial.media-left {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 26px;
  }
  .product-custom-editorial.media-left .product-custom-editorial-copy,
  .product-custom-editorial.media-left .product-custom-editorial-media { order: initial; }
  .product-custom-editorial-media { min-height: 320px; }
  .product-custom-editorial-count-2,
  .product-custom-editorial-count-3 { grid-template-columns: 1fr; grid-template-rows: none; }
  .product-custom-editorial-count-3 .product-custom-editorial-frame:first-child { grid-row: auto; }
}


/* Revamp 0.8.12 — Fundo branco Vandals */
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #f6f6f2;
  --panel-3: #ededeb;
  --text: #050505;
  --muted: #444444;
  --muted-2: #727272;
  --line: rgba(5,5,5,.12);
  --acid: #050505;
  --violet: #161616;
  --metal: #303030;
  --danger: #111111;
  --shadow: 0 20px 60px rgba(0,0,0,.10);
}

html, body { background: #ffffff; color: var(--text); }
body {
  background:
    radial-gradient(circle at 88% 0%, rgba(0,0,0,.035), transparent 28rem),
    radial-gradient(circle at 4% 26%, rgba(0,0,0,.025), transparent 24rem),
    #ffffff !important;
}
body::selection { background: #050505; color: #ffffff; }

.site-header {
  background: rgba(255,255,255,.86);
  border-bottom-color: rgba(5,5,5,.10);
  box-shadow: 0 12px 36px rgba(0,0,0,.045);
}
.nav-search,
.cart-pill,
.menu-toggle {
  background: rgba(5,5,5,.035);
  border-color: rgba(5,5,5,.12);
}
.nav-search input { color: #050505; }
.nav-search input::placeholder { color: rgba(5,5,5,.45); }
.cart-pill span,
.btn-primary,
.footer-form a,
.product-buy-actions .btn-primary,
.product-sticky-buy-bar .btn-primary,
.product-mobile-sticky .btn-primary,
.hero-banner-button i,
.collection-card-cta,
.showcase-card-cta,
.home-cta-card-copy span i {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
.btn-secondary,
.nav-actions a,
.desktop-nav a {
  color: var(--muted);
}
.btn-secondary {
  background: #ffffff;
  border-color: rgba(5,5,5,.16);
}
.btn:hover { box-shadow: 0 12px 26px rgba(0,0,0,.10); }
.mobile-drawer {
  background: rgba(255,255,255,.98);
  border-top-color: rgba(5,5,5,.10);
}
.mobile-drawer a { border-bottom-color: rgba(5,5,5,.08); color: var(--muted); }

.hero-copy,
.hero-visual,
.page-hero,
.drop-band,
.manifesto-section,
.newsletter-section,
.auth-card,
.cart-empty-card,
.order-summary,
.checkout-form,
.filter-panel,
.product-card,
.cart-item,
.account-card,
.product-gallery,
.product-buy-box,
.product-revamp-gallery,
.product-revamp-buybox,
.product-shipping-card,
.product-ideal-card,
.product-mini-card,
.product-community-section,
.product-custom-section,
.product-size-modal-card,
.product-community-modal-card,
.product-upload-modal-card,
.product-tech-section,
.product-info-section,
.product-related-section {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
  box-shadow: var(--shadow);
}

.hero-copy::after,
.hero-visual::after,
.page-hero::after { background: radial-gradient(circle, rgba(0,0,0,.06), transparent 62%); }
p, small, .muted, .eyebrow + p, .product-section-heading p { color: var(--muted); }
.eyebrow,
.text-link,
.product-buy-kicker strong,
.product-option-head small,
.product-option-head a,
.product-gallery-mark,
.product-tech-grid span,
.product-accordion-item button i,
.product-community-section .product-section-heading p strong {
  color: #050505 !important;
}

.collection-card,
.product-info,
.feature-list article,
.product-tab,
.community-grid article,
.home-collection-card,
.showcase-product-card,
.performance-card-list .performance-card,
.product-tech-grid article,
.product-trust-grid span,
.product-select-chip span,
.product-quantity-block div,
.product-shipping-card input,
.product-shipping-card button,
.product-mini-card,
.product-accordion,
.product-accordion-item,
.product-custom-card,
.product-editorial-card,
.product-look-card {
  background: #ffffff !important;
  border-color: rgba(5,5,5,.12) !important;
  color: #050505 !important;
}
.collection-card:hover,
.home-collection-card:hover,
.showcase-product-card:hover,
.performance-card-list a.performance-card:hover,
.product-mini-card:hover,
.product-look-card:hover {
  border-color: rgba(5,5,5,.34) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.collection-card::after { background: radial-gradient(circle, rgba(0,0,0,.06), transparent 70%); }
.product-image,
.product-card-image,
.product-mini-media,
.product-gallery-main,
.product-gallery-thumbs button,
.showcase-card-media,
.collection-card-media,
.home-cta-card,
.product-custom-media,
.product-editorial-media {
  background: #f3f3ef !important;
}
.product-image::after,
.hero-mosaic-card::before,
.hero-carousel-slide::before,
.home-collection-card::after,
.showcase-card-media::after,
.home-cta-card::after {
  background:
    linear-gradient(115deg, rgba(255,255,255,.10), rgba(0,0,0,.12)),
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px) !important;
}
.product-image img,
.product-gallery-main img,
.product-gallery-thumbs img,
.product-mini-media img,
.showcase-card-media img,
.home-collection-card img { filter: contrast(1.02) saturate(.96); }

.product-buy-box h1,
.product-revamp-buybox h1,
.product-price-stack strong,
.product-mini-card h3 a,
.product-accordion-item button,
.product-ideal-list span,
.product-quantity-block button,
.product-quantity-block input,
.product-shipping-card input,
.product-shipping-card button,
.product-tech-grid h3,
.product-tech-grid p,
.product-card h3,
.showcase-card-copy h3,
.collection-card-copy h3,
.performance-card h3,
.footer-glitch-title,
.footer-link-section h3,
.site-footer h3,
.footer-tagline {
  color: #050505 !important;
}
.compare-price { color: rgba(5,5,5,.42) !important; }
.product-price-stack,
.product-accordion,
.product-accordion-item,
.footer-bottom,
.footer-legal,
.footer-links-grid,
.product-limited-strip {
  border-color: rgba(5,5,5,.12) !important;
}
.product-price-stack em,
.product-limited-strip,
.product-mini-media span,
.product-badge,
.showcase-badge,
.collection-gender-tab.is-active,
.showcase-tab.is-active,
.product-buy-kicker span,
.product-look-chip,
.product-custom-kicker {
  background: #050505 !important;
  border-color: #050505 !important;
  color: #ffffff !important;
}
.product-limited-strip p,
.product-tech-grid p,
.product-accordion-item [data-accordion-content],
.product-trust-grid span,
.product-select-chip span,
.product-ideal-list span { color: var(--muted) !important; }
.product-select-chip:hover span,
.product-select-chip input:checked + span {
  background: #050505 !important;
  border-color: #050505 !important;
  color: #ffffff !important;
}
.product-quantity-block input { border-color: rgba(5,5,5,.12) !important; }

/* Full-width image/banner sections can stay visually strong without turning the whole site dark */
.hero-mosaic-card,
.hero-carousel-slide,
.home-cta-card,
.home-collection-card,
.showcase-card-media,
.product-custom-banner,
.product-editorial-media {
  background: #0b0b0b !important;
  color: #ffffff !important;
}
.hero-banner-overlay h2,
.hero-banner-overlay p,
.hero-banner-overlay span,
.hero-card-index,
.hero-banner-button,
.collection-card-copy,
.collection-card-copy h3,
.collection-card-copy p,
.home-cta-card-copy,
.home-cta-card-copy h3,
.home-cta-card-copy p,
.home-cta-card-copy strong,
.showcase-card-media span,
.product-custom-banner * {
  color: #ffffff !important;
}
.hero-banner-button,
.home-cta-card-copy span {
  background: rgba(255,255,255,.92) !important;
  color: #050505 !important;
  border-color: rgba(255,255,255,.92) !important;
}

.newsletter-section,
.newsletter-revamp,
.drop-band,
.home-drop-revamp,
.performance-config-section,
.home-icons-section,
.home-showcase-section,
.home-collections-section,
.home-cta-cards-revamp {
  background: #ffffff !important;
  color: #050505 !important;
}
.newsletter-wizard-card,
.newsletter-choice,
.newsletter-field input,
.newsletter-form input,
.footer-form input,
.checkout-form input,
.checkout-form select,
.auth-card input,
.cart-coupon input,
.product-upload-modal input,
.product-upload-modal select,
.product-upload-modal textarea {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
.newsletter-field input::placeholder,
.newsletter-form input::placeholder,
.footer-form input::placeholder,
.product-upload-modal input::placeholder,
.product-upload-modal textarea::placeholder { color: rgba(5,5,5,.45) !important; }

.site-footer.footer-revamp,
.site-footer {
  background: #ffffff !important;
  color: #050505 !important;
  border-top-color: rgba(5,5,5,.12) !important;
}
.footer-glitch-title::before,
.footer-glitch-title::after { color: #050505 !important; opacity: .42; }
.footer-social-link {
  background: #ffffff !important;
  border-color: rgba(5,5,5,.14) !important;
  color: #050505 !important;
}
.footer-social-link:hover { color: #ffffff !important; }
.site-footer a { color: var(--muted) !important; }
.site-footer a:hover { color: #050505 !important; }
.footer-legal p,
.footer-bottom span { color: var(--muted) !important; }
.footer-logo,
.brand-logo { filter: none !important; }

.product-sticky-buy-bar,
.product-mobile-sticky {
  background: rgba(255,255,255,.94) !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
  box-shadow: 0 -18px 44px rgba(0,0,0,.12);
}
.product-sticky-buy-bar strong,
.product-mobile-sticky strong { color: #050505 !important; }

.flash-message,
.inline-alert,
.order-success-card,
.payment-box,
.account-status-row,
.order-row {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
}

@media (max-width: 760px) {
  body { background: #ffffff !important; }
  .site-header { background: rgba(255,255,255,.94); }
}

/* Revamp 0.8.13 — Contraste P&B + Hero Carousel Hotfix */
/* Hero carousel: menor, sem hover/zoom no desktop */
.hero-mode-carousel .hero-carousel,
.hero-mode-carousel .hero-carousel-track,
.hero-mode-carousel .hero-carousel-slide,
.hero-carousel,
.hero-carousel-track,
.hero-carousel-slide {
  min-height: 520px !important;
}
.hero-carousel-slide:hover,
.hero-carousel-slide:focus-visible {
  transform: none !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.22) !important;
  border-color: rgba(5,5,5,.16) !important;
}
.hero-carousel-slide:hover img,
.hero-carousel-slide:focus-visible img {
  transform: scale(1.02) !important;
  filter: contrast(1.02) saturate(.96) !important;
}
.hero-carousel-slide:hover::after,
.hero-carousel-slide:focus-visible::after { opacity: .28 !important; }
.hero-banner-overlay .hero-banner-button,
.hero-banner-overlay .hero-banner-button:visited {
  background: rgba(255,255,255,.94) !important;
  color: #050505 !important;
  border-color: rgba(255,255,255,.94) !important;
}
.hero-banner-overlay .hero-banner-button i {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
.hero-banner-overlay .hero-banner-button:hover {
  background: #ffffff !important;
  color: #050505 !important;
  transform: translateY(-1px);
}

/* Home collection tabs: visible on white background */
.home-collection-tabs,
.showcase-tabs {
  background: #f4f4f1 !important;
  border: 1px solid rgba(5,5,5,.12) !important;
}
.home-collection-tabs button,
.showcase-tabs button {
  color: #050505 !important;
  background: transparent !important;
  border-color: transparent !important;
}
.home-collection-tabs button:hover,
.showcase-tabs button:hover {
  color: #050505 !important;
  background: #ffffff !important;
}
.home-collection-tabs button.is-active,
.showcase-tabs button.is-active,
.collection-gender-tab.is-active,
.showcase-tab.is-active {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}

/* Drop limitado: banner dark, copy readable */
.home-drop-card-revamp .drop-revamp-card,
.drop-revamp-card {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: rgba(5,5,5,.16) !important;
}
.drop-revamp-card::before,
.drop-revamp-card::after {
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.34), rgba(0,0,0,.12)) !important;
}
.drop-revamp-copy,
.drop-revamp-copy .eyebrow,
.drop-revamp-copy h2,
.drop-revamp-copy p,
.drop-revamp-copy span:not(.drop-revamp-button),
.drop-revamp-copy *:not(.drop-revamp-button):not(i) {
  color: #ffffff !important;
}
.drop-revamp-button {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: #ffffff !important;
}
.drop-revamp-button i {
  background: #050505 !important;
  color: #ffffff !important;
}

/* Feito para competir: cards pretos com texto branco */
.performance-card-list .performance-card {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.18) !important;
}
.performance-card-list .performance-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.54)) !important;
}
.performance-card-list .performance-card span,
.performance-card-list .performance-card h3,
.performance-card-list .performance-card p,
.performance-card-list .performance-card a {
  color: #ffffff !important;
}
.performance-card-list .performance-card p { opacity: .76; }
.performance-card-list a.performance-card:hover {
  border-color: #050505 !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.24) !important;
}

/* Acesso antecipado/newsletter: contraste limpo em fundo claro */
.newsletter-wizard-section,
.newsletter-section.newsletter-wizard-section {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
}
.newsletter-copy .eyebrow,
.newsletter-copy h2,
.newsletter-copy p,
.newsletter-step > span,
.newsletter-field span,
.newsletter-success strong,
.newsletter-success p,
.newsletter-success span {
  color: #050505 !important;
}
.newsletter-wizard-card {
  background: #f7f7f4 !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
}
.newsletter-choice-grid button,
.newsletter-back {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
.newsletter-choice-grid button:hover,
.newsletter-back:hover {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
.newsletter-field input {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
.newsletter-field input::placeholder { color: rgba(5,5,5,.45) !important; }

/* Footer glitch: visível em fundo branco */
.footer-glitch-text,
.footer-glitch-text span,
.footer-glitch-text span::before,
.footer-glitch-text span::after,
.footer-glitch-title,
.footer-glitch-title::before,
.footer-glitch-title::after {
  color: #050505 !important;
  text-shadow: none !important;
}
.footer-glitch-text span::before,
.footer-glitch-text span::after { opacity: .38 !important; }

@media (max-width: 980px) {
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 430px !important; }
}
@media (max-width: 640px) {
  .hero-carousel,
  .hero-carousel-track,
  .hero-carousel-slide { min-height: 390px !important; }
}

/* Revamp 0.8.14 — Product page contrast P&B hotfix */
body[class*="page-produto"] {
  background: #ffffff !important;
  color: #050505 !important;
}

body[class*="page-produto"] .product-revamp-shell,
body[class*="page-produto"] .product-community-section,
body[class*="page-produto"] .product-custom-sections,
body[class*="page-produto"] .product-tech-section,
body[class*="page-produto"] .product-info-section,
body[class*="page-produto"] .product-related-section {
  color: #050505 !important;
}

body[class*="page-produto"] .product-revamp-gallery,
body[class*="page-produto"] .product-revamp-buybox,
body[class*="page-produto"] .product-community-section,
body[class*="page-produto"] .product-tech-section,
body[class*="page-produto"] .product-info-section,
body[class*="page-produto"] .product-related-section,
body[class*="page-produto"] .product-accordion,
body[class*="page-produto"] .product-mini-card,
body[class*="page-produto"] .product-shipping-card,
body[class*="page-produto"] .community-empty-card {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.08) !important;
}

body[class*="page-produto"] .product-revamp-buybox h1,
body[class*="page-produto"] .product-section-heading h2,
body[class*="page-produto"] .product-section-heading .eyebrow,
body[class*="page-produto"] .product-buy-kicker span,
body[class*="page-produto"] .product-option-head span,
body[class*="page-produto"] .product-quantity-block > span,
body[class*="page-produto"] .product-price-stack strong,
body[class*="page-produto"] .product-mini-card h3 a,
body[class*="page-produto"] .product-mini-card strong,
body[class*="page-produto"] .product-accordion-item button,
body[class*="page-produto"] .product-size-guide-link,
body[class*="page-produto"] .product-shipping-card label,
body[class*="page-produto"] .product-shipping-card button,
body[class*="page-produto"] .community-empty-card span,
body[class*="page-produto"] .product-community-section .product-section-heading p strong {
  color: #050505 !important;
}

body[class*="page-produto"] .product-revamp-subtitle,
body[class*="page-produto"] .product-section-heading p,
body[class*="page-produto"] .product-price-stack small,
body[class*="page-produto"] .product-shipping-card small,
body[class*="page-produto"] .product-trust-grid span,
body[class*="page-produto"] .product-mini-card small,
body[class*="page-produto"] .community-empty-card p,
body[class*="page-produto"] .product-accordion-item [data-accordion-content],
body[class*="page-produto"] .product-accordion-item p {
  color: #4e4e4e !important;
}

body[class*="page-produto"] .product-price-stack,
body[class*="page-produto"] .product-accordion-item,
body[class*="page-produto"] .product-limited-strip {
  border-color: rgba(5,5,5,.14) !important;
}

body[class*="page-produto"] .product-price-stack em,
body[class*="page-produto"] .product-buy-kicker strong,
body[class*="page-produto"] .product-revamp-badge,
body[class*="page-produto"] .product-mini-media span {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}

body[class*="page-produto"] .compare-price {
  color: rgba(5,5,5,.42) !important;
}

body[class*="page-produto"] .product-limited-strip {
  background: #f4f4f1 !important;
  color: #050505 !important;
}
body[class*="page-produto"] .product-limited-strip span,
body[class*="page-produto"] .product-limited-strip p {
  color: #050505 !important;
}

body[class*="page-produto"] .product-select-chip span,
body[class*="page-produto"] .product-quantity-block div,
body[class*="page-produto"] .product-quantity-block input,
body[class*="page-produto"] .product-shipping-card input,
body[class*="page-produto"] .product-shipping-card button,
body[class*="page-produto"] .product-trust-grid span {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
body[class*="page-produto"] .product-select-chip:hover span,
body[class*="page-produto"] .product-select-chip input:checked + span,
body[class*="page-produto"] .product-quantity-block button:hover,
body[class*="page-produto"] .product-shipping-card button:hover {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
body[class*="page-produto"] .product-quantity-block button {
  color: #050505 !important;
}

body[class*="page-produto"] .product-buy-actions .btn-primary,
body[class*="page-produto"] .product-sticky-buy-bar .btn-primary,
body[class*="page-produto"] .product-mobile-sticky .btn-primary,
body[class*="page-produto"] .product-mobile-sticky button {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
  box-shadow: none !important;
}
body[class*="page-produto"] .product-buy-actions .btn-secondary {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.2) !important;
}
body[class*="page-produto"] .product-buy-actions .btn-secondary:hover {
  background: #f4f4f1 !important;
  border-color: #050505 !important;
}

body[class*="page-produto"] .product-gallery-main,
body[class*="page-produto"] .product-gallery-thumbs button,
body[class*="page-produto"] .product-mini-media,
body[class*="page-produto"] .size-modal-media {
  background: #f3f3ef !important;
  border-color: rgba(5,5,5,.14) !important;
  color: #050505 !important;
}
body[class*="page-produto"] .product-gallery-thumbs button span {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
body[class*="page-produto"] .product-gallery-thumbs button.is-active,
body[class*="page-produto"] .product-gallery-thumbs button:hover {
  border-color: #050505 !important;
}

/* Technical blocks remain intentionally black for contrast */
body[class*="page-produto"] .product-tech-grid {
  background: #050505 !important;
}
body[class*="page-produto"] .product-tech-grid article,
body[class*="page-produto"] .product-ideal-card {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
body[class*="page-produto"] .product-tech-grid span,
body[class*="page-produto"] .product-tech-grid h3,
body[class*="page-produto"] .product-tech-grid p,
body[class*="page-produto"] .product-ideal-card .eyebrow,
body[class*="page-produto"] .product-ideal-card h2,
body[class*="page-produto"] .product-ideal-list span {
  color: #ffffff !important;
}
body[class*="page-produto"] .product-tech-grid p,
body[class*="page-produto"] .product-ideal-list span {
  opacity: .78;
}
body[class*="page-produto"] .product-ideal-list span {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* Custom sections */
body[class*="page-produto"] .product-custom-block.is-text,
body[class*="page-produto"] .product-custom-editorial {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.08) !important;
}
body[class*="page-produto"] .product-custom-block.is-text h2,
body[class*="page-produto"] .product-custom-block.is-text h3,
body[class*="page-produto"] .product-custom-block.is-text p,
body[class*="page-produto"] .product-custom-block.is-text .eyebrow,
body[class*="page-produto"] .product-custom-editorial-copy .eyebrow,
body[class*="page-produto"] .product-custom-editorial-copy h2,
body[class*="page-produto"] .product-custom-editorial-copy p,
body[class*="page-produto"] .product-custom-editorial-copy a,
body[class*="page-produto"] .product-custom-editorial-copy a i {
  color: #050505 !important;
}
body[class*="page-produto"] .product-custom-block.is-banner,
body[class*="page-produto"] .product-custom-card {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: rgba(5,5,5,.16) !important;
}
body[class*="page-produto"] .product-custom-block.is-banner h2,
body[class*="page-produto"] .product-custom-block.is-banner h3,
body[class*="page-produto"] .product-custom-block.is-banner p,
body[class*="page-produto"] .product-custom-block.is-banner .eyebrow,
body[class*="page-produto"] .product-custom-block.is-banner strong,
body[class*="page-produto"] .product-custom-block.is-banner strong i,
body[class*="page-produto"] .product-custom-card span,
body[class*="page-produto"] .product-custom-card h3,
body[class*="page-produto"] .product-custom-card p {
  color: #ffffff !important;
}
body[class*="page-produto"] .product-custom-block.no-overlay > div,
body[class*="page-produto"] .product-custom-card-grid.no-overlay .product-custom-card > *:not(img):not(video) {
  width: max-content;
  max-width: min(100%, 640px);
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(5,5,5,.74) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
}
body[class*="page-produto"] .product-custom-editorial-frame {
  background: #050505 !important;
}

/* Community gallery and modals */
body[class*="page-produto"] .community-photo-card {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: rgba(5,5,5,.18) !important;
}
body[class*="page-produto"] .community-photo-card span {
  color: #ffffff !important;
}
body[class*="page-produto"] .product-size-modal,
body[class*="page-produto"] .community-submit-modal {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
}
body[class*="page-produto"] .size-modal-content h2,
body[class*="page-produto"] .size-modal-content p,
body[class*="page-produto"] .size-table th,
body[class*="page-produto"] .size-table td,
body[class*="page-produto"] .community-submit-header span,
body[class*="page-produto"] .community-submit-header h2,
body[class*="page-produto"] .community-submit-header p,
body[class*="page-produto"] .community-step h3,
body[class*="page-produto"] .community-step-text,
body[class*="page-produto"] .community-step label {
  color: #050505 !important;
}
body[class*="page-produto"] .size-table th,
body[class*="page-produto"] .size-table td {
  border-color: rgba(5,5,5,.14) !important;
}
body[class*="page-produto"] .product-modal-close {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
body[class*="page-produto"] .community-source-options button,
body[class*="page-produto"] .community-upload-box,
body[class*="page-produto"] .community-step input,
body[class*="page-produto"] .community-step textarea,
body[class*="page-produto"] .community-secondary-btn {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.16) !important;
}
body[class*="page-produto"] .community-primary-btn {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
body[class*="page-produto"] .community-post-modal {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
}
body[class*="page-produto"] .community-post-info,
body[class*="page-produto"] .community-post-profile strong,
body[class*="page-produto"] .community-post-profile small,
body[class*="page-produto"] .community-post-info h3 {
  color: #050505 !important;
}
body[class*="page-produto"] .community-post-profile > span,
body[class*="page-produto"] .community-look-icons span {
  background: #050505 !important;
  color: #ffffff !important;
}
body[class*="page-produto"] .community-look-product {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
}
body[class*="page-produto"] .community-look-product small {
  color: #4e4e4e !important;
}

/* Sticky desktop/mobile buy bars */
body[class*="page-produto"] .product-sticky-buy-bar,
body[class*="page-produto"] .product-mobile-sticky {
  background: rgba(255,255,255,.96) !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.14) !important;
  box-shadow: 0 -18px 44px rgba(0,0,0,.10) !important;
}
body[class*="page-produto"] .product-sticky-buy-bar strong,
body[class*="page-produto"] .product-sticky-buy-bar small,
body[class*="page-produto"] .product-mobile-sticky strong {
  color: #050505 !important;
}

@media (max-width: 760px) {
  body[class*="page-produto"] .product-revamp-gallery,
  body[class*="page-produto"] .product-revamp-buybox,
  body[class*="page-produto"] .product-tech-section,
  body[class*="page-produto"] .product-info-section,
  body[class*="page-produto"] .product-related-section {
    box-shadow: none !important;
  }
  body[class*="page-produto"] .product-custom-block.no-overlay > div,
  body[class*="page-produto"] .product-custom-card-grid.no-overlay .product-custom-card > *:not(img):not(video) {
    width: auto;
  }
}


/* Revamp 0.8.15 — Ajustes finais P&B: footer, categorias e seções de produto */
.footer-social-link,
.site-footer .footer-social-link {
  --social-color: #050505;
  color: #050505 !important;
  background: #ffffff !important;
  border-color: rgba(5,5,5,.18) !important;
}
.footer-social-link svg,
.site-footer .footer-social-link svg {
  stroke: currentColor !important;
}
.footer-social-link:hover,
.site-footer .footer-social-link:hover,
.site-footer a.footer-social-link:hover {
  color: var(--social-color) !important;
  border-color: var(--social-color) !important;
  background: color-mix(in srgb, var(--social-color) 12%, #ffffff) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--social-color) 13%, transparent) !important;
}
.footer-social-link[data-platform="instagram"] { --social-color: #e4405f !important; }
.footer-social-link[data-platform="tiktok"] { --social-color: #00f2ea !important; }
.footer-social-link[data-platform="youtube"] { --social-color: #ff0033 !important; }
.footer-social-link[data-platform="x"],
.footer-social-link[data-platform="twitter"] { --social-color: #050505 !important; }
.footer-social-link[data-platform="facebook"] { --social-color: #1877f2 !important; }
.footer-social-link[data-platform="discord"] { --social-color: #5865f2 !important; }
.footer-social-link[data-platform="whatsapp"] { --social-color: #25d366 !important; }
.footer-social-link[data-platform="linkedin"] { --social-color: #0a66c2 !important; }
.footer-social-link[data-platform="pinterest"] { --social-color: #e60023 !important; }
.footer-social-link[data-platform="threads"] { --social-color: #050505 !important; }

.home-category-icons-revamp {
  margin-top: 52px !important;
}
.home-category-icons-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)) !important;
  gap: 16px !important;
}
.home-category-icon-card {
  min-height: 154px !important;
  padding: 20px 12px !important;
  background: #ffffff !important;
  border-color: rgba(5,5,5,.10) !important;
  box-shadow: none !important;
}
.home-category-icon-card span {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.home-category-icon-card img {
  width: clamp(58px, 5.8vw, 88px) !important;
  height: clamp(58px, 5.8vw, 88px) !important;
  filter: none !important;
}
.home-category-icon-card strong {
  color: #050505 !important;
  font-size: 12px !important;
}
.home-category-icon-card:hover {
  background: #f6f6f2 !important;
  border-color: rgba(5,5,5,.22) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.08) !important;
}

body[class*="page-produto"] .product-custom-block.is-media-only,
body[class*="page-produto"] .product-custom-card.is-media-only {
  background: transparent !important;
  color: #050505 !important;
  padding: 0 !important;
  display: block !important;
  min-height: 420px;
}
body[class*="page-produto"] .product-custom-block.is-media-only::after,
body[class*="page-produto"] .product-custom-card.is-media-only::after,
body[class*="page-produto"] .product-custom-block.no-overlay::after,
body[class*="page-produto"] .product-custom-card.no-overlay::after {
  display: none !important;
  background: transparent !important;
}
body[class*="page-produto"] .product-custom-block.is-media-only > img,
body[class*="page-produto"] .product-custom-block.is-media-only > video,
body[class*="page-produto"] .product-custom-card.is-media-only > img,
body[class*="page-produto"] .product-custom-card.is-media-only > video,
body[class*="page-produto"] .product-custom-block.no-overlay > img,
body[class*="page-produto"] .product-custom-block.no-overlay > video,
body[class*="page-produto"] .product-custom-card.no-overlay > img,
body[class*="page-produto"] .product-custom-card.no-overlay > video {
  opacity: 1 !important;
  filter: none !important;
}
body[class*="page-produto"] .product-custom-card.is-media-only > img,
body[class*="page-produto"] .product-custom-card.is-media-only > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[class*="page-produto"] .product-custom-block.is-media-only:hover img,
body[class*="page-produto"] .product-custom-block.is-media-only:hover video,
body[class*="page-produto"] .product-custom-card.is-media-only:hover img,
body[class*="page-produto"] .product-custom-card.is-media-only:hover video {
  opacity: 1 !important;
  filter: none !important;
}

@media (max-width: 760px) {
  .home-category-icons-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 10px !important; }
  .home-category-icon-card { min-height: 126px !important; padding: 14px 8px !important; }
  .home-category-icon-card img { width: 52px !important; height: 52px !important; }
}
@media (max-width: 460px) {
  .home-category-icons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Revamp 0.8.16 — Contraste Vitrine/Coleções Hotfix */
.home-product-showcase,
.home-product-showcase * {
  color: #050505;
}
.home-product-showcase .showcase-product-card {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.08) !important;
}
.home-product-showcase .showcase-product-copy,
.home-product-showcase .showcase-product-copy h3,
.home-product-showcase .showcase-product-copy h3 a,
.home-product-showcase .showcase-product-copy span,
.home-product-showcase .showcase-price-row,
.home-product-showcase .showcase-price-row strong {
  color: #050505 !important;
}
.home-product-showcase .showcase-product-copy span,
.home-product-showcase .showcase-price-row del {
  color: rgba(5,5,5,.58) !important;
}
.home-product-showcase .showcase-view-all {
  color: #050505 !important;
  border-bottom-color: rgba(5,5,5,.55) !important;
}
.home-product-showcase .showcase-product-badge {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}
.home-product-showcase .showcase-discount-badge {
  background: #ffffff !important;
  color: #050505 !important;
  border: 1px solid rgba(5,5,5,.18) !important;
}
.home-product-showcase .showcase-product-media {
  background: #f2f2ee !important;
}
.home-product-showcase .showcase-arrow {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.18) !important;
}
.home-product-showcase .showcase-arrow:hover {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}

body[class*="page-produtos"] .page-hero,
body[class*="page-colecao"] .page-hero,
.page-hero.collection-hero {
  background: #ffffff !important;
  color: #050505 !important;
  border-color: rgba(5,5,5,.12) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.08) !important;
}
body[class*="page-produtos"] .page-hero h1,
body[class*="page-produtos"] .page-hero .eyebrow,
body[class*="page-colecao"] .page-hero h1,
body[class*="page-colecao"] .page-hero .eyebrow,
.page-hero.collection-hero h1,
.page-hero.collection-hero .eyebrow {
  color: #050505 !important;
}
body[class*="page-produtos"] .page-hero p,
body[class*="page-colecao"] .page-hero p,
.page-hero.collection-hero p {
  color: rgba(5,5,5,.66) !important;
}
body[class*="page-produtos"] .page-hero::before,
body[class*="page-produtos"] .page-hero::after,
body[class*="page-colecao"] .page-hero::before,
body[class*="page-colecao"] .page-hero::after,
.page-hero.collection-hero::before,
.page-hero.collection-hero::after {
  background: radial-gradient(circle, rgba(5,5,5,.05), transparent 66%) !important;
}
