:root {
  --black: #0b0b0b;
  --ink: #111111;
  --panel: #1a1a1a;
  --muted: #a7a7a7;
  --light: #f4f4f4;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-2: #ffcc19;
  --angola-red: #c8102e;
  --cyan: #10b4df;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection { background: var(--gold); color: var(--black); }

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader > div {
  display: grid;
  gap: .4rem;
  text-align: center;
  transform: translateY(-12px);
}

.brand-script {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: .85;
  color: var(--gold-2);
  text-shadow: 0 0 32px rgba(212, 175, 55, .22);
}

.loader small {
  color: var(--white);
  letter-spacing: .32em;
  font-size: .7rem;
}

.premium-nav {
  min-height: 80px;
  background: rgba(11, 11, 11, .58);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
  transition: min-height .3s var(--ease), background .3s var(--ease);
}

.premium-nav.scrolled {
  min-height: 68px;
  background: rgba(11, 11, 11, .92);
  box-shadow: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-brand span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: .08em;
  color: var(--gold);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 800;
  padding-inline: .95rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white); }

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, .8);
  background: rgba(212, 175, 55, .1);
}

.badge-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  font-size: .68rem;
  font-weight: 900;
}

.search-bar {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: .25s var(--ease);
}

.search-bar.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(20, 20, 20, .94);
  backdrop-filter: blur(20px);
  padding: .75rem .9rem .75rem 1.2rem;
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.05rem;
}

/* ── HERO ─────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--black);
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.6s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Ken Burns por slide */
@keyframes kenburns {
  from { transform: scale(1.0) translate3d(0,0,0); }
  to   { transform: scale(1.03) translate3d(0,0,0); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.hero-slide.active .hero-img {
  animation: kenburns 10s ease forwards;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, .14), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .48) 52%, rgba(0, 0, 0, .18)),
    linear-gradient(0deg, rgba(11, 11, 11, .96), transparent 46%);
}

/* Conteúdo */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 4;
}

/* Animação de entrada do conteúdo */
.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .9s ease forwards;
}

.hero-anim:nth-child(1) { animation-delay: .2s; }
.hero-anim:nth-child(2) { animation-delay: .45s; }
.hero-anim:nth-child(3) { animation-delay: .65s; }
.hero-anim:nth-child(4) { animation-delay: .82s; }

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

.hero-text-in {
  animation: heroTextIn .55s ease forwards;
}

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

/* Barra inferior */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(11, 11, 11, .58);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* Counter */
.h-counter {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .55);
  min-width: 60px;
}

.h-cur {
  color: var(--gold);
  font-size: 1.05rem;
}

/* Barras de progresso */
.hero-bars {
  display: flex;
  gap: .55rem;
  align-items: center;
}

.h-bar {
  width: 44px;
  height: 2px;
  background: rgba(255, 255, 255, .22);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: width .25s;
}

.h-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: var(--gold);
}

.h-bar.active {
  width: 70px;
}

.h-bar.active::after {
  width: 100%;
  transition: width 5.8s linear;
}

/* Setas de navegação */
.hero-nav {
  display: flex;
  gap: .4rem;
  min-width: 60px;
  justify-content: flex-end;
}

.h-arrow {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: .22s var(--ease);
}

.h-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ── EYEBROW / DISPLAY TITLE / HERO COPY ──────── */
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.display-title {
  max-width: 900px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 800;
  line-height: .9;
}

.hero-copy {
  max-width: 520px;
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(.85rem, 1.5vw, 1rem);
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  padding: .95rem 1.35rem;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* ── MARQUEE ──────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: .9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-block;
  padding: 0 1.4rem;
  font-weight: 900;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
}

.marquee-track .m-sep {
  color: rgba(0, 0, 0, .35);
  padding: 0 .2rem;
  font-size: .6rem;
}

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

.section-pad { padding: clamp(5rem, 8vw, 8rem) 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head h2,
.about-section h2,
.checkout-section h2 {
  max-width: 840px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: .92;
  font-weight: 800;
}

.text-link {
  color: #0f0f0f;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: .25rem;
  white-space: nowrap;
}

.editorial-tile {
  min-height: 620px;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .86)), var(--bg) 50% 22%/cover;
}

.editorial-tile::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  pointer-events: none;
}

.editorial-tile div { position: relative; z-index: 1; max-width: 520px; }

.editorial-tile span,
.journal span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .75rem;
}

.editorial-tile h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: .6rem 0 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: .9;
}

.drop-note {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, .14), transparent 35%),
    var(--panel);
}

.drop-number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, .7);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(7rem, 16vw, 12rem);
  line-height: .75;
  font-weight: 800;
}

.drop-note h3 {
  margin: 1rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
}

.drop-note p { color: var(--muted); font-size: 1.05rem; }

.drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.4rem;
}

.drop-grid span {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .9rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 800;
}

.shop-band {
  background: #0f0f0f;
}

.filter-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--white);
  padding: .7rem 1rem;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.product-card {
  height: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #080808;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform .7s var(--ease), filter .7s var(--ease);
  image-rendering: -webkit-optimize-contrast;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
  filter: contrast(1.08);
}

.product-actions {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  display: flex;
  gap: .6rem;
  opacity: 0;
  transform: translateY(14px);
  transition: .25s var(--ease);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-body { padding: 1.1rem; }

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.product-body h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 900;
}

.product-meta,
.stock-text {
  color: var(--muted);
  font-size: .82rem;
}

.price {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.old-price {
  color: #777;
  text-decoration: line-through;
  font-size: .82rem;
  margin-left: .35rem;
}

.swatches {
  display: flex;
  gap: .35rem;
  margin-top: .9rem;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  min-height: 660px;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: #111;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .82;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}

.collection-card:hover img {
  transform: scale(1.05);
  opacity: .62;
}

.collection-card span {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: .9;
  font-weight: 800;
}

.promo-section {
  padding: 5rem 0;
  background: var(--gold);
  color: var(--black);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.promo-inner .eyebrow { color: var(--black); }

.promo-inner h2 {
  max-width: 860px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  font-weight: 800;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.lookbook-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.lookbook-grid img:nth-child(2) { margin-top: 0; }
.lookbook-grid img:nth-child(4) { height: auto; align-self: auto; }

.about-section {
  background: #101010;
}

.about-logo {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: center 22%;
  background: var(--black);
}

.lead {
  color: rgba(255, 255, 255, .74);
  font-size: 1.18rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, .12);
}

.stats-row span {
  background: var(--panel);
  padding: 1rem;
  color: var(--muted);
}

.stats-row strong {
  display: block;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.journal {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #151515;
}

.journal h3 {
  margin: .7rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.journal p { color: var(--muted); margin: 0; }

.checkout-section { background: #0b0b0b; color: var(--white); }
.checkout-section .eyebrow { color: var(--gold); }
.checkout-section h2 { color: var(--white); }
.checkout-section .text-muted { color: var(--muted) !important; }

.checkout-form,
.checkout-summary {
  background: #141414;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
}

.checkout-form label {
  display: block;
  margin-bottom: .4rem;
  font-size: .74rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #ccc;
}

.form-control,
.form-select {
  border-radius: 0;
  border-color: rgba(255,255,255,.12);
  min-height: 50px;
  background: #1e1e1e;
  color: #fff;
}

.form-control:focus,
.form-select:focus {
  background: #222;
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,.2);
}

.form-control::placeholder { color: #555; }
.form-select option { background: #1e1e1e; }

.checkout-summary h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.summary-item,
.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.summary-total {
  border-bottom: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.faq-section .accordion {
  --bs-accordion-bg: #151515;
  --bs-accordion-color: #fff;
  --bs-accordion-border-color: rgba(255,255,255,.1);
  --bs-accordion-active-bg: #1b1b1b;
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-color: #fff;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon-filter: invert(1);
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  padding: 0 0 0;
  background: #060606;
  position: relative;
  overflow: hidden;
}

.footer-glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--cyan) 70%, transparent 100%);
}

/* Hero row: brand + socials */
.footer-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
  flex-wrap: wrap;
}

.footer-brand-name {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .85;
  color: var(--white);
  display: block;
}

.footer-tagline {
  color: var(--muted);
  font-size: 1rem;
  margin: .6rem 0 0;
  letter-spacing: .04em;
}

.footer-socials {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: .4rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--muted);
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
  transform: translateY(-3px);
}

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

/* 4-column link grid */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

.footer-col-title {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col .footer-location {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .6rem;
  transition: color .2s;
}

.footer-col a:hover { color: var(--white); }

.footer-newsletter-text {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 1rem;
}

.newsletter {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  overflow: hidden;
}

.newsletter input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: .75rem 1rem;
  font-size: .9rem;
}

.newsletter button {
  border: 0;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background .2s;
}

.newsletter button:hover { background: var(--gold-2); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #555;
  font-size: .82rem;
}

.footer-legal {
  display: flex;
  gap: 1.4rem;
}

.footer-legal a {
  color: #555;
  transition: color .2s;
}

.footer-legal a:hover { color: var(--white); }

@media (max-width: 991px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-hero { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 575px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-newsletter-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.product-modal {
  background: #111;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
}

.modal-product-img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.modal-product-body {
  min-height: 720px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-product-body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: .94;
}

.rating { color: var(--gold); margin: .6rem 0 1.2rem; }

.size-row,
.color-row,
.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}

.size-row span,
.material-list span {
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .55rem .8rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 800;
  font-size: .82rem;
}

.modal-price {
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 900;
  margin: .7rem 0 1.4rem;
}

.panel-list {
  display: grid;
  gap: .85rem;
}

.panel-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .85rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .65rem;
}

.panel-item img {
  width: 72px;
  height: 88px;
  object-fit: cover;
}

.panel-item h3 {
  margin: 0;
  font-size: .95rem;
}

.panel-item small { color: var(--muted); }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  margin-top: .45rem;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.qty-control span {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
}

.panel-total {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.panel-total div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.toast { border-radius: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-section {
  background: #0c0c0c;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
  background: #111;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  border-color: rgba(212, 175, 55, .35);
  background: linear-gradient(135deg, rgba(212, 175, 55, .07), transparent 50%), #111;
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}

.t-quote {
  color: rgba(255, 255, 255, .72);
  font-size: .96rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
}

.t-author {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.t-author strong {
  font-size: .9rem;
  font-weight: 900;
}

.t-author span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── WHATSAPP FLOAT ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 990;
  box-shadow: 0 4px 28px rgba(37, 211, 102, .38);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 6px 36px rgba(37, 211, 102, .55);
}

/* ── BACK TO TOP ──────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 989;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .2s, border-color .2s, color .2s;
  pointer-events: none;
  font-size: .95rem;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

@media (max-width: 1199px) {
  .premium-nav .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  /* Nav links empilhados no mobile menu */
  .navbar-collapse .navbar-nav { gap: .25rem; }
  .navbar-collapse .nav-link { padding-block: .7rem !important; border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media (max-width: 991px) {
  .hero-section { min-height: 580px; }
  .hero-bottom { padding: 1rem 1.2rem; }
  .section-head,
  .promo-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .collection-grid { grid-template-columns: 1fr; min-height: 0; }
  .collection-card { min-height: 420px; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid img { aspect-ratio: 3 / 4; height: auto; }
  .modal-product-img,
  .modal-product-body { height: auto; min-height: 0; }
  /* checkout 1 coluna em tablet */
  .checkout-row { flex-direction: column !important; }
  .checkout-form, .checkout-summary { width: 100% !important; }
}

@media (max-width: 767px) {
  /* História: esconder parágrafos extra, manter só o lead */
  .historia-section .mb-4:not(.lead),
  .historia-section p:last-of-type,
  .historia-pill-row { display: none; }

.premium-nav { min-height: 64px; }
  .brand-mark { width: 40px; height: 40px; }
  .icon-btn { width: 36px; height: 36px; }

  /* Hero — zoom para cortar barras Instagram (topo ~11%, base ~19%) */
  @keyframes kenburns {
    from { transform: scale(1.62) translateY(5%); }
    to   { transform: scale(1.65) translateY(5%); }
  }
  .hero-img {
    object-position: center center;
    transform: scale(1.62) translateY(5%);
  }
  .hero-section { min-height: 100svh; }
  .hero-content { padding-inline: 1.2rem; padding-bottom: 5rem; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.4)),
      linear-gradient(0deg, rgba(11,11,11,.98), transparent 52%);
  }
  .display-title { font-size: clamp(2.4rem, 12vw, 4.5rem); }
  .hero-copy { font-size: .92rem; max-width: 88%; }
  .hero-bottom { padding: .75rem 1rem; gap: .75rem; }
  .h-arrow { width: 36px; height: 36px; font-size: .9rem; }

  /* Secções */
  .section-pad { padding: 3.5rem 0; }
  .section-head { gap: 1rem; margin-bottom: 1.5rem; }

  /* Loja */
  .editorial-tile, .drop-note { min-height: 380px; }
  .filter-group { justify-content: flex-start; flex-wrap: wrap; gap: .4rem; }
  .filter-btn { font-size: .68rem; padding: .55rem .85rem; }
  .product-actions {
    position: static;
    opacity: 1;
    transform: none;
    padding: .75rem 0 0;
    background: transparent;
  }

  /* Lookbook */
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid img { aspect-ratio: 3 / 4; height: auto; }

  /* Missão: 1 coluna no mobile */
  .missao-grid { grid-template-columns: 1fr !important; }

  /* História */
  .historia-section .row { flex-direction: column; }

  /* Equipa: stack foto + nome acima, bio abaixo */
  .equipa-row {
    grid-template-columns: 90px 1fr !important;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    padding: 2rem 0;
  }
  .equipa-row-name { border-right: none !important; padding-right: 0 !important; }
  .equipa-row-name span { font-size: 1.5rem !important; }
  .equipa-row-info { grid-column: 1 / -1; padding-left: 0 !important; }
  .equipa-row-photo { width: 80px !important; height: 80px !important; }
  .equipa-row-bio { font-size: .88rem; }

  /* Checkout */
  .checkout-form, .checkout-summary { padding: 1.25rem 1rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .footer-brand-name { font-size: clamp(2.5rem, 14vw, 5rem); }

  /* Float buttons */
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 1.2rem; right: 1.2rem; }
  .back-top { bottom: 5.5rem; right: 1.2rem; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  /* Esconder texto "Na Banda" na navbar em ecrãs muito pequenos */
  .navbar-brand span { font-size: 1.2rem; }
  .hero-content { padding-inline: 1rem; }

  /* Botão a largura total no hero */
  .hero-anim .btn { width: 100%; text-align: center; }

  /* Produtos: 1 coluna abaixo de 480px */
  #productGrid .col-sm-6 { flex: 0 0 100% !important; max-width: 100% !important; }

  /* Coleções 1 coluna */
  .colecoes-grid { grid-template-columns: 1fr !important; }

  /* Stats 2×2 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  /* Modal de produto */
  .modal-product-img { max-height: 55vw; object-fit: cover; }

  /* Checkout */
  .form-control, .form-select { font-size: .92rem; min-height: 46px; }

  /* Drop grid 1 col */
  .drop-grid { grid-template-columns: 1fr; }
  .panel-item { grid-template-columns: 58px 1fr; }
  .panel-item > button { grid-column: 2; justify-self: start; }
}

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; }

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: .1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
}

.stat-num { color: var(--white); }
.stat-suffix { font-size: .7em; color: var(--gold); }
.stat-ao { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: .08em; }
.stat-label { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; } }

/* ══════════════════════════════════════════
   COLECOES
══════════════════════════════════════════ */
.colecoes-section { background: #080808; }

.colecoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.colecao-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.07);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.colecao-card:hover { border-color: rgba(212,175,55,.35); }

.colecao-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.colecao-accent {
  width: 3px;
  height: 48px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.colecao-accent-luanda { background: linear-gradient(to bottom, var(--cyan), var(--gold)); }
.colecao-accent-nacional { background: linear-gradient(to bottom, var(--gold), #c8102e); }

.colecao-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: .4rem;
}

.colecao-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: .95;
  margin-bottom: 1.2rem;
}

.colecao-desc { color: var(--muted); line-height: 1.7; font-size: .95rem; }

.colecao-cores {
  display: flex;
  gap: .5rem;
  margin-top: 1.5rem;
}

.colecao-cores span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
}

@media (max-width: 767px) { .colecoes-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   HISTORIA
══════════════════════════════════════════ */
.historia-section {
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), url('../assets/nossa_historia.png') center/cover no-repeat;
  border-top: 1px solid rgba(255,255,255,.05);
}

.historia-quote-block {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(212,175,55,.18);
  padding: 2.5rem 2rem;
  position: relative;
}

.historia-kimbundu-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.historia-kimbundu {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .8rem;
  quotes: none;
}

.historia-kimbundu-def {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.historia-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 1.5rem 0;
}

.historia-fundador {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.historia-fundador strong { color: var(--white); display: block; font-size: 1rem; }
.historia-fundador span { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.historia-section h2 { margin-bottom: 1.5rem; }
.historia-section p { color: #b0b0b0; line-height: 1.8; }

.historia-pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }

.historia-pill {
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .85rem;
  border-radius: 100px;
}

/* ══════════════════════════════════════════
   NOSSA EQUIPA
══════════════════════════════════════════ */
.equipa-section { background: #0b0b0b; }

.equipa-row {
  display: grid;
  grid-template-columns: 180px 340px 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}

.equipa-row:first-of-type { border-top: 1px solid rgba(255,255,255,.07); }

.equipa-row:hover { background: rgba(255,255,255,.03); }

.equipa-row-photo {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,.4);
  flex-shrink: 0;
  transition: border-color .3s;
}

.equipa-row:hover .equipa-row-photo { border-color: var(--gold); }

.equipa-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.equipa-row-name {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 2.5rem;
}

.equipa-row-name span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.01em;
}

.equipa-row-info { padding-left: .5rem; }

.equipa-row-role {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.equipa-row-bio {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .equipa-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }
  .equipa-row-name {
    border-right: none;
    padding-right: 0;
  }
  .equipa-row-name span { font-size: 1.6rem; }
  .equipa-row-info { grid-column: 1 / -1; padding-left: 0; }
}

/* ══════════════════════════════════════════
   MISSAO / VISAO / INSPIRACAO
══════════════════════════════════════════ */
.missao-section {
  background: #0b0b0b;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.missao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}

.missao-card {
  background: #0b0b0b;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background .3s, color .3s;
}

.missao-card:hover {
  background: var(--gold);
}

.missao-card:hover .missao-label,
.missao-card:hover h3,
.missao-card:hover p,
.missao-card:hover .missao-icon {
  color: #0b0b0b;
}

.missao-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: color .3s;
}

.missao-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.missao-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.missao-card p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 767px) {
  .missao-grid { grid-template-columns: 1fr; }
  .missao-card { padding: 2.5rem 2rem; }
}

/* ══════════════════════════════════════════
   PARCERIA
══════════════════════════════════════════ */
.parceria-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #0d1a0d 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.parceria-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   ANGOLA INSPIRA
══════════════════════════════════════════ */
.angola-inspira-section {
  background: #0b0b0b;
  overflow: hidden;
}

.angola-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  grid-template-rows: 1fr;
  min-height: 600px;
  gap: 4px;
}

/* Coluna esquerda — imagem grande */
.angola-editorial-left {
  position: relative;
  overflow: hidden;
}

.angola-editorial-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
  filter: grayscale(30%);
}

.angola-editorial-left:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.angola-editorial-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.angola-editorial-tag span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.angola-editorial-tag span:last-child {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
}

/* Coluna central — grelha 2×2 */
.angola-editorial-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.angola-editorial-cell {
  position: relative;
  overflow: hidden;
}

.angola-editorial-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: grayscale(40%);
}

.angola-editorial-cell:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.angola-editorial-tag-sm {
  position: absolute;
  bottom: .6rem;
  left: .75rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.45);
  padding: .2rem .5rem;
  backdrop-filter: blur(4px);
}

/* Coluna direita — texto */
.angola-editorial-headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.5rem;
  background: #0f0f0f;
  border-left: 1px solid rgba(255,255,255,.06);
}

.angola-editorial-headline h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: .5rem 0 1rem;
  line-height: 1.05;
}

.angola-editorial-headline p:not(.eyebrow) {
  color: #888;
  font-size: .88rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .angola-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .angola-editorial-left { grid-column: span 2; min-height: 300px; }
  .angola-editorial-headline { grid-column: span 2; padding: 2.5rem 2rem; }
}

@media (max-width: 575px) {
  .angola-editorial { grid-template-columns: 1fr; }
  .angola-editorial-right { grid-template-columns: 1fr 1fr; }
  .angola-editorial-left, .angola-editorial-headline { grid-column: span 1; }
}

.parceria-text h2 { margin-bottom: .8rem; }
.parceria-text p { color: var(--muted); max-width: 500px; }

.parceria-ctas { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 767px) {
  .parceria-inner { flex-direction: column; }
  .parceria-ctas { width: 100%; }
  .parceria-ctas .btn { width: 100%; justify-content: center; }
}
