/* ─── Design tokens ─────────────────────────────────────── */
:root {
  --yellow:     #F5C518;
  --yellow-dk:  #D4A800;
  --black:      #0A0A0A;
  --off-black:  #111111;
  --white:      #FFFFFF;
  --gray-100:   #F2F2F2;
  --gray-200:   #E0E0E0;
  --gray-400:   #999999;
  --gray-600:   #555555;

  --font-display: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Outfit', 'Segoe UI', sans-serif;

  --bar-h:    36px;
  --nav-h:    68px;
  --top-h:    calc(var(--bar-h) + var(--nav-h));
  --cart-w:   400px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Announcement bar ───────────────────────────────────── */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  background: var(--yellow);
  z-index: 1001;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--black);
  white-space: nowrap;
  padding: 0 48px;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Nav ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: var(--bar-h);
  left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.6); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .14em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

#cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
  position: relative;
}
#cart-btn:hover { color: var(--yellow); }
#cart-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.cart-btn-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.cart-btn-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.cart-btn-price {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .2s;
}
#cart-btn:hover .cart-btn-price { color: var(--yellow); }

#cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--yellow);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
#cart-count.visible { display: flex; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .2s, opacity .2s;
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  margin-top: var(--top-h);
  height: calc(100vh - var(--top-h));
  min-height: 500px;
  background: var(--black);
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.hero-slide {
  flex: 0 0 33.333%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

/* Slide 1 — Brand editorial */
.hero-slide-brand { justify-content: flex-start; }

.hero-brand-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--black) 30%, var(--yellow) 100%);
}

.hero-brand-content {
  position: relative;
  z-index: 2;
  padding: 0 7% 0 8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  opacity: .9;
}

.hero-brand-title {
  font-family: var(--font-display);
  font-size: clamp(88px, 13vw, 176px);
  line-height: .92;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.hero-brand-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--yellow);
  margin-top: 20px;
}

.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.hero-brand-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .12em;
  padding: 14px 40px;
  transition: background .2s, color .2s, transform .15s;
}
.hero-brand-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-brand-number {
  position: absolute;
  bottom: -10px;
  right: 4%;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

/* Slides 2 & 3 — Promo images */
.hero-slide-ph { background: #0c0c0c; justify-content: center; }

.hero-slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.18);
  text-align: center;
  padding: 0 24px;
}
.hero-slide-placeholder svg { width: 44px; height: 44px; }
.hero-slide-placeholder span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-slide-placeholder small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(255,255,255,.1);
}

/* Image injected by JS */
.hero-slide-ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, border-color .2s, color .2s;
}
.banner-arrow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.banner-arrow svg { width: 16px; height: 16px; }
.banner-prev { left: 20px; }
.banner-next { right: 20px; }

/* Dots */
.banner-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-dot {
  width: 24px; height: 3px;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .3s;
}
.banner-dot.active { background: var(--yellow); width: 40px; }

/* Editorial counter */
.banner-counter {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}
#banner-current { color: var(--yellow); }
.banner-counter-sep { margin: 0 2px; }

/* ─── Destaques ──────────────────────────────────────────── */
#destaques {
  display: none; /* JS reveals this once featured products exist */
  background: var(--black);
  padding: 80px 5% 90px;
}
.destaques-inner { max-width: 1220px; margin: 0 auto; }

.destaques-head {
  border-bottom-color: rgba(255,255,255,.12);
}
.destaques-head .section-title { color: var(--white); }
.section-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ─── Filter bar ─────────────────────────────────────────── */
#filter-bar {
  background: var(--off-black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: var(--top-h);
  z-index: 800;
}
#filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--gray-400);
  padding: 16px 18px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ─── Products section ───────────────────────────────────── */
#produtos {
  max-width: 1220px;
  margin: 0 auto;
  padding: 64px 32px;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .06em;
}
.section-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ─── Product card ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow), 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative;
  padding-top: 115%;
  background: var(--gray-100);
  overflow: hidden;
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* Editorial product number */
.product-num {
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(0,0,0,.06);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.product-img-wrap img ~ .product-num {
  color: rgba(255,255,255,.12);
}

.product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a 0%, #222 100%);
  color: var(--gray-600);
  gap: 12px;
}
.product-placeholder svg { width: 44px; height: 44px; opacity: .3; }
.product-placeholder span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .4;
}

.badge-esgotado {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.75);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.badge-novo {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
  flex: 1;
}
.product-price {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--black);
  margin-bottom: 16px;
}
.product-price .cents {
  font-size: 16px;
  color: var(--gray-600);
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.size-pill {
  background: none;
  border: 1.5px solid var(--gray-200);
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  color: var(--black);
  transition: border-color .15s, background .15s, color .15s;
}
.size-pill:hover:not(.out) { border-color: var(--yellow); background: var(--yellow); color: var(--black); }
.size-pill.selected { border-color: var(--yellow); background: var(--yellow); color: var(--black); }
.size-pill.out { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

.add-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 13px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.add-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.add-btn:disabled { opacity: .35; cursor: not-allowed; }
.add-btn.added { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* ─── Loading / empty states ──────────────────────────────── */
.products-loading,
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 0;
  color: var(--gray-400);
}
.products-loading svg { width: 40px; height: 40px; margin: 0 auto 16px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.products-empty h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: .04em; margin-bottom: 8px; color: var(--gray-600); }
.products-empty p { font-size: 14px; color: var(--gray-400); }

/* ─── Cart overlay ───────────────────────────────────────── */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
#cart-overlay.open { opacity: 1; visibility: visible; }

/* ─── Cart drawer ─────────────────────────────────────────── */
#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: var(--cart-w);
  max-width: 100vw;
  height: 100vh;
  background: var(--off-black);
  color: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .1em;
}
.cart-close {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}
.cart-close:hover { color: var(--white); }
.cart-close svg { width: 22px; height: 22px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-items::-webkit-scrollbar { width: 3px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); }

.cart-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--gray-400);
}
.cart-empty svg { width: 44px; height: 44px; margin: 0 auto 14px; opacity: .3; }
.cart-empty p { font-size: 13px; letter-spacing: .04em; }

.cart-item { display: flex; gap: 14px; align-items: flex-start; }
.cart-item-img {
  width: 70px; height: 86px;
  object-fit: cover;
  background: #1a1a1a;
  flex-shrink: 0;
}
.cart-item-img-placeholder {
  width: 70px; height: 86px;
  background: #1a1a1a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}
.cart-item-img-placeholder svg { width: 22px; height: 22px; }

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-size { font-size: 11px; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--yellow);
}
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: background .15s;
}
.qty-btn:hover { background: var(--yellow); color: var(--black); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 16px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
  transition: color .2s;
}
.cart-item-remove:hover { color: #e53e3e; }
.cart-item-remove svg { width: 15px; height: 15px; }

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.cart-subtotal span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.cart-total-value {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .02em;
  color: var(--yellow);
}
.cart-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.cart-whatsapp:hover { background: #1ea855; }
.cart-whatsapp svg { width: 21px; height: 21px; flex-shrink: 0; }

/* ─── Product card (clickable) ───────────────────────────── */
.product-card { cursor: pointer; }

/* ─── Product detail modal ───────────────────────────────── */
#product-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
#product-overlay.open { opacity: 1; visibility: visible; }

#product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(880px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
}
#product-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.product-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.product-modal-close:hover { background: var(--yellow); border-color: var(--yellow); }
.product-modal-close svg { width: 18px; height: 18px; }

.product-modal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  cursor: default;
}

.product-modal-img-wrap {
  position: relative;
  background: var(--gray-100);
  min-height: 460px;
}
.product-modal-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-modal-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
}
.product-modal-name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .02em;
  line-height: 1.05;
  margin: 8px 0 14px;
}
.product-modal-price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--black);
  margin-bottom: 22px;
}
.product-modal-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 26px;
}
.product-modal-info .size-pills { margin-bottom: 22px; }

/* Modal image gallery (multiple photos) */
.product-modal-gallery-img { opacity: 0; transition: opacity .3s; }
.product-modal-gallery-img.active { opacity: 1; }

.modal-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,.85);
  border: none;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.modal-gallery-arrow:hover { background: var(--yellow); }
.modal-gallery-arrow svg { width: 16px; height: 16px; }
.modal-gallery-prev { left: 14px; }
.modal-gallery-next { right: 14px; }

.modal-gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.modal-gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.modal-gallery-dot.active { background: var(--yellow); }

/* ─── Sobre ───────────────────────────────────────────────── */
#sobre {
  background: var(--black);
  padding: 100px 5%;
  color: var(--white);
}

.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}
.sobre-visual-mark {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 180px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.02em;
  opacity: .92;
}
.sobre-visual-year {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: inline-block;
}

.sobre-text-col { display: flex; flex-direction: column; align-items: flex-start; }

.sobre-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.sobre-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 72px);
  letter-spacing: .02em;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--white);
}

.sobre-text {
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 400px;
}

.sobre-cta {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .12em;
  padding: 13px 36px;
  transition: border-color .2s, background .2s, color .2s;
}
.sobre-cta:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: #080808;
  color: var(--white);
  padding: 52px 40px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .14em;
}
.footer-logo span { color: var(--yellow); }

.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (min-width: 1400px) {
  #produtos, .destaques-inner { max-width: 1600px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.06);
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }

  #filter-bar { padding: 0 16px; }
  .filter-btn { font-size: 14px; padding: 14px 14px; }

  #produtos { padding: 48px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  #destaques { padding: 48px 16px 56px; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-visual-mark { font-size: 100px; }

  #cart-drawer { width: 100vw; }

  #product-modal { width: 94vw; max-height: 92vh; }
  .product-modal-card { grid-template-columns: 1fr; }
  .product-modal-img-wrap { min-height: 320px; }
  .product-modal-info { padding: 30px 22px; }
  .product-modal-name { font-size: 28px; }
  .product-modal-price { font-size: 24px; }

  footer { padding: 40px 20px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-location { display: none; }

  .hero-brand-title { font-size: clamp(72px, 18vw, 110px); }
  .banner-prev { left: 10px; }
  .banner-next { right: 10px; }
  .banner-counter { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-brand-content { padding: 0 6%; }

  .product-info { padding: 12px 14px 16px; }
  .product-cat { font-size: 8px; margin-bottom: 4px; }
  .product-name { font-size: 15px; margin-bottom: 8px; }
  .product-price { font-size: 17px; margin-bottom: 10px; }
  .product-num { font-size: 34px; top: 4px; left: 8px; }
  .badge-esgotado, .badge-novo { font-size: 7px; padding: 3px 6px; top: 8px; right: 8px; }
  .size-pills { gap: 4px; margin-bottom: 10px; }
  .size-pill { padding: 4px 7px; font-size: 9px; }
  .add-btn { padding: 9px; font-size: 11px; letter-spacing: .06em; }
}
