/* Definição das Fontes Personalizadas (Caminhos Relativos Corrigidos) */
@font-face {
  font-family: 'Birthstone';
  src: url('Fontes/Birthstone-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'GreatVibes';
  src: url('Fontes/GreatVibes-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'ImperialScript';
  src: url('Fontes/ImperialScript-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'MeaCulpa';
  src: url('Fontes/MeaCulpa-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'MonsieurLaDoulaise';
  src: url('Fontes/MonsieurLaDoulaise-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Romanesco';
  src: url('Fontes/Romanesco-Regular.ttf') format('truetype');
}

/* Tipografia e Base do Index */
body {
  font-family: 'Nexa', sans-serif;
  background-color: var(--bg-color, #0d0d0d);
  color: var(--text-color, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 2rem;
}

/* ==========================================
   DECLARAÇÃO DA FAMÍLIA NEXA
   ========================================== */

/* Regular (Texto Padrão) */
@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Book (Alternativa Leve para Leitura) */
@font-face {
  font-family: 'Nexa Book';
  src: url('Fontes/Nexa-Book.ttf') format('truetype');
  font-weight: 450;
  font-style: normal;
}

/* Light & Thin (Subtítulos e Eyebrows) */
@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Thin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

/* Bold & Heavy (Botões e Destaques) */
@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* Black & Extra Bold (Títulos Impactantes) */
@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('Fontes/Nexa-XBold.ttf') format('truetype');
  font-weight: 850;
  font-style: normal;
}

/* ==========================================
   ESTILOS GERAIS DO SITE E VARIÁVEIS
   ========================================== */

:root{
  --bg: #141414;
  --surface: #1F1F1F;
  --surface-2: #262626;
  --ink: #F3F1EA;
  --muted: #9A9A96;
  --line: rgba(255,255,255,0.09);
  --yellow: #FFE500;
  --magenta: #E6007E;
  --cyan: #00AEEF;
  --radius: 14px;
}

*{box-sizing:border-box;}
html{-webkit-tap-highlight-color:transparent;}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Nexa', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  min-height:100svh;
  -webkit-font-smoothing:antialiased;
  background-image:
    radial-gradient(circle at 40px 40px, rgba(255,255,255,0.035) 1px, transparent 1.6px);
  background-size: 42px 42px;
}

/* ==========================================
   PROTEÇÕES DE CONTEÚDO E IMAGENS
   ========================================== */

img {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.product, .modal-box, header, footer, .tabs, .topbar {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

input, select, textarea {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
}

/* ==========================================
   ELEMENTOS DE INTERFACE E LAYOUT
   ========================================== */

.wrap{
  max-width:920px;
  margin:0 auto;
  padding:28px 18px 64px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}

.back{
  display:flex; 
  align-items:center; 
  gap:6px;
  font-family:'Nexa', sans-serif;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:.04em;
  text-decoration:none;
}
.back svg{width:14px;height:14px;stroke:var(--muted);}
.back:hover{color:var(--ink);}
.back:hover svg{stroke:var(--ink);}

/* Botão do Carrinho Flutuante / Header */
.cart-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2, #222);
  border: 1px solid var(--line, #444);
  color: var(--ink, #fff);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: 'Nexa', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.cart-count-badge {
  background: var(--cyan, #00d2d3);
  color: #0c1a1f;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

header.hero{
  padding:22px 0 26px;
  text-align:left;
}

header.hero .eyebrow{
  margin-bottom:8px;
  font-family:'Nexa', sans-serif;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
}

h1{
  font-family:'Nexa', sans-serif !important;
  font-weight:800 !important;
  font-size:32px;
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:-0.01em;
  margin:0 0 10px;
}

header.hero p{
  font-family:'Nexa', sans-serif;
  color:var(--muted);
  font-size:14.5px;
  max-width:520px;
  margin:0;
}

/* ==========================================
   SEÇÃO DE STORIES DE VÍDEO
   ========================================== */

.stories-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.story-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  position: relative;
  width: 130px;
}

.story-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-inner {
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  overflow: hidden;
  position: relative;
}

/* Foto de Capa do Story */
.story-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ícone Play sobreposto na capa */
.story-play-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.story-container:hover .story-ring {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.6);
}

/* Balão Chamativo com Ponta em Formato de Seta */
.story-bubble {
  position: relative;
  margin-top: 10px;
  bottom: auto;
  left: auto;
  transform: none;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: pulseBubble 2s infinite alternate ease-in-out;
  z-index: 5;
  width: 100%;
  word-wrap: break-word;
}

.story-bubble::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--magenta);
}

@keyframes pulseBubble {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* ==========================================
   TABS, GRID E PRODUTOS
   ========================================== */

.tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:26px 0 26px;
}

.tab{
  font-family:'Nexa', sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:9px 16px;
  border-radius:100px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--muted);
  cursor:pointer;
  transition:all .15s ease;
}

.tab:hover{color:var(--ink); border-color:rgba(255,255,255,0.25);}
.tab.active{
  background:var(--ink);
  color:#141414;
  border-color:var(--ink);
  font-weight:800;
}

/* Grid de Produtos */
.grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

@media (max-width: 640px){
  .grid{grid-template-columns:1fr;}
  h1{font-size:26px;}
}

/* Card do Produto */
.product{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  overflow:hidden;
}

.product .cmyk-bar{
  position:absolute; 
  top:0; left:0; right:0; 
  border-radius:0; 
  height:4px;
}

.product-image{
  width:100%;
  height:250px;
  background:var(--surface-2);
  border-radius:10px;
  overflow:hidden;
  margin-top:6px;
  border:1px solid var(--line);
  cursor:pointer;
  position:relative;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.product-image:hover img{
  transform:scale(1.04);
}

/* ==========================================
   ESTILOS DO CARROSSEL / SLIDER DE FOTOS
   ========================================== */

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center; /* Impede desalinhamento vertical que causa telas brancas */
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Oculta a barra de rolagem no Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Oculta a barra de rolagem no Chrome/Safari */
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  pointer-events: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--cyan);
  width: 18px;
  border-radius: 4px;
}

.zoom-badge {
  position:absolute;
  bottom:8px;
  right:8px;
  background:rgba(0,0,0,0.65);
  color:var(--ink);
  font-family:'Nexa', sans-serif;
  font-size:10px;
  font-weight:700;
  padding:4px 8px;
  border-radius:6px;
  backdrop-filter:blur(4px);
  pointer-events:none;
  display:flex;
  align-items:center;
  gap:4px;
  z-index: 6;
}

/* Seções de Opção e Botões */
.option-section {
  display:flex;
  flex-direction:column;
  gap:6px;
}

.option-label {
  font-family:'Nexa', sans-serif;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
}

.option-grid {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.opt-btn {
  font-family:'Nexa', sans-serif;
  font-size:11px;
  font-weight:700;
  padding:6px 10px;
  border-radius:6px;
  border:1px solid var(--line);
  background:var(--surface-2);
  color:var(--muted);
  cursor:pointer;
  transition:all .15s ease;
}

.opt-btn:hover {
  color:var(--ink);
  border-color:rgba(255,255,255,0.3);
}

.opt-btn.active {
  background:var(--cyan);
  color:#0c1a1f;
  border-color:var(--cyan);
  font-weight:800;
}

/* Adicionais Opcionais */
.addons-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface-2);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Nexa', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  color: var(--ink);
}

.addon-item input[type="checkbox"] {
  accent-color: var(--cyan);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.addon-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.addon-price {
  font-family: 'Nexa', sans-serif;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 800;
}

.sub-option-select {
  margin-top: 4px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-family: 'Nexa', sans-serif;
  font-weight: 700;
  width: 100%;
  display: none;
}

.sub-option-select.show {
  display: block;
}

.product-tag{
  font-family:'Nexa', sans-serif;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.product h3{
  font-family:'Nexa', sans-serif !important;
  font-size:16.5px;
  line-height:1.3;
  margin:0;
  font-weight:800 !important;
}

.price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.price-old{
  font-family:'Nexa', sans-serif;
  font-size:12.5px;
  font-weight:700;
  color:var(--muted);
  text-decoration:line-through;
}

.price-new{
  font-family:'Nexa', sans-serif !important;
  font-size:22px;
  font-weight:800 !important;
}

/* Campos de Formulário e Tooltips */
.field {
  position: relative;
}

.field label{
  display:block;
  font-family:'Nexa', sans-serif;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:6px;
}

.field input{
  width:100%;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:99px;
  padding:11px 12px;
  color:var(--ink);
  font-size:13.5px;
  font-family:'Nexa', sans-serif;
  font-weight:400;
  box-sizing: border-box;
}

.field input::placeholder{color:#6c6c6c;}
.field input.error{border-color:var(--magenta);}

.logo-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface-2);
  border: 1px solid var(--cyan);
  color: var(--ink);
  font-family: 'Nexa', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.logo-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--cyan);
}

.field:hover .logo-tooltip,
.field input:focus + .logo-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Grupo de Botões de Ação */
.action-buttons-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.add-cart-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex: 1;
  padding:13px 8px;
  border:1px solid var(--cyan);
  border-radius:10px;
  background:transparent;
  color:var(--cyan);
  font-family:'Nexa', sans-serif;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.02em;
  cursor:pointer;
  transition:all .15s ease;
}

.add-cart-btn:hover {
  background:rgba(0,210,211,0.1);
}

.buy-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex: 1;
  padding:13px 8px;
  border:none;
  border-radius:10px;
  background:var(--cyan);
  color:#0c1a1f;
  font-family:'Nexa', sans-serif;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.02em;
  cursor:pointer;
  transition:transform .15s ease, filter .15s ease;
}

.buy-btn:hover{filter:brightness(1.08); transform:translateY(-1px);}
.buy-btn svg, .add-cart-btn svg {width:16px;height:16px;}

/* Botão de Compartilhar do Card */
.share-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  transition: all .15s ease;
}

.share-card-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 210, 211, 0.08);
}

.share-card-btn svg {
  width: 18px;
  height: 18px;
}

.hint {
  font-family: 'Nexa', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--magenta);
  display: none;
  margin-top: 6px;
}

.hint.show {
  display: block;
}

/* ==========================================
   OFFCANVAS / GAVETA DO CARRINHO
   ========================================== */

.cart-drawer-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1500;
  display: none;
}

.cart-drawer-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -400px; width: 100%; max-width: 380px; height: 100%;
  background: var(--surface, #1e1e1e);
  border-left: 1px solid var(--line, #333);
  z-index: 1501;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
}

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

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--line, #333);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  background: var(--surface-2, #2a2a2a);
  border: 1px solid var(--line, #444);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 800;
}

.cart-item-details {
  font-size: 11px;
  color: var(--muted, #aaa);
  line-height: 1.4;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.cart-item-price {
  font-weight: 800;
  color: var(--cyan, #00d2d3);
  font-size: 13px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--magenta, #ff4757);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line, #333);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
}

/* ==========================================
   MODAIS (CHECKOUT, LIGHTBOX E VÍDEO)
   ========================================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
  font-family: 'Nexa', sans-serif;
  font-weight: 700;
}

.modal-box {
  background: var(--surface, #1e1e1e);
  border: 1px solid var(--line, #333);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  position: relative;
  color: var(--ink, #fff);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.modal-box h3 {
  font-family: 'Nexa', sans-serif;
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-box p {
  font-family: 'Nexa', sans-serif;
  font-size: 12.5px;
  color: var(--muted, #aaa);
  margin: 0 0 14px;
  line-height: 1.4;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted, #aaa);
  font-size: 26px;
  cursor: pointer;
  font-family: 'Nexa', sans-serif;
}

.modal-close-btn:hover {
  color: var(--ink, #fff);
}

.video-modal-overlay {
  display: flex;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 80vh;
  max-height: 680px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  font-family: 'Nexa', sans-serif;
}

.video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  font-family: 'Nexa', sans-serif;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================
   CUPOM DE DESCONTO NO CARRINHO
   ========================================== */

.coupon-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  font-family: 'Nexa', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.coupon-input-group button {
  background: var(--surface-2);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Nexa', sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}

.coupon-input-group button:hover {
  background: var(--cyan);
  color: #0c1a1f;
}

.coupon-message {
  font-family: 'Nexa', sans-serif;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}

.discount-row {
  color: var(--cyan);
}

.final-total {
  font-size: 18px;
  color: var(--ink);
  border-top: 1px dashed var(--line);
  padding-top: 8px;
}

/* ==========================================
   CARD / MODAL DE COMPARTILHAMENTO DE PRODUTO
   ========================================== */

.clickable-title {
  cursor: pointer;
  transition: color 0.15s ease;
}

.clickable-title:hover {
  color: var(--cyan);
}

.share-modal-box {
  max-width: 420px;
}

.share-card-header {
  margin-bottom: 12px;
}

.share-card-body {
  display: flex;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  align-items: center;
}

.share-card-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.share-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.share-card-details p {
  margin: 0;
  color: var(--ink);
}

.share-card-price {
  color: var(--cyan);
  font-size: 14px;
  margin-top: 4px !important;
}

.share-hint {
  font-size: 11px !important;
  margin: 12px 0 0 !important;
}

/* ==========================================
   RODAPÉ E DEMAIS ELEMENTOS
   ========================================== */

footer{
  text-align:center;
  padding-top:36px;
}

footer .cmyk-bar{
  max-width:90px; 
  margin:0 auto 10px;
}

footer p{
  font-family:'Nexa', sans-serif;
  font-size:10.5px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:.08em;
  margin:0;
  text-transform:uppercase;
}

.cmyk-bar{
  display:flex;
  height:5px;
  width:100%;
  border-radius:3px;
  overflow:hidden;
}

.cmyk-bar span{flex:1;}
.cmyk-bar .c{background:var(--cyan);}
.cmyk-bar .m{background:var(--magenta);}
.cmyk-bar .y{background:var(--yellow);}

.visually-hidden{
  position:absolute; width:1px;height:1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
  border-radius:6px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
}

.link-row.polaroid:hover .link-icon { 
  background: #ff4081; 
  border-color: #ff4081; 
  color: #fff; 
}
/* Banner Responsivo do Topo */
.banner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}