/*
  Cuecão — preto & dourado
  - Layout premium inspirado em e-commerces minimalistas
  - Sem dependências, apenas CSS moderno
*/

:root {
  --bg: #0b0b0d;
  --surface: #101015;
  --surface-2: #0e0e12;
  --text: #f3f3f5;
  --muted: #b7b7c3;
  --muted-2: #8b8b98;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);

  --gold: #d7b56d;
  --gold-2: #b8923e;
  --gold-3: #f2db9a;
  --gold-glow: rgba(215, 181, 109, 0.25);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(215, 181, 109, 0.12), transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, rgba(215, 181, 109, 0.08), transparent 60%),
    linear-gradient(180deg, #07070a, var(--bg) 22%, #07070a 100%);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.01em;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip-link:focus {
  left: 10px;
  z-index: 1000;
}

.gold {
  color: var(--gold-3);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 13, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.header.is-scrolled {
  background: rgba(8, 8, 11, 0.86);
  border-bottom-color: rgba(215, 181, 109, 0.24);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.14), rgba(11, 11, 13, 0.85));
}
.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 243, 245, 0.84);
}
.topbar__inner p {
  margin: 0;
  font-weight: 700;
}
.topbar__inner span {
  color: rgba(242, 219, 154, 0.95);
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.brand__logo {
  width: auto;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(215, 181, 109, 0.35);
}
.brand--logo-only .brand__logo {
  height: 58px;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background:
    radial-gradient(18px 18px at 35% 35%, rgba(242, 219, 154, 0.8), rgba(215, 181, 109, 0.14) 55%, transparent 70%),
    linear-gradient(135deg, rgba(215, 181, 109, 0.7), rgba(11, 11, 13, 0.9));
  box-shadow: 0 0 0 1px rgba(215, 181, 109, 0.35) inset;
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.1;
}
.brand__tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.14);
  border: 1px solid rgba(215, 181, 109, 0.3);
  color: var(--gold-3);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: rgba(243, 243, 245, 0.86);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 21, 0.7);
  border-radius: 14px;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 181, 109, 0.45);
  background: rgba(16, 16, 21, 0.9);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.92;
}
.icon-btn--social:hover {
  border-color: rgba(225, 48, 108, 0.45);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 181, 109, 0.35);
  background: linear-gradient(180deg, rgba(215, 181, 109, 0.18), rgba(16, 16, 21, 0.7));
  color: var(--text);
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease, border-color 140ms ease;
}
.cart-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 181, 109, 0.6);
  filter: brightness(1.02);
}
.cart-btn__label {
  font-weight: 700;
  font-size: 14px;
}
.cart-btn__count {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: #0b0b0d;
  background: linear-gradient(180deg, var(--gold-3), var(--gold));
  box-shadow: 0 10px 26px rgba(215, 181, 109, 0.25);
}

/* Hero */
.hero {
  padding: 58px 0 24px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(215, 181, 109, 0.95);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.9), transparent);
}
.hero__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
.hero__subtitle {
  margin: 18px 0 0;
  color: rgba(243, 243, 245, 0.76);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 140ms ease, filter 140ms ease, background 140ms ease, border-color 140ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  color: #0b0b0d;
  background: linear-gradient(180deg, var(--gold-3), var(--gold));
  box-shadow: 0 18px 46px rgba(215, 181, 109, 0.22);
}
.btn--primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.btn--ghost {
  color: rgba(243, 243, 245, 0.92);
  background: rgba(16, 16, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 181, 109, 0.35);
}
.w-full {
  width: 100%;
}

.trust {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(243, 243, 245, 0.78);
  font-size: 14px;
}
.trust strong {
  color: rgba(243, 243, 245, 0.96);
}
.hero__stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 21, 0.62);
  padding: 12px;
  display: grid;
  gap: 4px;
}
.stat strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-3);
}
.stat span {
  color: rgba(243, 243, 245, 0.72);
  font-size: 12px;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero-banner {
  width: min(680px, 100%);
  border-radius: 26px;
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(215, 181, 109, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(16, 16, 21, 0.9), rgba(9, 9, 12, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  position: relative;
}
.hero-banner__track {
  position: relative;
  min-height: 520px;
  height: clamp(420px, 62vw, 560px);
  background: #0a0a0c;
}
.hero-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.hero-banner__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}
.hero-banner__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.35);
}
.hero-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}
.hero-banner__dot.is-active {
  background: var(--gold-3);
  transform: scale(1.2);
}

.hero-card {
  width: min(430px, 100%);
  border-radius: 26px;
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(215, 181, 109, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(16, 16, 21, 0.9), rgba(9, 9, 12, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.hero-card__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    circle at var(--mx, 30%) var(--my, 30%),
    rgba(215, 181, 109, 0.32),
    transparent 55%
  );
  filter: blur(20px);
  opacity: 0.75;
  pointer-events: none;
  transition: background-position 140ms ease;
}
.hero-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.18);
  border: 1px solid rgba(215, 181, 109, 0.3);
  color: rgba(242, 219, 154, 0.95);
}
.chip--outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(243, 243, 245, 0.86);
}
.hero-card__img {
  margin-top: 16px;
  border-radius: 22px;
  height: 240px;
  background:
    radial-gradient(280px 140px at 40% 40%, rgba(215, 181, 109, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.mock-product {
  width: 210px;
  height: 180px;
  border-radius: 28px;
  background:
    radial-gradient(80px 80px at 35% 30%, rgba(242, 219, 154, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26)),
    linear-gradient(135deg, rgba(215, 181, 109, 0.38), rgba(16, 16, 21, 0.88) 60%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(215, 181, 109, 0.25);
  position: relative;
}
.mock-product::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.9), rgba(242, 219, 154, 0.25));
  opacity: 0.9;
}
.hero-card__bottom {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.hero-card__name {
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-card__price {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.from {
  color: rgba(243, 243, 245, 0.6);
  text-decoration: line-through;
  font-size: 12px;
}
.to {
  color: rgba(243, 243, 245, 0.85);
  font-size: 13px;
}
.rating {
  text-align: right;
  color: rgba(242, 219, 154, 0.95);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.rating__meta {
  display: inline-block;
  margin-left: 8px;
  color: rgba(243, 243, 245, 0.75);
  font-size: 12px;
  letter-spacing: -0.01em;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section--alt {
  background:
    radial-gradient(800px 400px at 70% 0%, rgba(215, 181, 109, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section--seo {
  padding-top: 56px;
  padding-bottom: 56px;
}
.seo-content {
  max-width: 760px;
}
.seo-content .section__title {
  font-size: 28px;
  margin-bottom: 18px;
}
.seo-content p {
  margin: 0 0 16px;
  color: rgba(243, 243, 245, 0.74);
  line-height: 1.75;
  font-size: 15px;
}
.seo-content p:last-child {
  margin-bottom: 0;
}
.seo-content a {
  color: rgba(242, 219, 154, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-content a:hover {
  color: #fff;
}
.seo-content strong {
  color: rgba(243, 243, 245, 0.92);
  font-weight: 700;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.section__title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.section__subtitle {
  margin: 8px 0 0;
  color: rgba(243, 243, 245, 0.72);
  max-width: 62ch;
  line-height: 1.65;
}

.section__head--collection {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.catalog-bar {
  display: grid;
  gap: 14px;
}
.catalog-bar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog-bar__count {
  font-size: 14px;
  font-weight: 700;
  color: rgba(243, 243, 245, 0.88);
  letter-spacing: -0.01em;
}
.catalog-bar__panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 21, 0.72);
  padding: 16px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.catalog-bar__filters {
  display: grid;
  gap: 10px;
}
.catalog-bar__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 219, 154, 0.9);
}

.size-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.size-info__label {
  font-size: 13px;
  color: rgba(243, 243, 245, 0.62);
}
.size-chip {
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(243, 243, 245, 0.9);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.search-field--wide {
  width: 100%;
}
.search-field--overlay {
  margin-top: 4px;
}
.search-field:focus-within {
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.12);
}
.search-field svg {
  width: 20px;
  height: 20px;
  fill: rgba(242, 219, 154, 0.85);
  flex-shrink: 0;
}
.search-field input {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--text);
  outline: none;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 0;
}
.search-field input::placeholder {
  color: rgba(243, 243, 245, 0.42);
}
.search-field input:focus {
  border: 0 !important;
  box-shadow: none !important;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 243, 245, 0.86);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease, color 140ms ease;
}
.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 181, 109, 0.35);
}
.pill.is-active {
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(215, 181, 109, 0.16);
  color: rgba(242, 219, 154, 0.98);
  box-shadow: inset 0 0 0 1px rgba(215, 181, 109, 0.2);
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 21, 0.45);
}
.empty-state p {
  margin: 0;
}
.empty-state .small {
  margin-top: 8px;
}
.card {
  grid-column: span 4;
  border-radius: 18px;
  background: rgba(14, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 181, 109, 0.2);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}
.card__media-btn {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: #f7f7f7;
  display: block;
  text-align: left;
}
.card__media {
  height: 300px;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card__media .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 260ms ease;
}
.card:hover .card__media .product-img {
  transform: scale(1.05);
}
.card__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 243, 245, 0.92);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.card__zoom svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.card:hover .card__zoom,
.card__media-btn:focus-visible .card__zoom {
  opacity: 1;
  transform: translateY(0);
}
.card__media-btn:focus-visible {
  outline: 2px solid rgba(215, 181, 109, 0.7);
  outline-offset: -2px;
}
.card__media .thumb {
  width: 170px;
  height: 140px;
  border-radius: 24px;
  background:
    radial-gradient(70px 70px at 35% 30%, rgba(242, 219, 154, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26)),
    linear-gradient(135deg, rgba(215, 181, 109, 0.38), rgba(16, 16, 21, 0.88) 60%);
  border: 1px solid rgba(215, 181, 109, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}
.card__media .thumb::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.9), rgba(242, 219, 154, 0.25));
  opacity: 0.85;
}

.card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.badge-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 243, 245, 0.84);
}
.badge--gold {
  background: rgba(215, 181, 109, 0.14);
  border-color: rgba(215, 181, 109, 0.28);
  color: rgba(242, 219, 154, 0.95);
}
.card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.card__desc {
  margin: 0;
  color: rgba(243, 243, 245, 0.68);
  line-height: 1.6;
  font-size: 14px;
}
.price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.price__main {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price__sub {
  color: rgba(243, 243, 245, 0.62);
  font-size: 12px;
}
.card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.btn--mini {
  padding: 10px 12px;
  border-radius: 14px;
}
.btn--outline {
  background: rgba(16, 16, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 243, 245, 0.92);
}
.btn--outline:hover {
  border-color: rgba(215, 181, 109, 0.35);
  transform: translateY(-1px);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.feature {
  grid-column: span 4;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 21, 0.55);
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background: rgba(215, 181, 109, 0.14);
  border: 1px solid rgba(215, 181, 109, 0.26);
  color: rgba(242, 219, 154, 0.95);
  font-weight: 900;
}
.feature h3 {
  margin: 0;
  letter-spacing: -0.03em;
}
.feature p {
  margin: 8px 0 0;
  color: rgba(243, 243, 245, 0.74);
  line-height: 1.6;
  font-size: 13px;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.review {
  grid-column: span 4;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 21, 0.55);
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

/* Efeito de entrada por scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review__name {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.review__stars {
  color: rgba(242, 219, 154, 0.95);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.review__text {
  margin: 10px 0 0;
  color: rgba(243, 243, 245, 0.76);
  line-height: 1.7;
}
.review__meta {
  margin-top: 12px;
  color: rgba(243, 243, 245, 0.56);
  font-size: 12px;
}

/* Accordion */
.accordion details {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 21, 0.55);
  padding: 6px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}
.accordion {
  display: grid;
  gap: 12px;
}
.accordion summary {
  cursor: pointer;
  font-weight: 900;
  padding: 14px 4px;
  list-style: none;
  letter-spacing: -0.02em;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  float: right;
  color: rgba(242, 219, 154, 0.95);
  font-weight: 900;
}
.accordion details[open] summary::after {
  content: "—";
}
.accordion__content {
  padding: 0 4px 14px;
  color: rgba(243, 243, 245, 0.76);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 54px 0 24px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.brand--footer .brand__tag {
  display: none;
}
.footer__brand {
  max-width: 48ch;
}
.footer__cols {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.footer h3 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 219, 154, 0.95);
}
.footer a {
  display: block;
  padding: 7px 0;
  color: rgba(243, 243, 245, 0.76);
}
.footer a.icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-top: 2px;
  color: var(--text);
}
.footer a.icon-btn:hover {
  color: var(--text);
}
.footer a:hover {
  color: rgba(242, 219, 154, 0.95);
}
.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer__copy {
  margin: 0;
  font-size: 14px;
}
.brands-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.brands-strip__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brands-strip__inner span {
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(243, 243, 245, 0.68);
}
.muted {
  color: rgba(243, 243, 245, 0.6);
}
.small {
  font-size: 12px;
  line-height: 1.5;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}
.search-overlay[hidden] {
  display: none;
}
.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}
.search-overlay__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(80vh, 720px);
  overflow: auto;
  border-radius: 20px;
  background:
    radial-gradient(700px 260px at 40% 0%, rgba(215, 181, 109, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(16, 16, 21, 0.98), rgba(9, 9, 12, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 20px;
  animation: fadeUp 180ms ease;
}
.search-overlay__panel .modal__head strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 24px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  animation: fadeUp 200ms ease;
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  pointer-events: auto;
}
.footer__col--social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lightbox__media {
  background: #fafafa;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
  border-radius: 24px 0 0 24px;
}
.lightbox__img {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
}
.lightbox__info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.lightbox__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.lightbox__desc {
  margin: 0;
  color: rgba(243, 243, 245, 0.72);
  line-height: 1.65;
  font-size: 15px;
}
.lightbox__sizes {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(242, 219, 154, 0.88);
  letter-spacing: 0.02em;
}
.lightbox__info .btn {
  margin-top: auto;
}

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

/* Modals (legacy) */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(640px, calc(100% - 28px));
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}
.modal__card {
  border-radius: 22px;
  background:
    radial-gradient(700px 260px at 40% 0%, rgba(215, 181, 109, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(16, 16, 21, 0.95), rgba(9, 9, 12, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 16px;
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.field__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 219, 154, 0.95);
}
.field input[type="search"],
.field input[type="number"] {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  outline: none;
}
.field input[type="search"]:focus,
.field input[type="number"]:focus {
  border-color: rgba(215, 181, 109, 0.55);
  box-shadow: 0 0 0 4px rgba(215, 181, 109, 0.12);
}

.search-results {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.search-item {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: inherit;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.search-item:hover {
  border-color: rgba(215, 181, 109, 0.35);
  background: rgba(215, 181, 109, 0.08);
  transform: translateY(-1px);
}
.search-item__thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.search-item__copy {
  display: grid;
  gap: 4px;
}
.search-item strong {
  letter-spacing: -0.02em;
}
.search-item span {
  color: rgba(243, 243, 245, 0.65);
  font-size: 12px;
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}
.drawer.is-open {
  display: block;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}
.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(215, 181, 109, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(16, 16, 21, 0.97), rgba(9, 9, 12, 0.92));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  animation: slideIn 180ms ease;
}
@keyframes slideIn {
  from {
    transform: translateX(14px);
    opacity: 0.5;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.drawer__head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer__body {
  padding: 14px 16px;
  overflow: auto;
  display: grid;
  gap: 14px;
}

.cart {
  display: grid;
  gap: 10px;
}
.cart-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}
.cart-item__thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
  padding: 3px;
}
.cart-item__name {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 13px;
}
.cart-item__meta {
  margin-top: 3px;
  color: rgba(243, 243, 245, 0.66);
  font-size: 12px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(243, 243, 245, 0.9);
  cursor: pointer;
}
.qty span {
  width: 36px;
  text-align: center;
  font-weight: 900;
  color: rgba(242, 219, 154, 0.95);
}
.cart__summary {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
}
.row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 10px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 21, 0.9);
  color: rgba(243, 243, 245, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 60;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.footer__whats {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.footer__insta {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.footer__whats:hover,
.footer__insta:hover {
  transform: none;
}
.footer__whats:hover {
  background: none;
}
.footer__insta:hover {
  background: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #34eb7a, #25d366);
  color: #fff;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.45);
}

/* Responsivo */
@media (max-width: 980px) {
  .topbar__inner {
    letter-spacing: 0.08em;
    font-size: 11px;
  }
  .nav {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
  }
  .card {
    grid-column: span 6;
  }
  .feature {
    grid-column: span 6;
  }
  .review {
    grid-column: span 6;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-bar__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .header__inner {
    height: 70px;
  }
  .cart-btn__label {
    display: none;
  }
  .card {
    grid-column: span 12;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .topbar__inner {
    min-height: 54px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }
  .topbar__inner span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .section__title {
    font-size: 30px;
  }
  .feature {
    grid-column: span 12;
  }
  .review {
    grid-column: span 12;
  }
  .lightbox__panel {
    grid-template-columns: 1fr;
  }
  .lightbox__media {
    min-height: 280px;
    border-radius: 24px 24px 0 0;
  }
  .hero-banner__track {
    min-height: 360px;
    height: clamp(320px, 75vw, 440px);
  }
  .brands-strip__inner {
    justify-content: center;
    min-height: 72px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

