/* RESET & FONTES */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Helvetica (tipografia da marca) ── */
@font-face {
  font-family: 'HelveticaHOKEN';
  src: url('../fonts/helvetica-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaHOKEN';
  src: url('../fonts/helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaHOKEN';
  src: url('../fonts/helvetica-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

/* ================================
   INVERSÃO GLOBAL: DARK THEME
================================ */
body {
  background-color: var(--void);
  color: var(--t-primary);
  overflow-x: hidden;
}

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

/* ================================
   HEADER FIXO & TRANSPARENTE
================================ */
.hoken-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  background: transparent;
  z-index: 1000;
  mix-blend-mode: difference;
  color: #fff;
}

.h-left,
.h-right {
  flex: 1;
  display: flex;
  gap: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.h-right {
  justify-content: flex-end;
}

.h-center {
  flex: 1;
  text-align: center;
}

.h-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* ================================
   GAVETA DO CARRINHO (DRAWER)
================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--void);
  border-left: 2px solid #333;
  z-index: 2000;
  box-shadow: -5px 0 15px rgba(255, 255, 255, 0.05);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ================================
   GAVETA DO CARRINHO (CABEÇALHO BLINDADO)
================================ */
.cart-drawer-header {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  /* O SEGREDO ESTÁ AQUI: Proíbe a quebra de linha! */
  padding: 30px;
  border-bottom: 1px solid #333;
  width: 100% !important;
}

.cart-drawer-header h3 {
  font-size: 14px !important;
  font-weight: 900 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  width: auto !important;
  /* Impede que o h3 ocupe 100% do espaço */
  white-space: nowrap !important;
  line-height: 1 !important;
}

.close-cart {
  background: none !important;
  border: none !important;
  font-size: 28px !important;
  cursor: pointer !important;
  color: #fff !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  width: auto !important;
  /* Impede que o botão herde width: 100% da landing page */
  height: auto !important;
  transition: transform 0.2s;
}

.close-cart:hover {
  transform: scale(1.1);
}

.cart-drawer-body {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.empty-cart-msg {
  text-align: center;
  margin-top: 50%;
  color: #666;
  font-size: 10px;
  line-height: 1.8;
}

.cart-drawer-footer {
  padding: 30px;
  border-top: 1px solid #333;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  font-weight: 900;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-checkout:hover {
  background: #ccc;
  letter-spacing: 1px;
}

/* ================================
   HERO SECTION (INICIO) - COM IMAGEM PROPORCIONAL
================================ */
.hero-brutalist {
  width: 100%;
  /* Ocupa toda a largura do ecrã */
  height: auto;
  /* Removemos o 100vh. A altura agora é automática! */

  /* O SEGREDO ESTÁ AQUI: Substitui estes números pela proporção da tua imagem real */
  /* Se for formato deitado/desktop: usa 16 / 9 */
  /* Se for quadrada: usa 1 / 1 */
  /* Se for foto na vertical/retrato: usa 4 / 5 ou 9 / 16 */
  aspect-ratio: 16 / 9;

  position: relative;
  padding: 40px;
  background-image: url('../images/seu_fundo_hero.webp');

  /* Com o aspect-ratio definido em cima, o 'cover' vai apenas preencher a caixa perfeita */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111111;
}

/* Os textos continuam iguais */
.hero-text-bottom-left {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.hero-text-bottom-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  color: #fff;
}

/* ================================
   TÍTULO DE SECÇÃO BRUTALISTA
================================ */
.brutalist-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 4px solid #ffffff;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.brutalist-title-row h2 {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.8;
  margin: 0;
  color: #ffffff;
}

.brutalist-title-row .badge-black {
  background-color: #ffffff;
  color: #000000;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  white-space: nowrap;
  margin-bottom: 5px;
}

/* ================================
   GRELHA CONTÍNUA / SEAMLESS LOOKBOOK
================================ */
.hoken-drop-showcase {
  width: 100%;
  max-width: 100vw;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.seamless-grid {
  display: flex;
  width: 100%;
  background-color: #000;
}

/* FUNDO MANTIDO BRANCO PARA O MULTIPLY BLEND FUNCIONAR */
.grid-item-seamless {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/4;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.grid-item-seamless img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  mix-blend-mode: multiply;
}

.grid-item-seamless:hover img {
  transform: scale(1.05);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.product-footer h2 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
  color: #ffffff;
}

.product-footer .price {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
}

/* SETAS DE SLIDE BRUTALISTAS */
.slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--void);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  box-shadow: 4px 4px 0 #fff;
  transition: all 0.1s ease;
}

.slider-arrow:active {
  background: #fff;
  color: #000;
  transform: translateY(-50%) translate(4px, 4px);
  box-shadow: 0 0 0 #fff;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* ================================
   TYPOGRAPHY
================================ */
.huge-typography-section {
  position: relative;
  padding: 100px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.huge-text-block {
  display: flex;
  line-height: 0.85;
}

.solid-text {
  font-size: 8vw;
  font-weight: 900;
  letter-spacing: -3px;
  margin-right: 20px;
  color: #fff;
}

.outline-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.outline-text {
  font-size: 8vw;
  font-weight: 900;
  letter-spacing: -3px;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.small-caps {
  font-size: 10px;
  font-weight: 900;
  margin-top: 20px;
  margin-left: 10px;
  color: #aaa;
}

.floating-graffiti {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  pointer-events: none;
  z-index: 10;
  filter: invert(1);
}

/* ================================
   SPLIT BANNER & BARRA
================================ */
.split-brutalist-wrapper {
  padding: 0 40px 100px 40px;
}

.split-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  position: relative;
}

.split-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease;
}

.split-img:hover img {
  transform: scale(1.05);
}

.center-line-text {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 900;
  z-index: 5;
}

.bg-offset {
  background: var(--void);
  color: #ffffff;
  padding: 5px 15px;
}

.solid-line {
  flex: 1;
  height: 2px;
  background: var(--void);
}

.full-width-black-bar {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  font-weight: 900;
  margin-top: 15px;
  transition: 0.3s;
}

.full-width-black-bar:hover {
  background: #cccccc;
  letter-spacing: 2px;
}

/* ================================
   HOKEN ON THE STREETS
================================ */
.on-the-streets-section {
  padding: 0 40px 100px 40px;
}

.streets-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.streets-title h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.streets-title .arrows i {
  font-size: 24px;
  cursor: pointer;
}

.streets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.street-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.street-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.street-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
}

/* ================================
   WHAT DO WE DO? (MANIFESTO)
================================ */
.what-we-do-section {
  padding: 0 40px 100px 40px;
}

.wwd-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}

.wwd-header h2 {
  font-size: 6vw;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
}

.wwd-sub {
  font-size: 10px;
  font-weight: 900;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #aaa;
}

.wwd-manifesto-box {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 60px;
  background-color: #111111;
  border: 2px solid #333;
}

.wwd-text {
  max-width: 400px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: none;
  color: #dddddd;
}

.wwd-text p {
  margin-bottom: 15px;
}


/* ============================================================
   PÁGINA DE PRODUTO — pkp-
   Estilo alinhado com a landing page HOKEN™
   ============================================================ */

/* ── CONTAINER ── */
.pkp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--void);
}

/* ── GALERIA ── */
.pkp-gallery {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--bd);
  overflow: hidden;
}

.pkp-main-img-wrap {
  position: relative;
  flex: 1;
  background: var(--abyss);
  overflow: hidden;
}

.pkp-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.pkp-slide.active {
  display: block;
}

.pkp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s;
}

.pkp-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
}

.pkp-no-img svg {
  width: 50%;
}

.pkp-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  background: rgba(10, 10, 10, 0.85);
  padding: 5px 12px;
  border: 1px solid var(--bd-mid);
  text-transform: uppercase;
}

.pkp-colorchip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Miniaturas */
.pkp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
  border-top: 1px solid var(--bd);
  flex-shrink: 0;
}

.pkp-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--abyss);
  cursor: pointer;
  position: relative;
}

.pkp-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}

.pkp-thumb.active::after {
  border-color: var(--t-primary);
}

.pkp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.pkp-thumb:hover img,
.pkp-thumb.active img {
  opacity: 0.9;
}

/* ── INFO PAINEL ── */
.pkp-info {
  padding: 80px 48px 60px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.pkp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pkp-eyebrow-ref {
  color: var(--t-muted);
}

.pkp-eyebrow-sep {
  color: var(--bd-mid);
}

.pkp-eyebrow-col {
  color: var(--t-primary);
}

/* Título */
.pkp-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--t-primary);
  margin-bottom: 10px;
}

/* Colorway */
.pkp-colorway {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Preço */
.pkp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.pkp-preco-val {
  font-size: 30px;
  font-weight: 900;
  color: var(--t-primary);
}

.pkp-preco-antigo {
  font-size: 16px;
  color: var(--t-muted);
  text-decoration: line-through;
}

.pkp-preco-note {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--t-muted);
  text-transform: uppercase;
}

/* Specs */
.pkp-specs {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 32px;
}

.pkp-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--abyss);
  padding: 11px 14px;
  font-size: 10px;
}

.pkp-spec-k {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.pkp-spec-v {
  color: var(--t-primary);
}

/* Size label */
.pkp-size-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Tamanhos */
.pkp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.pkp-sz {
  width: 52px;
  height: 52px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.pkp-sz:hover:not(:disabled) {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

.pkp-sz.ativo {
  background: var(--t-primary);
  color: var(--void);
  border-color: var(--t-primary);
}

.pkp-sz:disabled {
  color: var(--bd-mid);
  border-color: var(--bd);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Botão carrinho */
.pkp-btn-cart {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
  margin-bottom: 32px;
}

.pkp-btn-cart:hover:not(:disabled) {
  background: var(--gold);
}

.pkp-sold-out {
  background: var(--bd-mid);
  color: var(--t-muted);
  cursor: not-allowed;
}

/* Divider */
.pkp-divider {
  height: 1px;
  background: var(--bd);
  margin-bottom: 32px;
}

/* Blocos de texto (Detalhes, Guia) */
.pkp-sec-block {
  margin-bottom: 32px;
}

.pkp-sec-heading {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pkp-sec-text {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Tabela de tamanhos */
.pkp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.pkp-table th,
.pkp-table td {
  padding: 12px 6px;
  border-bottom: 1px solid var(--bd);
  text-align: right;
  color: var(--t-muted);
  letter-spacing: 0.06em;
}

.pkp-table th:first-child,
.pkp-table td:first-child {
  text-align: left;
  color: var(--t-secondary);
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkp-table thead th {
  color: var(--t-muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 900;
}

/* NFC block */
.pkp-nfc-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--abyss);
  border: 1px solid var(--bd);
  padding: 20px 24px;
  margin-top: 32px;
}

.pkp-nfc-icon {
  font-size: 20px;
  color: var(--bd-mid);
  flex-shrink: 0;
  padding-top: 2px;
}

.pkp-nfc-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pkp-nfc-desc {
  font-size: 10px;
  color: var(--t-muted);
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pkp-container {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .pkp-gallery {
    position: relative;
    top: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }

  .pkp-main-img-wrap {
    aspect-ratio: 4/5;
    height: auto;
  }

  .pkp-slide {
    height: 100%;
  }

  .pkp-slide img {
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  .pkp-thumbs {
    display: none;
  }

  .pkp-info {
    padding: 32px 20px 60px;
    overflow-y: visible;
  }

  .pkp-specs {
    display: none;
  }

  .pkp-title {
    font-size: 26px !important;
  }

  .pkp-preco-val {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .pkp-sz {
    width: 44px;
    height: 44px;
    font-size: 9px;
  }

  .pkp-btn-cart {
    height: 52px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}

/* ── ALERT CUSTOM ── */
.brutalist-alert-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.brutalist-alert-overlay.show {
  display: flex;
}

.brutalist-alert-box {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  padding: 40px;
  max-width: 400px;
  width: 90%;
}

.alert-header {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--casino);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.alert-body {
  font-size: 11px;
  color: var(--t-secondary);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 28px;
  text-transform: none;
}

.alert-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.alert-btn:hover {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

/* ================================
   CARRINHO & CHECKOUT
================================ */
.cart-page-container,
.checkout-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 40px 80px 40px;
}

.brutalist-title-left {
  margin-bottom: 50px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.brutalist-title-left h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brutalist-title-left span {
  font-size: 12px;
  font-weight: 600;
  color: #aaaaaa;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 80px;
}

.cart-item-row {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #333333;
}

.cart-item-img {
  width: 140px;
  height: 180px;
  background-color: #e5e5e5;
  padding: 10px;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-header {
  display: flex;
  justify-content: space-between;
}

.item-title {
  font-size: 16px;
  font-weight: 900;
}

.btn-remove {
  font-size: 24px;
  color: #666666;
  transition: 0.2s;
}

.btn-remove:hover {
  color: #ffffff;
}

.item-meta {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 5px;
}

.item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #444444;
  width: fit-content;
}

.qty-selector a {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.2s;
}

.qty-selector a:hover {
  background: #222222;
}

.qty-selector span {
  padding: 0 15px;
  font-size: 12px;
  font-weight: 900;
}

.item-price {
  font-size: 16px;
  font-weight: 900;
}

/* CAIXA DE RESUMO INVERTIDA (AGORA BRANCA PARA CONTRASTAR) */
.cart-summary-box,
.checkout-summary {
  background: #ffffff;
  color: #000000;
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 140px;
}

.cart-summary-box h3,
.checkout-summary h3,
.shipping-block h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #000000;
  border-bottom: 2px solid #dddddd;
  padding-bottom: 15px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
  color: #555555;
}

.total-line {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
  font-size: 18px;
  font-weight: 900;
  color: #000000;
}

.mini-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #dddddd;
}

.mini-qty {
  font-weight: 900;
  width: 30px;
}

.mini-title {
  flex: 1;
  color: #555555;
}

.mini-price {
  font-weight: 900;
}

.customer-data {
  font-size: 13px;
  line-height: 1.8;
  color: #444444;
}

.customer-data p {
  text-transform: none;
}

.customer-data p strong {
  text-transform: uppercase;
  font-size: 14px;
  color: #000000;
}

/* ================================
   MORADA ALTERNATIVA (CHECKOUT)
================================ */
.alt-shipping-section {
  margin-top: 30px;
  background: #111111;
  border: 3px solid #ffffff;
  padding: 20px;
  transition: all 0.3s ease;
}

.brutalist-checkbox {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 0;
}

.brutalist-checkbox .label-text {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.alt-shipping-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed #444444;
}

.split-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.alt-shipping-form .input-group {
  margin-bottom: 15px;
}

.alt-shipping-form .input-group.m-0 {
  margin-bottom: 0;
}

/* ================================
   MICRO-DETALHES BRUTALISTAS
================================ */
.btn-white {
  background: var(--void);
  color: #ffffff;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-white:hover {
  background: #333333;
  letter-spacing: 2px;
}

.bordered-block {
  border: 3px solid #ffffff;
  padding: 40px;
  background: var(--void);
  color: #ffffff;
}

.bordered-block h3 {
  font-size: 18px;
  border-bottom: none;
  margin-bottom: 20px;
  color: #ffffff;
}

.data-name {
  font-size: 20px !important;
  font-weight: 900 !important;
  margin-bottom: 5px;
}

.data-separator {
  width: 40px;
  height: 3px;
  background: #ffffff;
  margin: 15px 0;
}

.data-country {
  margin-top: 15px;
  font-weight: 900;
  text-decoration: underline;
}

.input-field.border-heavy {
  border: 2px solid #ffffff;
  border-radius: 0;
  background: var(--void);
  color: #ffffff;
}

.input-field.border-heavy:focus {
  background: #ffffff;
  color: #000000;
}

.input-field.border-heavy:focus::placeholder {
  color: #aaaaaa;
}

/* ================================
   PERFIL DO CLIENTE (MEMBER DOSSIER)
================================ */
.profile-brutalist-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 80px 40px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
}

.profile-photo-box {
  background-color: #e5e5e5;
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-hoken.secondary {
  background: var(--void);
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-weight: 900;
  font-size: 12px;
  transition: 0.3s;
}

.btn-hoken.secondary:hover {
  background: #ffffff;
  color: #000000;
}

.btn-hoken.danger {
  background: var(--void);
  color: var(--casino);
  border: 2px solid var(--casino);
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-weight: 900;
  font-size: 12px;
  transition: 0.3s;
}

.btn-hoken.danger:hover {
  background: var(--casino);
  color: #ffffff;
}

.profile-data-box {
  height: fit-content;
}

.data-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #444444;
  font-size: 13px;
}

.data-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.data-label {
  font-weight: 900;
  color: #aaaaaa;
  width: 30%;
}

.data-val {
  font-weight: 600;
  color: #ffffff;
  text-align: right;
  flex: 1;
  word-break: break-all;
}

/* ================================
   ARQUIVO DE ENCOMENDAS (HISTORY)
================================ */
.empty-archive {
  text-align: center;
  padding: 60px 20px;
  background: #111111;
  border: 2px dashed #444444;
  font-size: 12px;
  font-weight: 900;
  color: #aaaaaa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-archive-block {
  border: 2px solid #ffffff;
  background: #111111;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-archive-block:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #ffffff;
  background: var(--void);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #333333;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.order-id {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.order-date {
  font-size: 11px;
  font-weight: 600;
  color: #aaaaaa;
}

.order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estado da Encomenda (Badges) */
.status-badge {
  font-size: 10px;
  font-weight: 900;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  background: #222222;
  color: #ffffff;
}

.status-badge.pendente {
  background: var(--void);
  border: 2px dashed #ffffff;
}

.status-badge.processamento,
.status-badge.pago {
  background: #ffffff;
  color: #000000;
}

.status-badge.enviada,
.status-badge.concluida {
  background: var(--void);
  border: 2px solid #ffffff;
}

.btn-hoken.secondary.mini {
  padding: 10px 15px;
  font-size: 10px;
  margin: 0;
}

/* ================================
   PÁGINA INFO & CONTACTOS (HQ)
================================ */
.info-brutalist-container {
  padding: 140px 40px 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.inverted-title {
  border-bottom: 2px solid #333333;
  color: #ffffff;
}

.inverted-title span {
  color: #888888;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 100px;
}

.hq-box {
  border: 3px solid #ffffff;
  padding: 40px;
  background: var(--void);
}

.hq-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  border-bottom: 2px solid #333333;
  padding-bottom: 15px;
  color: #ffffff;
}

.hq-data-row {
  margin-bottom: 25px;
}

.hq-label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: #888888;
  margin-bottom: 5px;
}

.hq-val {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
}

.brutalist-form label {
  font-size: 10px;
  font-weight: 900;
  color: #888888;
  display: block;
  margin-bottom: 8px;
}

.input-dark {
  width: 100%;
  background: transparent;
  border: 2px solid #333333;
  color: #ffffff;
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: 0.3s;
  border-radius: 0;
}

.input-dark:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.input-dark::placeholder {
  color: #444444;
}

.select-dark {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.select-dark option {
  background: var(--void);
  color: #ffffff;
}

.textarea-dark {
  height: 150px;
  resize: vertical;
}

.alert-brutalist {
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-brutalist i {
  font-size: 20px;
}

.alert-brutalist.success {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.alert-brutalist.error {
  background: transparent;
  color: var(--casino);
  border: 2px solid var(--casino);
}

.technical-manual-section {
  border-top: 2px solid #333333;
  padding-top: 80px;
}

.manual-title {
  font-size: 4vw;
  font-weight: 900;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 2px dashed #333333;
  padding: 30px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
}

.faq-a {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.6;
  text-transform: none;
  max-width: 800px;
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
}

.logistics-box {
  border: 2px solid #333333;
  padding: 40px;
}

.logistics-box h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logistics-box p {
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 30px;
  text-transform: none;
}

.logistics-list {
  list-style: none;
  padding: 0;
}

.logistics-list li {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 900;
  padding: 15px 0;
  border-bottom: 1px solid #222222;
}

.logistics-list li:last-child {
  border-bottom: none;
}

.logistics-list li span:last-child {
  color: #888888;
}

/* === FOOTER === */
.footer {
  background: var(--void);
  color: #ffffff;
  padding: 80px 40px 30px;
  letter-spacing: 0.5px;
  border-top: 1px solid #222222;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  border-bottom: 1px solid #222222;
  padding-bottom: 60px;
}

.footer-logo h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-logo p {
  color: #bbbbbb;
  margin-top: 8px;
  font-size: 0.95rem;
  text-transform: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  flex: 1;
  min-width: 300px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #f0f0f0;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #aaaaaa;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 25px;
  font-size: 0.8rem;
  color: #bbbbbb;
}

.store-links img {
  height: 35px;
  margin-left: 10px;
  transition: opacity 0.3s ease;
  filter: invert(1);
}

.store-links img:hover {
  opacity: 0.8;
}

/* ================================
   CUSTOM ALERT BRUTALISTA
================================ */
.brutalist-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.brutalist-alert-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.brutalist-alert-box {
  background: var(--void);
  border: 4px solid #ffffff;
  width: 90%;
  max-width: 400px;
  box-shadow: 8px 8px 0 #ffffff;
  transform: translateY(20px);
  transition: transform 0.2s ease;
  color: #ffffff;
}

.brutalist-alert-overlay.show .brutalist-alert-box {
  transform: translateY(0);
}

.alert-header {
  background: #ffffff;
  color: #000000;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
}

.alert-body {
  padding: 30px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
}

.alert-btn {
  display: block;
  width: 100%;
  background: var(--void);
  color: #ffffff;
  border: none;
  border-top: 4px solid #ffffff;
  padding: 18px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.alert-btn:hover {
  background: #ffffff;
  color: #000000;
}


/* ============================================================
   HOMEPAGE — [ HOKEN™ ] LANDING PAGE STYLES
   Prefixo hk- em todas as classes. Zero conflitos.
   ============================================================ */

:root {
  --void: #0A0A0A;
  --abyss: #111111;
  --smoke: #1D1D1D;
  --bone: #EEEDE8;
  --gold: #C8A879;
  --casino: #8C1C1B;
  --t-primary: #F0EFE9;
  --t-secondary: #888880;
  --t-muted: #333330;
  --bd: #1A1A1A;
  --bd-mid: #2A2A2A;
  --font-sans: 'HelveticaHOKEN', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

.home-container {
  background: var(--void);
  overflow-x: hidden;
}

/* ── HERO ── */
.hk-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 64px;
  overflow: hidden;
  background: var(--abyss);
}

.hk-hero-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  z-index: 0;
}

.hk-hero-lines span {
  display: block;
  width: 1px;
  background: var(--bd);
  opacity: 0.5;
}

.hk-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, transparent 25%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hk-hero-ghosttext {
  position: absolute;
  bottom: -30px;
  left: -8px;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #181818;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.hk-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  width: 100%;
  gap: 40px;
}

.hk-hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hk-hero-title {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--t-primary);
  margin-bottom: 24px;
}

.hk-hero-title em {
  font-style: normal;
  color: var(--t-muted);
  display: block;
}

.hk-hero-sub {
  font-size: 11px;
  color: var(--t-secondary);
  letter-spacing: 0.06em;
  line-height: 1.9;
  max-width: 360px;
  margin-bottom: 40px;
}

.hk-hero-cta {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: #000;
  background: var(--t-primary);
  padding: 14px 36px;
  transition: background 0.2s;
  text-decoration: none;
  text-transform: uppercase;
}

.hk-hero-cta:hover {
  background: var(--gold);
  color: #000;
}

.hk-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hk-drop-badge {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  border: 1px solid var(--bd-mid);
  padding: 5px 12px;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.hk-drop-title {
  font-size: clamp(22px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--t-primary);
  line-height: 1;
}

.hk-drop-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--t-secondary);
  margin-top: 10px;
}

.hk-units {
  display: flex;
  gap: 5px;
  margin-top: 20px;
  flex-wrap: wrap;
  max-width: 180px;
  justify-content: flex-end;
}

.hk-unit {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hk-unit.r {
  background: var(--casino);
}

.hk-unit.a {
  background: var(--t-primary);
}

.hk-unit.e {
  background: var(--bd-mid);
}

/* ── MARQUEE ── */
.hk-marquee {
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
  background: var(--abyss);
  padding: 14px 0;
}

.hk-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: hkMarquee 28s linear infinite;
}

.hk-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes hkMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hk-mi {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hk-mi.hl {
  color: var(--gold);
}

.hk-mi-sep {
  color: var(--bd-mid);
}

/* ── SECTION BASE ── */
.hk-sec {
  border-bottom: 1px solid var(--bd);
}

.hk-sec-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 40px 32px;
  border-bottom: 1px solid var(--bd);
}

.hk-sec-num {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  min-width: 52px;
  padding-top: 3px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.hk-sec-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.hk-sec-desc {
  font-size: 10px;
  color: var(--t-secondary);
  letter-spacing: 0.06em;
  line-height: 1.9;
  max-width: 500px;
}

/* ── DROP PRODUCT TABS ── */
.hk-model-tabs {
  display: flex;
  border-bottom: 1px solid var(--bd);
}

.hk-tab {
  flex: 1;
  padding: 20px 32px;
  background: none;
  border: none;
  border-right: 1px solid var(--bd);
  color: var(--t-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  text-align: left;
  text-transform: uppercase;
  position: relative;
}

.hk-tab:last-child {
  border-right: none;
}

.hk-tab.active {
  color: var(--t-primary);
  background: var(--abyss);
}

.hk-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--t-primary);
}

.hk-tab-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--t-muted);
  margin-top: 3px;
  font-weight: 400;
  text-transform: none;
}

.hk-tab.active .hk-tab-sub {
  color: var(--t-secondary);
}

/* ── PRODUCT BODY ── */
.hk-product-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

a.hk-product-visual {
  display: flex;
  text-decoration: none;
  cursor: pointer;
}

.hk-product-visual {
  background: var(--smoke);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--bd);
  min-height: 480px;
  overflow: hidden;
}

.hk-product-visual:hover .hk-visual-hover-cta {
  opacity: 1;
}

.hk-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.6s;
}

a.hk-product-visual:hover .hk-visual-img {
  opacity: 1;
  transform: scale(1.03);
}

.hk-tshirt-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
}

.hk-tshirt-ghost svg {
  width: 55%;
}

.hk-visual-hover-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-primary);
  background: rgba(10, 10, 10, 0.75);
  padding: 12px 24px;
  border: 1px solid var(--bd-mid);
  opacity: 0;
  transition: opacity 0.25s;
  white-space: nowrap;
  pointer-events: none;
}

.hk-colorchip {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s;
}

.hk-visual-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hk-visual-serial {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--t-muted);
  font-weight: 900;
}

.hk-product-detail {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hk-model-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hk-product-name {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--t-primary);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hk-product-desc {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  max-width: 400px;
}

.hk-specs {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 28px;
}

.hk-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--abyss);
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hk-spec-k {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hk-spec-v {
  color: var(--t-primary);
}

.hk-esgotado {
  color: var(--casino) !important;
}

.hk-size-row {
  margin-bottom: 28px;
}

.hk-size-label-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hk-sizes {
  display: flex;
  gap: 6px;
}

.hk-sz {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.hk-sz:hover:not(:disabled) {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

.hk-sz.sel {
  background: var(--t-primary);
  color: var(--void);
  border-color: var(--t-primary);
  font-weight: 900;
}

.hk-sz.hk-sz-sold {
  opacity: 0.2;
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: var(--bd);
  color: var(--t-muted);
}

.hk-sz:disabled {
  opacity: 0.2;
  text-decoration: line-through;
  cursor: not-allowed;
}

.hk-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}

.hk-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--t-primary);
}

.hk-price-note {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-transform: uppercase;
}

/* Botões produto homepage */
.hk-product-actions {
  display: flex;
  gap: 8px;
}

.hk-btn-primary {
  flex: 1;
  display: block;
  padding: 16px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
  font-family: var(--font-sans);
}

.hk-btn-primary:hover {
  background: var(--gold);
  color: var(--void);
}

.hk-btn-primary.hk-btn-disabled {
  background: var(--bd-mid);
  color: var(--t-muted);
  pointer-events: none;
}

.hk-btn-secondary {
  padding: 16px 20px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  text-transform: uppercase;
  white-space: nowrap;
}

.hk-btn-secondary:hover {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

.hk-btn-secondary.hk-btn-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── QUOTE ── */
.hk-quote {
  padding: 80px 40px;
  background: var(--void);
  border-bottom: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
}

.hk-quote-ghost {
  position: absolute;
  bottom: -24px;
  left: -8px;
  font-size: clamp(70px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px #131313;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

.hk-quote-text {
  font-size: clamp(18px, 3vw, 40px);
  font-weight: 900;
  color: var(--t-primary);
  line-height: 1.3;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hk-quote-text em {
  font-style: normal;
  color: var(--t-muted);
}

/* ── NFC FLOW ── */
.hk-nfc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
  padding: 0 40px 40px;
}

.hk-nfc-step {
  background: var(--void);
  padding: 28px 22px;
}

.hk-nfc-n {
  font-size: 52px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 10px;
}

.hk-nfc-title {
  font-size: 11px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.hk-nfc-desc {
  font-size: 9px;
  color: var(--t-muted);
  line-height: 1.8;
}

/* ── PARCEIROS ── */
.hk-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
}

.hk-partner {
  background: var(--void);
  padding: 48px 40px;
}

.hk-partner.mc {
  border-left: 2px solid var(--smoke);
}

.hk-partner.bnk {
  border-left: 2px solid var(--casino);
}

.hk-partner-role {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hk-partner-name {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--t-primary);
  margin-bottom: 20px;
}

.hk-partner-desc {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 2;
  max-width: 340px;
}

.hk-partner-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hk-ptag {
  font-size: 8px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border: 1px solid var(--bd-mid);
  color: var(--t-muted);
  text-transform: uppercase;
}

/* ── ON THE STREETS ── */
.hk-streets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
  padding: 0 40px 40px;
}

.hk-street {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--smoke);
}

.hk-street img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.4s, transform 0.6s;
}

.hk-street:hover img {
  opacity: 0.85;
  transform: scale(1.04);
}

.hk-street-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--t-secondary);
  line-height: 1.8;
  text-transform: uppercase;
}

/* ── CLUB TABLE ── */
.hk-club-tiers {
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hk-tier-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 140px;
  gap: 1px;
  background: var(--bd);
}

.hk-tier-cell {
  background: var(--void);
  padding: 20px 22px;
}

.hk-tier-row.hd .hk-tier-cell {
  background: var(--abyss);
  padding: 12px 22px;
}

.hk-tier-row.tbl .hk-tier-cell {
  background: #0e0e0e;
}

.hk-tier-name {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--t-primary);
  margin-bottom: 4px;
}

.hk-tier-row.tbl .hk-tier-name {
  color: var(--gold);
}

.hk-tier-pts {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--t-muted);
}

.hk-tier-lbl {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hk-tier-desc {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.8;
}

.hk-tier-access {
  font-size: 10px;
  color: var(--t-secondary);
  letter-spacing: 0.08em;
}

/* ── MANIFESTO ── */
.hk-manifesto {
  padding: 100px 40px;
  background: var(--void);
  border-bottom: 1px solid var(--bd);
}

.hk-manifesto-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hk-manifesto-text {
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 760px;
  margin-bottom: 44px;
}

.hk-manifesto-text span {
  color: var(--t-muted);
  font-weight: 400;
}

.hk-manifesto-link {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  border: 1px solid var(--bd-mid);
  padding: 13px 28px;
  transition: all 0.2s;
  text-transform: uppercase;
  text-decoration: none;
}

.hk-manifesto-link:hover {
  color: var(--t-primary);
  border-color: var(--t-secondary);
}

/* ── RESPONSIVE HOMEPAGE ── */
@media (max-width: 900px) {
  .hk-hero {
    padding: 0 20px 48px;
  }

  .hk-hero-content {
    grid-template-columns: 1fr;
  }

  .hk-hero-right {
    align-items: flex-start;
    text-align: left;
  }

  .hk-hero-right .hk-units {
    justify-content: flex-start;
  }

  .hk-product-body {
    grid-template-columns: 1fr;
  }

  .hk-product-visual {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }

  .hk-partners-grid {
    grid-template-columns: 1fr;
  }

  .hk-nfc-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 20px;
  }

  .hk-streets-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 20px;
  }

  .hk-tier-row {
    grid-template-columns: 120px 1fr;
  }

  .hk-tier-row>.hk-tier-cell:nth-child(3),
  .hk-tier-row>.hk-tier-cell:nth-child(4) {
    display: none;
  }

  .hk-club-tiers {
    padding: 0 20px 20px;
  }

  .hk-sec-header {
    padding: 40px 20px 24px;
    gap: 20px;
  }

  .hk-quote {
    padding: 56px 20px;
  }

  .hk-manifesto {
    padding: 60px 20px;
  }

  .hk-model-tabs .hk-tab {
    padding: 16px 20px;
  }

  .hk-product-detail {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hk-nfc-grid {
    grid-template-columns: 1fr;
  }

  .hk-streets-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ================================
   RESPONSIVO / MOBILE & TABLET
================================ */

/* === TABLET (iPad, etc.) === */
@media (max-width: 1024px) {
  .hoken-header {
    padding: 20px;
  }

  .h-left,
  .h-right {
    gap: 15px;
  }

  .grid-4-brutalist {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-title {
    font-size: 32px;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {

  .hoken-header {
    padding: 15px;
  }

  .h-left,
  .h-right {
    gap: 12px;
    font-size: 9px;
  }

  .h-logo {
    font-size: 16px;
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  .hero-brutalist {
    padding: 20px;
  }

  .hero-text-bottom-left {
    bottom: 20px;
    left: 20px;
    font-size: 10px;
  }

  .hero-text-bottom-right {
    bottom: 20px;
    right: 20px;
    font-size: 10px;
  }

  .brutalist-title-row {
    align-items: center;
    padding-bottom: 15px;
  }

  .brutalist-title-row h2 {
    letter-spacing: -1px;
  }

  .brutalist-title-row .badge-black {
    font-size: 9px;
    padding: 5px 8px;
    margin-bottom: 0;
  }

  /* --- REGRAS SEAMLESS (MOBILE SWIPE & ARROWS) --- */
  .hoken-drop-showcase {
    padding: 0 20px;
  }

  .seamless-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .seamless-grid::-webkit-scrollbar {
    display: none;
  }

  .grid-item-seamless {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .slider-arrow {
    display: flex;
  }

  /* --- REGRAS HOMEPAGE MOBILE --- */
  .huge-typography-section {
    padding: 100px 20px;
    overflow: hidden;
    position: relative;
  }

  .huge-text-block {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }

  .solid-text {
    font-size: 26vw;
    line-height: 0.8;
    margin-right: 0;
    margin-bottom: -5vw;
    position: relative;
  }

  .outline-wrapper {
    margin-left: 25vw;
  }

  .outline-text {
    font-size: 26vw;
    line-height: 0.8;
  }

  .small-caps {
    margin-top: 15px;
    margin-left: 0;
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaaaaa;
  }

  .floating-graffiti {
    width: 90vw;
    top: 50%;
    right: -15%;
    transform: translateY(-50%) rotate(-12deg);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
  }

  /* --- REGRAS SPLIT BANNER (MOBILE FULL-BLEED) --- */
  .split-brutalist-wrapper {
    padding: 0 0 80px 0;
  }

  .split-images-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split-img {
    aspect-ratio: 4/5;
  }

  .center-line-text {
    flex-direction: column;
    gap: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .bg-offset {
    padding: 8px 20px;
    font-size: 16px;
  }

  .solid-line {
    width: 100%;
    height: 3px;
  }

  .full-width-black-bar {
    margin-top: 0;
    padding: 22px 0;
    font-size: 14px;
  }

  .streets-title {
    margin-bottom: 25px;
  }

  .streets-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 15px;
  }

  .streets-grid::-webkit-scrollbar {
    display: none;
  }

  .street-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .wwd-header h2 {
    font-size: 15vw;
  }

  .wwd-manifesto-box {
    padding: 30px;
    height: auto;
    justify-content: flex-start;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-page-container,
  .checkout-page-container {
    padding: 100px 20px 40px 20px;
  }

  .bordered-block {
    padding: 20px;
  }

  .split-inputs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-brutalist-container {
    padding: 100px 20px 40px 20px;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .data-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px 0;
  }

  .data-label {
    width: 100%;
  }

  .data-val {
    text-align: left;
  }

  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .order-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-hoken.secondary.mini {
    width: 100%;
    text-align: center;
  }

  .info-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-brutalist-container {
    padding: 100px 20px 60px 20px;
  }

  .manual-title {
    font-size: 12vw;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
  }

  /* --- REGRAS CARRINHO MOBILE & ACESSIBILIDADE --- */
  .brutalist-title-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
  }

  .cart-item-row {
    gap: 15px;
    padding: 20px 0;
  }

  .cart-item-img {
    width: 100px;
    height: 130px;
  }

  .item-title {
    font-size: 14px;
    line-height: 1.3;
    padding-right: 10px;
  }

  .btn-remove {
    padding: 10px;
    margin: -10px -10px 0 0;
  }

  .item-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
  }

  .qty-selector {
    width: 100%;
    justify-content: space-between;
  }

  .qty-selector a {
    padding: 15px 25px;
    font-size: 16px;
  }

  .item-price {
    width: 100%;
    text-align: right;
    font-size: 18px;
  }

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === MOBILE MUITO PEQUENO (Ecrãs < 380px) === */
@media (max-width: 380px) {

  .h-left,
  .h-right {
    gap: 8px;
    font-size: 8px;
  }

  .h-logo {
    font-size: 14px;
  }

  .grid-4-brutalist {
    grid-template-columns: 1fr;
  }

  /* --- CORREÇÕES PÁGINA PRODUTO (OVERFLOW) --- */
  .product-title {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .product-price {
    font-size: 22px;
  }

  .size-btn {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .size-selector {
    gap: 6px;
  }

  .add-to-cart-btn {
    font-size: 14px;
    height: 55px;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0 #ffffff;
  }

  /* --- REGRAS CARRINHO MICRO MOBILE --- */
  .cart-item-img {
    width: 80px;
    height: 105px;
  }

  .qty-selector a {
    padding: 10px 20px;
  }
}

/* ============================================================
   LANDING DROP — ld-
   ============================================================ */

.ld-body {
  margin: 0;
  background: var(--void);
  color: var(--t-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.ld-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

.ld-logo {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--t-primary);
  text-decoration: none;
}

.ld-nav-link {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ld-nav-link:hover {
  color: var(--t-primary);
}

.ld-lines {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  z-index: 0;
}

.ld-lines span {
  display: block;
  width: 1px;
  background: var(--bd);
  opacity: 0.4;
}

.ld-ghost {
  position: fixed;
  bottom: -60px;
  left: -10px;
  font-size: clamp(120px, 22vw, 260px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px #141414;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.ld-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.ld-card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.ld-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.ld-media {
  margin-bottom: 32px;
}

.ld-media video {
  width: 120px;
  opacity: 0.9;
}

.ld-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--t-primary);
  margin-bottom: 40px;
}

.ld-title em {
  font-style: normal;
  color: var(--t-muted);
}

/* Countdown */
.ld-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.ld-time span {
  display: block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  line-height: 1;
}

.ld-time p {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.ld-time-sep {
  font-size: 24px;
  color: var(--bd-mid);
  font-weight: 900;
  padding-bottom: 16px;
}

/* Form */
.ld-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ld-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.ld-input::placeholder {
  color: var(--t-muted);
}

.ld-input:focus {
  border-bottom-color: var(--t-secondary);
}

.ld-input-row {
  position: relative;
  display: flex;
  align-items: center;
}

.ld-input-row .ld-input {
  margin-bottom: 0;
  padding-right: 40px;
}

.ld-submit {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: var(--t-primary);
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0;
  line-height: 1;
}

.ld-submit:hover {
  transform: translateX(4px);
}

.ld-note {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-top: 20px;
}

.ld-msg-erro {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--casino);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================================
   LANDING DROP SUCESSO — lds-
   ============================================================ */

.lds-container {
  min-height: 100vh;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lds-box {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.lds-icon {
  font-size: 48px;
  color: var(--t-muted);
  margin-bottom: 24px;
  display: block;
}

.lds-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lds-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 20px;
}

.lds-text {
  font-size: 11px;
  color: var(--t-secondary);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.lds-divider {
  height: 1px;
  background: var(--bd);
  margin-bottom: 40px;
}

.lds-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.lds-btn:hover {
  background: var(--gold);
  color: var(--void);
}

.lds-footer {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--t-muted);
  margin-top: 40px;
  text-transform: uppercase;
}

/* ============================================================
   LOGIN / AUTH — lf-
   ============================================================ */

.lf-container {
  min-height: 100vh;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lf-box {
  width: 100%;
  max-width: 400px;
}

.lf-logo {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--t-primary);
  text-decoration: none;
  margin-bottom: 32px;
}

.lf-eyebrow {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.lf-sub {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--t-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.lf-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.lf-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  margin-bottom: 20px;
}

.lf-input::placeholder {
  color: var(--t-muted);
}

.lf-input:focus {
  border-bottom-color: var(--t-secondary);
}

.lf-btn-primary {
  width: 100%;
  height: 52px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
  margin-bottom: 10px;
}

.lf-btn-primary:hover {
  background: var(--gold);
}

.lf-btn-google {
  width: 100%;
  height: 52px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.lf-btn-google:hover {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

.lf-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--bd);
  padding-top: 24px;
}

.lf-link {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lf-link:hover {
  color: var(--t-primary);
}

.lf-msg {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.lf-msg-erro {
  color: var(--casino);
  border: 1px solid var(--casino);
  background: rgba(140, 28, 27, 0.08);
}

.lf-msg-ok {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(200, 168, 121, 0.08);
}

/* ============================================================
   PERFIL — prf-
   ============================================================ */

.prf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.prf-header {
  border-bottom: 1px solid var(--bd);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.prf-sec-num {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.prf-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
}

.prf-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1px;
  background: var(--bd);
}

.prf-sidebar {
  background: var(--void);
  padding: 32px;
}

.prf-photo {
  aspect-ratio: 1/1;
  background: var(--abyss);
  border: 1px solid var(--bd);
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.7;
}

.prf-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.prf-nav-btn {
  display: block;
  padding: 14px 16px;
  background: var(--abyss);
  color: var(--t-secondary);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
}

.prf-nav-btn:hover {
  background: var(--smoke);
  color: var(--t-primary);
}

.prf-nav-danger {
  color: var(--casino);
  margin-top: 8px;
}

.prf-nav-danger:hover {
  background: rgba(140, 28, 27, 0.15);
  color: var(--casino);
}

.prf-data {
  background: var(--void);
}

.prf-data-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--bd);
}

.prf-data-label-head {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.prf-data-rows {
  display: flex;
  flex-direction: column;
}

.prf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--bd);
  font-size: 11px;
}

.prf-row:last-child {
  border-bottom: none;
}

.prf-row-k {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
  min-width: 140px;
}

.prf-row-v {
  color: var(--t-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: break-all;
  text-align: right;
}

/* ============================================================
   NFC CERTIFICADO — nfc- (reescrito)
   ============================================================ */

.nfc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  background: var(--void);
}

.nfc-page-header {
  border-bottom: 1px solid var(--bd);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.nfc-sec-num {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.nfc-page-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.nfc-page-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.nfc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
}

.nfc-visual {
  background: var(--abyss);
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.nfc-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.nfc-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(240, 239, 233, 0.2);
  box-shadow: 0 0 8px rgba(240, 239, 233, 0.15);
  animation: nfcScan 3s linear infinite;
  z-index: 10;
}

@keyframes nfcScan {
  0% {
    top: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.nfc-serial {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-muted);
  border: 1px solid var(--bd-mid);
  padding: 5px 10px;
  background: rgba(10, 10, 10, 0.8);
}

.nfc-info {
  background: var(--void);
  padding: 48px 40px;
}

.nfc-prod-name {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--t-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.nfc-meta-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 32px;
}

.nfc-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--abyss);
  padding: 10px 14px;
  font-size: 10px;
}

.nfc-meta-k {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.nfc-meta-v {
  color: var(--t-primary);
}

.nfc-meta-mono {
  font-family: var(--font-mono);
  font-size: 9px;
  word-break: break-all;
  color: var(--t-secondary);
}

.nfc-msg-ok {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 121, 0.3);
  padding: 12px 16px;
  margin-bottom: 24px;
}

/* Status boxes */
.nfc-status {
  padding: 20px 24px;
  margin-bottom: 28px;
}

.nfc-status-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nfc-status-text {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.nfc-status-unclaimed {
  background: rgba(240, 239, 233, 0.04);
  border-left: 2px solid var(--bd-mid);
}

.nfc-status-unclaimed .nfc-status-title {
  color: var(--t-primary);
}

.nfc-status-unclaimed .nfc-status-text {
  color: var(--t-secondary);
}

.nfc-status-verified {
  background: var(--t-primary);
}

.nfc-status-verified .nfc-status-title {
  color: var(--void);
}

.nfc-status-verified .nfc-status-text {
  color: #555;
  font-weight: 700;
}

.nfc-status-locked {
  border: 1px solid var(--casino);
}

.nfc-status-locked .nfc-status-title {
  color: var(--casino);
}

.nfc-status-locked .nfc-status-text {
  color: var(--casino);
  opacity: 0.7;
}

/* Form NFC */
.nfc-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nfc-form-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.nfc-form-input {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 14px 16px;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
  width: 100%;
}

.nfc-form-input:focus {
  border-color: var(--t-secondary);
}

.nfc-btn-claim {
  width: 100%;
  padding: 16px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.nfc-btn-claim:hover {
  background: var(--gold);
}

.nfc-btn-wardrobe {
  display: block;
  width: 100%;
  padding: 16px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.2s;
}

.nfc-btn-wardrobe:hover {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

/* ============================================================
   DOCUMENTOS (terms / privacidade) — doc-
   ============================================================ */

.doc-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 40px;
}

.doc-header {
  margin-bottom: 64px;
}

.doc-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.doc-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--t-primary);
  margin-bottom: 16px;
}

.doc-date {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.doc-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-body p {
  font-size: 11px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.doc-heading {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--t-primary);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--bd);
  margin-top: 8px;
}

.doc-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-list li {
  font-size: 11px;
  color: var(--t-secondary);
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-left: 16px;
  position: relative;
}

.doc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--t-muted);
}

.doc-link {
  color: var(--t-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--bd-mid);
  transition: border-color 0.2s;
}

.doc-link:hover {
  border-color: var(--t-secondary);
}

/* ============================================================
   RESPONSIVE — todas as novas páginas
   ============================================================ */

@media (max-width: 900px) {

  /* Perfil */
  .prf-container {
    padding: 100px 20px 60px;
  }

  .prf-layout {
    grid-template-columns: 1fr;
  }

  .prf-sidebar {
    padding: 24px 20px;
  }

  .prf-data-header,
  .prf-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* NFC */
  .nfc-container {
    padding: 100px 20px 60px;
  }

  .nfc-layout {
    grid-template-columns: 1fr;
  }

  .nfc-visual {
    aspect-ratio: 4/5;
  }

  .nfc-info {
    padding: 32px 20px;
  }

  /* Docs */
  .doc-container {
    padding: 80px 20px;
  }

  .doc-title {
    font-size: 10vw;
  }
}

@media (max-width: 480px) {

  /* Landing drop */
  .ld-header {
    padding: 20px;
  }

  .ld-time span {
    font-size: 28px;
  }

  .ld-lines {
    display: none;
  }

  /* Login */
  .lf-box {
    padding: 0 4px;
  }

  /* Perfil */
  .prf-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .prf-row-v {
    text-align: left;
  }
}


/* ============================================================
   CRIAR CLIENTE — lf- extensions
   ============================================================ */

.lf-success-icon {
  font-size: 48px;
  color: var(--t-muted);
  display: block;
  margin-bottom: 16px;
}

.lf-success-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 12px;
}

.lf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 24px;
  margin-top: 4px;
}

.lf-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lf-checkbox-mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--bd-mid);
  background: none;
  margin-top: 2px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lf-checkbox input:checked+.lf-checkbox-mark {
  background: var(--t-primary);
  border-color: var(--t-primary);
}

.lf-checkbox input:checked+.lf-checkbox-mark::after {
  content: '✓';
  font-size: 10px;
  color: var(--void);
  font-weight: 900;
}

.lf-checkbox-text {
  font-size: 10px;
  color: var(--t-secondary);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.lf-link-inline {
  color: var(--t-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--bd-mid);
  transition: border-color 0.2s;
}

.lf-link-inline:hover {
  border-color: var(--t-secondary);
}

/* ============================================================
   CONTACT — cnt-
   ============================================================ */

.cnt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.cnt-header {
  border-bottom: 1px solid var(--bd);
  padding-bottom: 40px;
  margin-bottom: 64px;
}

.cnt-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.cnt-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--t-primary);
  margin-bottom: 10px;
}

.cnt-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.cnt-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1px;
  background: var(--bd);
  margin-bottom: 1px;
}

.cnt-sidebar {
  background: var(--void);
  padding: 40px 32px;
}

.cnt-hq-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cnt-hq-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cnt-hq-row {
  background: var(--abyss);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cnt-hq-k {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.cnt-hq-v {
  font-size: 10px;
  color: var(--t-primary);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.cnt-form-box {
  background: var(--void);
  padding: 40px;
}

.cnt-form-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--t-primary);
  margin-bottom: 32px;
}

.cnt-msg {
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cnt-msg-ok {
  color: var(--gold);
  border: 1px solid rgba(200, 168, 121, 0.3);
}

.cnt-msg-erro {
  color: var(--casino);
  border: 1px solid rgba(140, 28, 27, 0.3);
}

.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cnt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.cnt-input {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 13px 16px;
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cnt-input::placeholder {
  color: var(--t-muted);
}

.cnt-input:focus {
  border-color: var(--t-secondary);
}

.cnt-select {
  cursor: pointer;
}

.cnt-select option {
  background: var(--abyss);
  color: var(--t-primary);
}

.cnt-textarea {
  min-height: 140px;
  resize: vertical;
}

.cnt-btn-submit {
  align-self: flex-start;
  padding: 14px 36px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.cnt-btn-submit:hover {
  background: var(--gold);
}

/* FAQ */
.cnt-faq-section {
  border-top: 1px solid var(--bd);
  padding: 64px 0 48px;
}

.cnt-sec-header {
  margin-bottom: 40px;
}

.cnt-sec-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--t-primary);
  margin-top: 8px;
}

.cnt-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bd);
}

.cnt-faq-item {
  background: var(--void);
  padding: 32px;
}

.cnt-faq-q {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--t-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cnt-faq-a {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* Logistics */
.cnt-logistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  border-top: 1px solid var(--bd);
}

.cnt-logistics-box {
  background: var(--void);
  padding: 40px 32px;
}

.cnt-logistics-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cnt-logistics-desc {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.cnt-logistics-rows {
  display: flex;
  flex-direction: column;
}

.cnt-logistics-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 10px;
}

.cnt-logistics-row span:first-child {
  color: var(--t-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
}

.cnt-logistics-row span:last-child {
  color: var(--t-primary);
  font-weight: 700;
}

/* ============================================================
   HISTÓRICO + DETALHE ENCOMENDAS — ord-
   ============================================================ */

.ord-list {
  display: flex;
  flex-direction: column;
}

.ord-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--bd);
  transition: background 0.15s;
}

.ord-row:hover {
  background: var(--abyss);
}

.ord-row:last-child {
  border-bottom: none;
}

.ord-row-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ord-id {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--t-primary);
}

.ord-date {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
}

.ord-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ord-total {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold, #C8A879);
  letter-spacing: 0.04em;
}

/* Add status mappings for the new admin statuses */
.ord-status--em\ processamento {
  color: var(--gold);
  border-color: rgba(200, 168, 121, 0.3);
}

.ord-status {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
}

.ord-status--pendente {
  color: var(--gold);
  border-color: rgba(200, 168, 121, 0.3);
}

.ord-status--pago,
.ord-status--processamento {
  color: #7BAFC5;
  border-color: rgba(123, 175, 197, 0.3);
}

.ord-status--enviada,
.ord-status--concluida {
  color: var(--t-primary);
  border-color: var(--bd-mid);
}

.ord-status--cancelada {
  color: var(--casino);
  border-color: rgba(140, 28, 27, 0.3);
}

.ord-btn-detail {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ord-btn-detail:hover {
  color: var(--t-primary);
}

.ord-empty {
  padding: 60px 32px;
  text-align: center;
}

.ord-empty-text {
  font-size: 11px;
  color: var(--t-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ord-empty-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.ord-empty-btn:hover {
  background: var(--gold);
}

/* Items detalhe */
.ord-items {
  display: flex;
  flex-direction: column;
}

.ord-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--bd);
  font-size: 11px;
}

.ord-item-qty {
  font-size: 9px;
  font-weight: 900;
  color: var(--t-muted);
  letter-spacing: 0.1em;
}

.ord-item-name {
  color: var(--t-primary);
  letter-spacing: 0.06em;
}

.ord-item-name small {
  display: block;
  font-size: 9px;
  color: var(--t-muted);
  letter-spacing: 0.12em;
  margin-top: 3px;
  text-transform: uppercase;
}

.ord-item-price {
  font-size: 12px;
  font-weight: 900;
  color: var(--t-primary);
  white-space: nowrap;
}

.ord-item-shipping .ord-item-name {
  color: var(--t-muted);
}

.ord-item-shipping .ord-item-price {
  color: var(--t-muted);
  font-weight: 400;
}

.ord-item-total {
  background: var(--abyss);
}

.ord-item-total .ord-item-name {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ord-item-total .ord-item-price {
  color: var(--gold);
}

/* ============================================================
   CHECKOUT — chk-
   ============================================================ */

.chk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.chk-header {
  border-bottom: 1px solid var(--bd);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.chk-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.chk-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.chk-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.chk-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  align-items: start;
}

.chk-shipping,
.chk-summary {
  background: var(--void);
  padding: 40px;
}

.chk-block-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.chk-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bd);
}

.chk-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chk-address-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.04em;
}

.chk-address p {
  font-size: 10px;
  color: var(--t-secondary);
  letter-spacing: 0.06em;
}

.chk-address-sep {
  height: 1px;
  background: var(--bd);
  margin: 8px 0;
}

.chk-address-country {
  font-size: 10px;
  color: var(--t-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chk-alt-toggle {
  margin-bottom: 24px;
}

.chk-alt-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.chk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chk-input {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 12px 14px;
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.chk-input::placeholder {
  color: var(--t-muted);
}

.chk-input:focus {
  border-color: var(--t-secondary);
}

/* Summary */
.chk-items {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.chk-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 11px;
}

.chk-item-qty {
  font-size: 9px;
  font-weight: 900;
  color: var(--t-muted);
}

.chk-item-name {
  color: var(--t-primary);
  letter-spacing: 0.04em;
}

.chk-item-name small {
  display: block;
  font-size: 9px;
  color: var(--t-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.chk-item-price {
  font-weight: 900;
  color: var(--t-primary);
  white-space: nowrap;
}

.chk-totals {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 28px;
}

.chk-total-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--abyss);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--t-secondary);
}

.chk-total-final {
  background: var(--smoke);
}

.chk-total-final span:first-child {
  color: var(--t-primary);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9px;
}

.chk-total-final span:last-child {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.chk-btn-pay {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  margin-bottom: 20px;
}

.chk-btn-pay:hover {
  background: var(--gold);
  color: var(--void);
}

.chk-payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  color: var(--t-muted);
}

/* ============================================================
   CLUB — clb-
   ============================================================ */

.clb-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

.clb-msg {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  margin-bottom: 24px;
  text-align: center;
}

.clb-msg-ok {
  color: var(--gold);
  border: 1px solid rgba(200, 168, 121, 0.25);
}

.clb-msg-erro {
  color: var(--casino);
  border: 1px solid rgba(140, 28, 27, 0.25);
}

.clb-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.clb-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.clb-title {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  line-height: 1;
}

/* Member card */
.clb-card {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.clb-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.clb-card-brand {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--t-primary);
}

.clb-card-status {
  font-size: 9px;
  background: var(--t-primary);
  color: var(--void);
  padding: 4px 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clb-card-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.clb-card-number {
  font-family: var(--font-mono);
  font-size: clamp(18px, 4vw, 28px);
  letter-spacing: 0.1em;
  color: var(--t-primary);
  font-weight: 900;
}

.clb-card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-transform: uppercase;
}

/* Pontos */
.clb-points-box {
  background: var(--abyss);
  border: 1px solid var(--bd);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.clb-points-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.clb-points-val {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 900;
  color: var(--t-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.clb-redeem-zone {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
}

.clb-redeem-warning {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--t-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.clb-redeem-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.clb-step-btn {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-primary);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
}

.clb-step-btn:hover {
  border-color: var(--t-secondary);
}

.clb-step-btn:active {
  background: var(--t-primary);
  color: var(--void);
}

.clb-redeem-display {
  text-align: center;
  min-width: 100px;
}

.clb-redeem-display span {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 900;
  color: var(--t-primary);
  line-height: 1;
}

.clb-redeem-display small {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.clb-btn-redeem {
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid var(--casino);
  color: var(--casino);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.clb-btn-redeem:hover {
  background: var(--casino);
  color: var(--void);
}

/* Progress */
.clb-progress {
  margin-bottom: 32px;
}

.clb-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.clb-progress-bar {
  height: 1px;
  background: var(--bd-mid);
  position: relative;
}

.clb-progress-fill {
  position: absolute;
  height: 100%;
  background: var(--t-primary);
  box-shadow: 0 0 8px rgba(240, 239, 233, 0.3);
  transition: width 0.6s ease;
}

/* Grid */
.clb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  margin-bottom: 1px;
}

.clb-grid-box {
  background: var(--void);
  padding: 28px 32px;
}

.clb-grid-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.clb-benefit-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clb-benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--t-secondary);
  letter-spacing: 0.04em;
}

.clb-benefit-num {
  font-size: 9px;
  font-weight: 900;
  color: var(--t-muted);
  border: 1px solid var(--bd-mid);
  padding: 2px 6px;
  letter-spacing: 0.08em;
}

.clb-badges {
  display: flex;
  gap: 8px;
}

.clb-badge {
  border: 1px solid var(--bd-mid);
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 900;
  color: var(--t-secondary);
  letter-spacing: 0.1em;
}

/* Eventos */
.clb-events {
  background: var(--void);
  border: 1px solid var(--bd);
  margin-bottom: 40px;
}

.clb-event-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--bd);
}

.clb-event-row:last-child {
  border-bottom: none;
}

.clb-event-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--t-secondary);
  font-weight: 700;
}

.clb-event-title {
  font-size: 11px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.clb-event-desc {
  font-size: 10px;
  color: var(--t-muted);
  letter-spacing: 0.04em;
}

.clb-btn-shop {
  display: block;
  text-align: center;
  padding: 16px 40px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.clb-btn-shop:hover {
  background: var(--gold);
  color: var(--void);
}

/* ============================================================
   HOKEN CLUB (landing) — hc-
   ============================================================ */

.hc-bg-ghost {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 28vw, 340px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #0e0e0e;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: hcGlitch 6s infinite linear alternate;
}

@keyframes hcGlitch {
  0% {
    transform: translate(-50%, -50%) skew(0deg);
  }

  2% {
    transform: translate(-50%, -50%) skew(8deg);
    opacity: 0.5;
  }

  4% {
    transform: translate(-50%, -50%) skew(-8deg);
  }

  5% {
    transform: translate(-50%, -50%) skew(0deg);
  }

  100% {
    transform: translate(-50%, -50%) skew(0deg);
  }
}

.hc-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--bd);
}

.hc-logo {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--t-primary);
  text-decoration: none;
  text-transform: uppercase;
}

.hc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--t-secondary);
  text-transform: uppercase;
  border: 1px solid var(--bd-mid);
  padding: 7px 14px;
}

.hc-status-dot {
  width: 6px;
  height: 6px;
  background: var(--casino);
  border-radius: 50%;
  animation: hcPulse 1.5s infinite;
}

@keyframes hcPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
}

.hc-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .hc-main {
    flex-direction: row-reverse;
    align-items: center;
  }
}

/* Stack */
.hc-stack-area {
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
}

@media (min-width: 1024px) {
  .hc-stack-area {
    flex: 1;
    height: 560px;
  }
}

.hc-stack {
  position: relative;
  width: 220px;
  height: 300px;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-10deg);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hc-stack {
    width: 340px;
    height: 460px;
  }
}

.hc-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hc-c1 {
  transform: translateZ(40px);
  z-index: 4;
}

.hc-c2 {
  transform: translateZ(10px) translateX(18px) translateY(-14px);
  z-index: 3;
  opacity: 0.6;
}

.hc-c3 {
  transform: translateZ(-20px) translateX(36px) translateY(-28px);
  z-index: 2;
  opacity: 0.3;
}

.hc-c4 {
  transform: translateZ(-50px) translateX(54px) translateY(-42px);
  z-index: 1;
  opacity: 0.1;
}

.hc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.hc-card:hover img {
  filter: grayscale(60%);
}

/* Info panel */
.hc-info {
  flex: 1;
}

.hc-title {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--t-primary);
  margin-bottom: 28px;
}

.hc-concept {
  border-left: 2px solid var(--bd-mid);
  padding-left: 20px;
  margin-bottom: 40px;
}

.hc-concept p {
  font-size: 12px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.hc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 640px) {
  .hc-actions {
    flex-direction: row;
  }
}

.hc-btn-join {
  display: block;
  padding: 18px 36px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.hc-btn-join:hover {
  background: var(--gold);
  color: var(--void);
}

.hc-btn-hunt {
  display: block;
  padding: 18px 36px;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.hc-btn-hunt:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Perks footer */
.hc-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
  border-top: 1px solid var(--bd);
  margin: 0 -40px;
}

.hc-perk {
  background: var(--void);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-perk-label {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hc-perk-val {
  font-size: 14px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — novas páginas
   ============================================================ */

@media (max-width: 900px) {

  /* Contact */
  .cnt-container {
    padding: 100px 20px 60px;
  }

  .cnt-layout {
    grid-template-columns: 1fr;
  }

  .cnt-sidebar {
    padding: 32px 20px;
  }

  .cnt-form-box {
    padding: 32px 20px;
  }

  .cnt-split {
    grid-template-columns: 1fr;
  }

  .cnt-faq-grid {
    grid-template-columns: 1fr;
  }

  .cnt-logistics {
    grid-template-columns: 1fr;
  }

  /* Checkout */
  .chk-container {
    padding: 100px 20px 60px;
  }

  .chk-layout {
    grid-template-columns: 1fr;
  }

  .chk-split {
    grid-template-columns: 1fr;
  }

  /* Encomendas */
  .ord-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ord-row-right {
    width: 100%;
    justify-content: space-between;
  }

  .ord-item {
    grid-template-columns: 24px 1fr auto;
    padding: 14px 20px;
  }

  /* Club */
  .clb-grid {
    grid-template-columns: 1fr;
  }

  .clb-event-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Hoken club */
  .hc-wrapper {
    padding: 0 20px;
  }

  .hc-title {
    font-size: 16vw;
  }

  .hc-perks {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 -20px;
  }
}

@media (max-width: 480px) {

  /* Checkout */
  .chk-payment-icons {
    font-size: 20px;
  }

  /* Clube */
  .clb-card-number {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}


/* ============================================================
   PERFIL — FORMULÁRIOS (prf- extensions)
   ============================================================ */

.prf-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 32px;
}

.prf-form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bd);
}

.prf-field:last-of-type {
  border-bottom: none;
}

.prf-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.prf-input {
  background: none;
  border: none;
  border-bottom: 1px solid var(--bd-mid);
  color: var(--t-primary);
  padding: 10px 0;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.prf-input::placeholder {
  color: var(--t-muted);
}

.prf-input:focus {
  border-bottom-color: var(--t-secondary);
}

.prf-btn-save {
  display: inline-block;
  padding: 14px 36px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.prf-btn-save:hover {
  background: var(--gold);
}

.prf-form-msg {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 32px;
  margin: 0;
  border-bottom: 1px solid var(--bd);
}

.prf-form-msg-erro {
  color: var(--casino);
  background: rgba(140, 28, 27, 0.06);
}

.prf-form-msg-ok {
  color: var(--gold);
  background: rgba(200, 168, 121, 0.06);
}

/* ============================================================
   ARMÁRIO DIGITAL — arm-
   ============================================================ */

.arm-empty {
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.arm-empty-icon {
  font-size: 40px;
  color: var(--bd-mid);
  display: block;
  margin-bottom: 8px;
}

.arm-empty-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--t-secondary);
  text-transform: uppercase;
}

.arm-empty-text {
  font-size: 10px;
  color: var(--t-muted);
  letter-spacing: 0.06em;
  line-height: 1.8;
  max-width: 320px;
}

.arm-empty-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background 0.2s;
}

.arm-empty-btn:hover {
  background: var(--gold);
}

.arm-list {
  display: flex;
  flex-direction: column;
}

.arm-item {
  display: grid;
  grid-template-columns: 100px 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--bd);
  transition: background 0.15s;
}

.arm-item:hover {
  background: var(--abyss);
}

.arm-item:last-child {
  border-bottom: none;
}

.arm-item-img {
  aspect-ratio: 4/5;
  background: var(--smoke);
  overflow: hidden;
}

.arm-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.arm-item:hover .arm-item-img img {
  filter: grayscale(0%);
}

.arm-item-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--t-primary);
  margin-bottom: 4px;
}

.arm-item-model {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--t-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.arm-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.arm-tag {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
}

.arm-tag-series {
  background: var(--t-primary);
  color: var(--void);
  border-color: var(--t-primary);
}

.arm-tag-muted {
  color: var(--t-muted);
  border-color: var(--bd);
}

.arm-item-icon {
  font-size: 20px;
  color: var(--bd-mid);
  text-align: right;
}

/* ── Armário: estado UNTITLED + rename inline ───────────────── */
.arm-item-untitled {
  color: #C8A879 !important;
  letter-spacing: 0.12em;
  font-style: italic;
}

.arm-item-warn {
  font-size: 11px;
  color: #C8A879;
  margin: 6px 0 10px;
  letter-spacing: 0.04em;
}

.arm-rename-form {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  max-width: 380px;
}

.arm-rename-input {
  flex: 1;
  background: transparent;
  border: 1px solid #C8A879;
  color: var(--t-primary);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  outline: none;
}

.arm-rename-input:focus {
  border-color: #fff;
}

.arm-rename-input::placeholder {
  color: var(--t-muted);
}

.arm-rename-btn {
  background: #C8A879;
  color: #000;
  border: none;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.arm-rename-btn:hover {
  opacity: 0.85;
}

/* Toast no armário */
.arm-toast {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-left: 3px solid;
}

.arm-toast-ok {
  background: rgba(60, 179, 113, 0.1);
  color: #3CB371;
  border-left-color: #3CB371;
}

.arm-toast-err {
  background: rgba(217, 83, 79, 0.1);
  color: #D9534F;
  border-left-color: #D9534F;
}

/* ============================================================
   CARRINHO — crr-
   ============================================================ */

.crr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.crr-header {
  border-bottom: 1px solid var(--bd);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.crr-eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.crr-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 8px;
}

.crr-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--t-muted);
  text-transform: uppercase;
}

/* Empty */
.crr-empty {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--bd);
}

.crr-empty-text {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.crr-empty-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--t-primary);
  color: var(--void);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}

.crr-empty-btn:hover {
  background: var(--gold);
}

/* Layout */
.crr-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1px;
  background: var(--bd);
  align-items: start;
}

.crr-items {
  background: var(--void);
  padding: 0;
}

.crr-msg {
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bd);
}

.crr-msg-erro {
  color: var(--casino);
  background: rgba(140, 28, 27, 0.06);
}

/* Cart item */
.crr-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--bd);
}

.crr-item:last-child {
  border-bottom: none;
}

.crr-item-img {
  background: var(--smoke);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.crr-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.crr-item:hover .crr-item-img img {
  opacity: 1;
}

.crr-item-detail {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.crr-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.crr-item-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--t-primary);
  line-height: 1.3;
}

.crr-item-remove {
  font-size: 20px;
  color: var(--t-muted);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.crr-item-remove:hover {
  color: var(--casino);
}

.crr-item-size {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.crr-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Qty selector */
.crr-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--bd-mid);
}

.crr-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--t-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.15s;
}

.crr-qty-btn:hover {
  background: var(--smoke);
  color: var(--t-primary);
}

.crr-qty-val {
  padding: 0 14px;
  font-size: 11px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.08em;
  border-left: 1px solid var(--bd-mid);
  border-right: 1px solid var(--bd-mid);
  height: 36px;
  display: flex;
  align-items: center;
}

.crr-item-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--t-primary);
}

/* Summary */
.crr-summary {
  background: var(--abyss);
  padding: 40px 32px;
  position: sticky;
  top: 100px;
}

.crr-summary-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--t-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.crr-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 28px;
}

.crr-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--void);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--t-secondary);
}

.crr-summary-total {
  background: var(--smoke);
}

.crr-summary-total span:first-child {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-primary);
}

.crr-summary-total span:last-child {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
}

.crr-btn-checkout {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--t-primary);
  color: var(--void);
  border: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 14px;
}

.crr-btn-checkout:hover {
  background: var(--gold);
  color: var(--void);
}

.crr-secure-note {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   CHECKOUT SUCESSO — cks- (SVG animado)
   ============================================================ */

.cks-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
}

.cks-icon svg {
  width: 100%;
  height: 100%;
}

.cks-circle {
  stroke: var(--t-primary);
  stroke-width: 1.5;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: cksStroke 0.6s ease forwards;
}

.cks-check {
  stroke: var(--t-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: cksStroke 0.4s ease 0.6s forwards;
}

@keyframes cksStroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* ============================================================
   RESPONSIVE — últimas páginas
   ============================================================ */

@media (max-width: 900px) {

  /* Perfil forms */
  .prf-form {
    padding: 0 20px;
  }

  .prf-form-split {
    grid-template-columns: 1fr;
  }

  .prf-form-msg {
    padding: 12px 20px;
  }

  /* Armário */
  .arm-item {
    grid-template-columns: 80px 1fr;
    padding: 20px;
  }

  .arm-item-icon {
    display: none;
  }

  /* Carrinho */
  .crr-container {
    padding: 100px 20px 60px;
  }

  .crr-layout {
    grid-template-columns: 1fr;
  }

  .crr-summary {
    position: static;
  }

  .crr-item {
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 480px) {

  /* Carrinho */
  .crr-item-title {
    font-size: 11px;
  }

  .crr-qty-btn {
    width: 30px;
    height: 30px;
  }

  .crr-qty-val {
    padding: 0 10px;
    height: 30px;
  }

  /* Armário */
  .arm-item-tags {
    gap: 4px;
  }

  .arm-tag {
    font-size: 8px;
    padding: 3px 7px;
  }
}


/* ============================================================
   HOMEPAGE v2 — REPRESENT / OFF-WHITE INSPIRED
   Prefix: hp-
   ============================================================ */

.hp-wrap {
  background: var(--void);
  overflow-x: hidden;
}

/* ── HERO SPLIT BANNER ── */
.hp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 600px;
}

.hp-hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.hp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-hero-panel:hover .hp-hero-img {
  transform: scale(1.04);
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hp-hero-caption {
  position: relative;
  z-index: 2;
  padding: 0 48px 56px;
  width: 100%;
  mix-blend-mode: difference;
  color: #fff;
}

.hp-hero-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hp-hero-heading {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 28px;
}

.hp-hero-cta-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  padding: 14px 40px;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  transition: background 0.25s, letter-spacing 0.25s;
  isolation: isolate;
  mix-blend-mode: normal;
}

.hp-hero-panel:hover .hp-hero-cta-label {
  background: var(--bone);
  letter-spacing: 0.32em;
}

/* Separator between panels */
.hp-hero-left {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── TICKER ── */
.hp-ticker {
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
  background: var(--void);
  padding: 16px 0;
}

.hp-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: hpTicker 30s linear infinite;
}

.hp-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes hpTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.hp-tick {
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 900;
  color: var(--t-primary);
  text-transform: uppercase;
}

.hp-tick-muted {
  color: var(--t-muted);
  font-weight: 400;
}

/* ── SECTION BASE ── */
.hp-section {
  border-bottom: 1px solid var(--bd);
}

.hp-section-head {
  padding: 64px 48px 48px;
}

.hp-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hp-section-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--bd-mid);
  line-height: 1;
}

.hp-section-dash {
  color: var(--bd-mid);
}

.hp-section-tag {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hp-section-title {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--t-primary);
  margin-bottom: 12px;
}

.hp-section-sub {
  font-size: 11px;
  color: var(--t-secondary);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 520px;
}

/* ── PRODUCT CARDS GRID ── */
.hp-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  padding: 0;
}

.hp-card {
  background: var(--void);
  display: flex;
  flex-direction: column;
}

.hp-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: var(--smoke);
}

.hp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0.9;
}

.hp-card-img-wrap:hover .hp-card-img {
  transform: scale(1.05);
  opacity: 1;
}

.hp-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--abyss);
}

.hp-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  text-transform: uppercase;
}

.hp-card-color {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.hp-card-info {
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hp-card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-card-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--t-primary);
  line-height: 1.2;
}

.hp-card-colorway {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hp-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hp-card-specs span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--t-muted);
  border: 1px solid var(--bd-mid);
  padding: 4px 10px;
  text-transform: uppercase;
}

.hp-card-sizes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-sizes-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hp-sz-indicator {
  font-weight: 700;
  color: var(--t-primary);
  transition: all 0.2s;
}

.hp-sizes-row {
  display: flex;
  gap: 6px;
}

.hp-sz {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.hp-sz:hover:not(:disabled) {
  border-color: var(--t-secondary);
  color: var(--t-primary);
}

.hp-sz.sel {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 900;
}

.hp-sz.hp-sz-sold {
  opacity: 0.2;
  text-decoration: line-through;
  cursor: not-allowed;
}

.hp-sz:disabled {
  opacity: 0.2;
  text-decoration: line-through;
  cursor: not-allowed;
}

.hp-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.hp-card-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: -0.01em;
}

.hp-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.hp-size-error {
  display: none;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--casino);
  font-weight: 700;
  border-left: 2px solid var(--casino);
  padding-left: 8px;
  animation: hpShake 0.4s ease;
}

.hp-size-error.show {
  display: block;
}

@keyframes hpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  75% {
    transform: translateX(3px);
  }
}

.hp-btn-cart {
  display: block;
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, letter-spacing 0.2s;
  font-family: var(--font-sans);
}

.hp-btn-cart:hover {
  background: var(--bone);
  letter-spacing: 0.28em;
}

.hp-btn-sold {
  background: var(--bd-mid);
  color: var(--t-muted);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── STATEMENT ── */
.hp-statement {
  padding: 100px 48px;
  border-bottom: 1px solid var(--bd);
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hp-statement-text {
  font-size: clamp(20px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--t-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 800px;
}

.hp-statement-text em {
  font-style: normal;
  color: var(--t-muted);
}

/* ── NFC STEPS ── */
.hp-nfc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
}

.hp-nfc-step {
  background: var(--void);
  padding: 40px 28px;
}

.hp-nfc-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--bd-mid);
  line-height: 1;
  margin-bottom: 16px;
}

.hp-nfc-title {
  font-size: 11px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hp-nfc-desc {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.8;
}

/* ── STREETS ── */
.hp-streets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
}

.hp-street-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--smoke);
}

.hp-street-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.5s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-street-card:hover img {
  opacity: 0.85;
  transform: scale(1.05);
}

.hp-street-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ── TIERS ── */
.hp-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd);
}

.hp-tier {
  background: var(--void);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-tier-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--t-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-tier-gold .hp-tier-name {
  color: var(--gold);
}

.hp-tier-pts {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--t-muted);
  text-transform: uppercase;
}

.hp-tier-benefit {
  font-size: 10px;
  color: var(--t-secondary);
  line-height: 1.8;
  margin-top: auto;
}

.hp-tier-cta {
  padding: 40px 48px;
  text-align: center;
}

.hp-btn-outline {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--bd-mid);
  color: var(--t-secondary);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.hp-btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* ── MANIFESTO ── */
.hp-manifesto {
  padding: 120px 48px;
  background: var(--abyss);
  border-bottom: 1px solid var(--bd);
}

.hp-manifesto-inner {
  max-width: 800px;
}

.hp-manifesto-label {
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--t-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hp-manifesto-text {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 900;
  color: var(--t-primary);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hp-manifesto-text span {
  color: var(--t-muted);
  font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hp-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hp-hero-panel {
    min-height: 70vh;
  }

  .hp-hero-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hp-hero-caption {
    padding: 0 24px 40px;
  }

  .hp-hero-heading {
    font-size: clamp(32px, 10vw, 56px);
  }

  .hp-products-grid {
    grid-template-columns: 1fr;
  }

  .hp-section-head {
    padding: 48px 24px 36px;
  }

  .hp-nfc-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hp-streets {
    grid-template-columns: 1fr 1fr;
  }

  .hp-tiers {
    grid-template-columns: 1fr 1fr;
  }

  .hp-statement {
    padding: 64px 24px;
  }

  .hp-manifesto {
    padding: 64px 24px;
  }

  .hp-tier-cta {
    padding: 32px 24px;
  }

  .hp-card-info {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 480px) {
  .hp-hero-panel {
    min-height: 55vh;
  }

  .hp-nfc-steps {
    grid-template-columns: 1fr;
  }

  .hp-tiers {
    grid-template-columns: 1fr;
  }

  .hp-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-card-actions {
    min-width: 100%;
  }

  .hp-sz {
    width: 40px;
    height: 40px;
    font-size: 9px;
  }
}


/* ============================================================
   PRODUCT PAGE v2 — REPRESENT INSPIRED
   Prefix: pp-
   ============================================================ */

.pp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--void);
  color: var(--t-primary);
}

/* Right wrapper holds both panels */
.pp-right-wrapper {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ── GALLERY ── */
.pp-gallery {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--abyss);
  overflow: hidden;
}

.pp-gallery-main {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--abyss);
}

.pp-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pp-slide.active {
  display: block;
}

.pp-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s;
}

.pp-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
}

.pp-no-img svg {
  width: 40%;
}

/* Navigation Arrows */
.pp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--smoke);
  border: 1px solid var(--bd-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
  color: var(--t-primary);
}

.pp-nav:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

.pp-nav-prev {
  left: 20px;
}

.pp-nav-next {
  right: 20px;
}

.pp-slide-counter {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t-secondary);
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--bd-mid);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
}

/* Thumbnails */
.pp-thumbs {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: var(--void);
  flex-shrink: 0;
  overflow-x: auto;
}

.pp-thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  background: var(--abyss);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pp-thumb.active {
  border-color: var(--gold);
}

.pp-thumb:hover {
  border-color: var(--t-secondary);
}

.pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom button */
.pp-zoom-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--smoke);
  border: 1px solid var(--bd-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  color: var(--t-primary);
  transition: all 0.2s;
}

.pp-zoom-btn:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

/* Zoom overlay */
.pp-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.pp-zoom-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.pp-zoom-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pp-zoom-close:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

/* ── INFO PANEL ── */
.pp-info {
  padding: 80px 56px 80px 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.pp-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--t-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pp-eyebrow-sep {
  color: var(--t-muted);
}

.pp-eyebrow-hl {
  color: var(--gold);
  font-weight: 600;
}

/* Title */
.pp-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--t-primary);
  margin-bottom: 16px;
  text-transform: none;
}

/* Price */
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.pp-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--t-primary);
}

.pp-price-old {
  font-size: 14px;
  color: var(--t-secondary);
  text-decoration: line-through;
}

/* Pay hint */
.pp-pay-hint {
  font-size: 12px;
  color: var(--t-secondary);
  margin-bottom: 28px;
  text-transform: none;
  font-weight: 400;
}

/* Color selector */
.pp-color-select {
  margin-bottom: 28px;
}

.pp-color-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--t-primary);
  text-transform: none;
}

.pp-color-count {
  font-size: 11px;
  color: var(--t-secondary);
  vertical-align: super;
}

.pp-color-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-primary);
  margin-top: 2px;
  margin-bottom: 12px;
  text-transform: none;
}

.pp-color-swatches {
  display: flex;
  gap: 8px;
}

.pp-swatch {
  width: 56px;
  height: 56px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 2px;
  background-clip: content-box;
  transition: border-color 0.2s;
  border-radius: 0;
}

.pp-swatch.active {
  border-color: var(--gold);
}

.pp-swatch:hover {
  border-color: var(--t-secondary);
}

/* Model info */
.pp-model-info {
  font-size: 12px;
  color: var(--t-secondary);
  margin-bottom: 24px;
  text-transform: none;
}

/* Size section */
.pp-size-section {
  margin-bottom: 20px;
}

.pp-size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pp-size-label-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--t-primary);
  text-transform: none;
}

.pp-size-guide-link {
  font-size: 12px;
  color: var(--gold);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: none;
  font-family: var(--font-sans);
}

.pp-sizes {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.pp-sz {
  flex: 1;
  min-width: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  color: var(--t-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
  text-transform: uppercase;
  margin-left: -1px;
}

.pp-sz:first-child {
  margin-left: 0;
}

.pp-sz:hover:not(:disabled):not(.pp-sz-sold) {
  border-color: var(--gold);
  color: var(--gold);
  z-index: 1;
}

.pp-sz.ativo {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
  z-index: 2;
}

.pp-sz.pp-sz-sold {
  color: var(--t-muted);
  background: var(--void);
  cursor: not-allowed;
  position: relative;
}

.pp-sz.pp-sz-sold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--t-muted);
  transform: rotate(-12deg);
}

.pp-sz:disabled {
  color: var(--t-muted);
  cursor: not-allowed;
}

.pp-size-not-stock {
  font-size: 12px;
  color: var(--gold);
  text-decoration: underline;
  margin-top: 10px;
  cursor: pointer;
  text-transform: none;
}

/* Add to Cart button */
.pp-btn-add {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--bone);
  color: var(--void);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
  margin-bottom: 24px;
}

.pp-btn-add:hover:not(:disabled) {
  background: var(--gold);
}

.pp-btn-sold {
  background: var(--smoke);
  color: var(--t-muted);
  cursor: not-allowed;
}

/* Trust badges */
.pp-badges {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--bd);
}

.pp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t-secondary);
  text-transform: uppercase;
}

.pp-badge-icon {
  width: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--gold);
}

/* Accordion */
.pp-accordion {
  border-top: 1px solid var(--bd-mid);
}

.pp-accordion:last-of-type {
  border-bottom: 1px solid var(--bd-mid);
}

.pp-acc-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--t-primary);
  font-family: var(--font-sans);
  text-transform: none;
  text-align: left;
}

.pp-acc-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--gold);
}

.pp-accordion.open .pp-acc-icon {
  transform: rotate(45deg);
}

.pp-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.pp-accordion.open .pp-acc-body {
  max-height: 600px;
  padding-bottom: 24px;
}

.pp-acc-text {
  font-size: 13px;
  color: var(--t-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  text-transform: none;
}

/* Detail grid (inside accordion) */
.pp-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 12px;
}

.pp-detail-item:last-child {
  border-bottom: none;
}

.pp-detail-k {
  color: var(--t-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.pp-detail-v {
  color: var(--t-primary);
  font-weight: 600;
  text-align: right;
}

/* Size Guide overlay */
.pp-size-guide {
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  padding: 24px;
  margin-bottom: 24px;
}

.pp-sg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pp-sg-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--t-primary);
  text-transform: none;
}

.pp-sg-header button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--t-primary);
}

.pp-sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.pp-sg-table th,
.pp-sg-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--bd);
  text-align: center;
  color: var(--t-secondary);
}

.pp-sg-table th {
  font-weight: 700;
  color: var(--t-primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pp-sg-table td:first-child,
.pp-sg-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--t-primary);
}

/* ── RESPONSIVE PRODUCT PAGE ── */
@media (max-width: 900px) {
  .pp-container {
    grid-template-columns: 1fr;
  }

  .pp-gallery {
    position: relative;
    top: auto;
    height: auto;
  }

  .pp-gallery-main {
    aspect-ratio: 4/5;
    position: relative;
  }

  .pp-slide {
    position: absolute;
    inset: 0;
  }

  .pp-slide-img {
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  .pp-thumbs {
    display: none;
  }

  .pp-info {
    padding: 32px 20px 60px;
    overflow-y: visible;
  }

  .pp-title {
    font-size: 22px;
  }

  .pp-zoom-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .pp-sz {
    height: 46px;
    font-size: 12px;
  }

  .pp-btn-add {
    height: 52px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .pp-nav {
    width: 36px;
    height: 36px;
  }

  .pp-swatch {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   STICKY ADD TO CART — Mobile only
   Aparece quando o botão inline saiu do viewport
   ═══════════════════════════════════════════════════════════════════ */
.pp-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .pp-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    align-items: center;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--void);
    border-top: 1px solid var(--bd-mid);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .pp-sticky-cta.pp-sticky-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .pp-sticky-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
  }

  .pp-sticky-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--t-primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pp-sticky-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.04em;
  }

  .pp-sticky-btn {
    flex-shrink: 0;
    background: var(--bone);
    color: var(--void);
    border: none;
    padding: 14px 22px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .pp-sticky-btn:hover,
  .pp-sticky-btn:active {
    background: var(--gold);
  }

  /* O indicator de loc fica acima da sticky quando esta aparece */
  .pp-sticky-cta.pp-sticky-visible~.hk-loc-indicator,
  body:has(.pp-sticky-cta.pp-sticky-visible) .hk-loc-indicator {
    bottom: 80px;
  }
}

/* ============================================================
   SIZE GUIDE PANEL — Full takeover (Represent style)
   ============================================================ */

/* Panel swap transitions */
.pp-info {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

.pp-info.pp-panel-hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pp-sg-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  background: var(--void);
  z-index: 5;
}

.pp-sg-panel.pp-panel-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

/* Header */
.pp-sg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 56px 24px 48px;
  border-bottom: 1px solid var(--bd);
  flex-shrink: 0;
}

.pp-sg-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--t-primary);
  text-transform: none;
}

.pp-sg-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--bd-mid);
  border-radius: 50%;
  cursor: pointer;
  color: var(--t-primary);
  transition: all 0.2s;
}

.pp-sg-close:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

/* Scrollable content */
.pp-sg-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 32px 48px 48px 48px;
}

.pp-sg-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--t-primary);
  margin-bottom: 28px;
  text-transform: none;
}

/* Size row (header buttons) */
.pp-sg-sizes-row {
  display: grid;
  grid-template-columns: 120px repeat(6, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--bd);
}

.pp-sg-sizes-label {
  display: flex;
  align-items: center;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-secondary);
  text-transform: none;
}

.pp-sg-size-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--t-secondary);
  font-family: var(--font-sans);
  text-transform: uppercase;
  transition: all 0.15s;
  border-bottom: 2px solid transparent;
}

.pp-sg-size-btn:hover {
  color: var(--t-primary);
}

.pp-sg-size-btn.active {
  color: var(--gold);
  font-weight: 700;
  background: var(--abyss);
  border-bottom-color: var(--gold);
}

/* Measurement table */
.pp-sg-table {
  width: 100%;
  border-collapse: collapse;
}

.pp-sg-table tr {
  border-bottom: 1px solid var(--bd);
}

.pp-sg-table tr:last-child {
  border-bottom: none;
}

.pp-sg-table td {
  padding: 16px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: var(--t-secondary);
  transition: all 0.2s;
}

.pp-sg-measure-name {
  text-align: left !important;
  padding-left: 12px !important;
  font-weight: 500 !important;
  color: var(--t-primary) !important;
  width: 120px;
  min-width: 120px;
  text-transform: none;
  font-size: 13px;
}

/* Highlighted column */
.pp-sg-table td.pp-sg-hl {
  color: var(--gold);
  font-weight: 700;
  background: var(--abyss);
}

/* ADD TO CART inside size guide */
.pp-sg-cart-btn {
  margin-top: 32px;
  margin-bottom: 20px;
}

/* Model info */
.pp-sg-model {
  font-size: 13px;
  color: var(--t-secondary);
  text-transform: none;
  line-height: 1.6;
}

.pp-sg-model strong {
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Responsive Size Guide ── */
@media (max-width: 900px) {
  .pp-right-wrapper {
    position: relative;
  }

  .pp-sg-panel {
    position: absolute;
    inset: 0;
  }

  .pp-sg-panel.pp-panel-visible {
    position: relative;
  }

  .pp-sg-top {
    padding: 32px 20px 20px;
  }

  .pp-sg-scroll {
    padding: 24px 20px 40px;
  }

  .pp-sg-sizes-row {
    grid-template-columns: 80px repeat(6, 1fr);
  }

  .pp-sg-sizes-label {
    font-size: 11px;
    padding: 10px 6px;
  }

  .pp-sg-size-btn {
    font-size: 11px;
    padding: 10px 4px;
  }

  .pp-sg-table td {
    font-size: 11px;
    padding: 12px 4px;
  }

  .pp-sg-measure-name {
    font-size: 11px;
    width: 80px;
    min-width: 80px;
    padding-left: 6px !important;
  }
}

@media (max-width: 480px) {
  .pp-sg-sizes-row {
    grid-template-columns: 60px repeat(6, 1fr);
    overflow-x: auto;
  }

  .pp-sg-size-btn {
    font-size: 10px;
    padding: 10px 2px;
  }

  .pp-sg-measure-name {
    width: 60px;
    min-width: 60px;
    font-size: 10px;
  }

  .pp-sg-table td {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LOCATION INDICATOR + DRAWER  (hk-loc-)
   Represent-style shipping/language selector
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fixed bottom-left indicator pill ───────────────────────────── */
.hk-loc-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--void, #0A0A0A);
  border: 1px solid var(--bd, #1A1A1A);
  color: var(--t-secondary, #888880);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hk-loc-indicator:hover {
  border-color: var(--bd-mid, #2A2A2A);
  color: var(--t-primary, #F0EFE9);
}

.hk-loc-divider {
  opacity: 0.3;
}

/* ── Overlay ────────────────────────────────────────────────────── */
.hk-loc-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hk-loc-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer panel (slides from right like Represent) ────────────── */
.hk-loc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--void);
  color: var(--t-primary);
  border-left: 1px solid var(--bd-mid);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hk-loc-drawer.open {
  transform: translateX(0);
}

/* ── Drawer header ──────────────────────────────────────────────── */
.hk-loc-drawer-head {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--bd);
  background: var(--void);
}

.hk-loc-drawer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--t-primary);
}

.hk-loc-drawer-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--t-secondary);
  margin: 6px 0 0;
  line-height: 1.4;
}

.hk-loc-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--t-primary);
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.hk-loc-close:hover {
  color: var(--gold);
}

/* ── Drawer body ────────────────────────────────────────────────── */
.hk-loc-drawer-body {
  flex: 1 1 auto;
  min-height: 0; /* permite que o body encolha e faça scroll (fix overlap) */
  overflow-y: auto;
  padding: 28px;
}

.hk-loc-section {
  margin-bottom: 32px;
}

.hk-loc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--t-secondary);
  margin-bottom: 14px;
}

/* Current country display */
.hk-loc-current {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
}

.hk-loc-country-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--t-primary);
}

.hk-loc-change-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
}

.hk-loc-change-btn:hover {
  color: var(--t-primary);
}

/* Country list */
.hk-loc-country-list {
  margin-top: 12px;
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  max-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* mantém o scroll interno e impede transbordo */
}

.hk-loc-search {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 1px solid var(--bd);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  background: var(--smoke);
  color: var(--t-primary);
}

.hk-loc-search::placeholder {
  color: var(--t-muted);
}

.hk-loc-countries {
  flex: 1 1 auto;
  min-height: 0; /* permite scroll interno em vez de transbordar */
  overflow-y: auto;
}

.hk-loc-country-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--t-secondary);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.hk-loc-country-btn:hover {
  background: var(--smoke);
  color: var(--t-primary);
}

.hk-loc-country-btn.hk-loc-active {
  background: var(--gold);
  color: var(--void);
}

.hk-loc-cc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--t-muted);
  min-width: 24px;
}

.hk-loc-country-btn.hk-loc-active .hk-loc-cc {
  color: rgba(10, 10, 10, 0.6);
}

.hk-loc-curr-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t-muted);
}

.hk-loc-country-btn.hk-loc-active .hk-loc-curr-tag {
  color: rgba(10, 10, 10, 0.7);
}

/* Language radio buttons */
.hk-loc-lang-opts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hk-loc-lang-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  background: var(--abyss);
  border: 1px solid var(--bd-mid);
  transition: border-color 0.2s;
}

.hk-loc-lang-radio:has(input:checked) {
  border-color: var(--gold);
}

.hk-loc-lang-radio input {
  display: none;
}

.hk-loc-radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bd-mid);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.hk-loc-lang-radio input:checked+.hk-loc-radio-mark {
  border-color: var(--gold);
}

.hk-loc-lang-radio input:checked+.hk-loc-radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hk-loc-lang-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--t-primary);
}

/* ── Drawer footer ──────────────────────────────────────────────── */
.hk-loc-drawer-foot {
  flex: 0 0 auto;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--bd);
  background: var(--void);
}

.hk-loc-continue {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--bone);
  color: var(--void);
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hk-loc-continue:hover {
  background: var(--gold);
  color: var(--void);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hk-loc-drawer {
    width: 100vw;
  }

  .hk-loc-indicator {
    bottom: 12px;
    left: 12px;
    font-size: 10px;
    padding: 8px 12px;
  }
}

/* ============================================================
   HOKEN v5 — coerência tipográfica (metadados em Space Mono)
   ============================================================ */
.hk-hero-eyebrow,
.hk-drop-badge,
.hk-drop-meta,
.hk-visual-label,
.hk-visual-serial,
.hk-model-label,
.hk-size-label-text,
.hk-manifesto-label,
.ld-eyebrow,
.lds-eyebrow,
.lf-eyebrow,
.nfc-serial,
.nfc-meta-k,
.nfc-meta-v,
.nfc-meta-mono,
.nfc-form-label,
.doc-eyebrow,
.cnt-eyebrow,
.cnt-label,
.chk-eyebrow,
.chk-block-label,
.clb-eyebrow,
.clb-card-label,
.clb-points-label,
.clb-progress-labels,
.hc-perk-label,
.prf-label,
.prf-data-label-head,
.crr-eyebrow,
.crr-summary-label,
.hp-hero-eyebrow,
.hp-hero-cta-label,
.hp-ticker,
.hp-tick,
.hp-section-label,
.hp-card-badge,
.hp-sizes-label,
.hp-manifesto-label,
.pkp-img-badge,
.item-meta,
.label-text,
.data-label,
.status-badge,
.hq-label {
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════════
   HOKEN — ANIMAÇÕES DE ENTRADA (luxo silencioso)
   Reveal + wipe + film. Sem libraries. Tudo gated por .hk-anim
   (adicionado por JS) → sem JS / reduced-motion = conteúdo visível.
   ═══════════════════════════════════════════════════════════════ */

/* 1. Reveal: fade + subida curta */
html.hk-anim-on .hk-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html.hk-anim-on .hk-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 2. Wipe de aresta dura (clip-path) — varre de baixo para cima */
html.hk-anim-on .hk-wipe {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path;
}
html.hk-anim-on .hk-wipe.is-in {
  clip-path: inset(0 0 0 0);
}

/* 3. Film reveal — imagem "revela-se" de escuro/grão para nítida.
      Inclui 'transform' na transição para não anular o hover-scale do hero. */
html.hk-anim-on .hk-film {
  filter: brightness(0.32) contrast(1.15) saturate(0.9);
  transition: filter 1.1s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter;
}
html.hk-anim-on .hk-film.is-in {
  filter: none;
}

/* Ticker — preparado para drive por JS (velocidade reativa ao scroll) */
.hp-ticker-track { will-change: transform; }

/* Respeita sempre quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html.hk-anim-on .hk-reveal,
  html.hk-anim-on .hk-wipe,
  html.hk-anim-on .hk-film {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    transition: none !important;
  }
}