/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
  --color-primary: #FF2B56;
  --color-primary-dark: #FB384A;
  --color-primary-light: #fff0f3;
  --color-secondary: #FB5434;
  --color-orange: #FB5434;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #222222;
  --color-text-muted: #666666;
  --color-border: #e8e8e8;
  --color-price: #FF2B56;
  --color-discount-bg: #ff0024;
  --color-frete: #2E7D32;
  --color-offer-grad-start: #FF2B56;
  --color-offer-grad-end: #FB5434;
  --color-protection: #8B4D0B;
  --color-timer-bg: #FF2B56;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --header-height: 52px;
  --bottom-bar-height: 60px;
  --max-width: 480px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-text);
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* ===== CONTAINER MOBILE ===== */
.app-container {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: var(--header-height);
  background: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  z-index: 100;
  border-bottom: 1px solid #f2f2f2;
}

.header-back-btn,
.header-icon-btn,
.header-share-btn,
.header-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s;
  color: #222;
  text-decoration: none;
  padding: 0;
  position: relative;
}

.header-back-btn:hover,
.header-icon-btn:hover,
.header-share-btn:hover,
.header-more-btn:hover {
  background: #f5f5f5;
}

.header-icon-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  height: 36px;
  gap: 6px;
}

.header-search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 0;
  display: flex;
  align-items: center;
}

.header-search {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: #222;
  cursor: pointer;
}

.header-search::placeholder {
  color: #888;
}

.header-share-btn img {
  width: 31px !important;
  height: 31px !important;
  display: block;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Badge do carrinho */
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border: 1.5px solid #fff;
}

@keyframes popBadge {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.cart-badge.pop {
  animation: popBadge .3s ease;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: var(--header-height);
  padding-bottom: var(--bottom-bar-height);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* ===== IMAGE SLIDER ===== */
.image-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.image-slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .3s ease-out;
  will-change: transform;
}

.slider-img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  pointer-events: none;
}

.slider-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: #fff;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.slider-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ===== PRICE SECTION (decalque oficial) ===== */
.price-section {
  background-image: url('../decalque/decalque-oferta.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  width: 100%;
  aspect-ratio: 1320 / 180;
  overflow: hidden;
  box-sizing: border-box;
}

.price-section::before {
  display: none;
}

/* Posicionamentos absolutos milimétricos baseados no tamanho 1320x180 */

/* 1. Balão de Desconto (caixinha branca do lado esquerdo) */
.discount-badge-white {
  position: absolute;
  left: 4.5%;
  top: 13.5%;
  width: 8.5%;
  height: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ff5722;
  /* Laranja oficial vibrante Shopee */
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}

/* 2. Texto "R$" (Curto) */
.price-label-apartir {
  position: absolute;
  left: 15.5%;
  top: 23%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1;
  white-space: nowrap;
}

/* 3. Preço Principal Grande (Ex: 68,90) - Posicionado ao lado direito do rótulo de preço R$ */
.price-current {
  position: absolute;
  left: 20.2%;
  top: 13.5%;
  color: #ffffff;
  font-size: 20px;
  /* Fonte ligeiramente menor e simétrica */
  font-weight: 500;
  line-height: 1;
}

.price-currency {
  display: none;
}

/* 4. Preço Original Riscado (Alinhado exatamente abaixo do "A partir de R$") */
.price-original {
  position: absolute;
  left: 15.5%;
  top: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1;
}

/* 5. Container do Timer (Lado Direito) */
.price-right {
  display: block;
}

.oferta-relampago {
  display: none;
}

/* Timer alinhado mais para a direita abaixo de Oferta Relâmpago */
.timer-row {
  position: absolute;
  right: 5.5%;
  top: 62%;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.timer-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  /* Cor branca suave, idêntica ao cronômetro */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* Valor do timer - Cor ajustada para combinar perfeitamente com o rótulo */
.timer-value {
  color: rgba(255, 255, 255, 0.85);
  /* Tom branco suave (puxado pro cinza leve) */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
}

/* ===== PRODUCT INFO ===== */
.product-info {
  background: var(--color-white);
  padding: 14px;
}

/* Badge de desconto tipo cupom */
.discount-ticket {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.product-badge-discount {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  /* Sem pontilhados */
}

/* Força crachás de produtos (desconto e frete grátis) a ficarem lado a lado em linha */
.product-badges {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 6px !important;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  flex-wrap: wrap !important;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* Ratings row */
.ratings-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star-icon {
  color: #F5A623;
}

.rating-number {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.divider-v {
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.sold-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Frete */
.frete-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f7f7f7;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
}

.frete-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .8;
}

.product-badge {
  background: var(--color-frete);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.frete-detail {
  font-size: 12px;
  color: var(--color-text-muted);
}

.frete-taxa {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Urgência */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #444;
  background: #fff8f0;
  border: 1px solid #ffd7b0;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-bottom: 12px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.urgency-separator {
  color: #ccc;
  margin: 0 2px;
}

/* Proteção */
/* Estilos de linhas de informações no produto (Frete, Opções, Cashback, Proteção) */
.info-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
}

.info-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-row-title {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.info-row-subtitle {
  font-size: 12px;
  color: #888;
}

.info-row-arrow {
  font-size: 18px;
  color: #ccc;
  font-weight: 300;
  line-height: 1;
}

/* Descrição */
.description-section {
  margin-bottom: 14px;
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.description-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  white-space: pre-line;
}

/* ===== AVALIAÇÕES ===== */
.reviews-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
  margin-bottom: 14px;
}

.reviews-header {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.review-avg {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
}

.review-avg-total {
  font-size: 16px;
  color: #999;
  margin-top: 4px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #F5A623;
}

.review-star.empty {
  color: #ddd;
}

.review-card {
  border-top: 1px solid var(--color-border);
  padding: 12px 0;
}

.review-card:first-of-type {
  border-top: none;
}

.review-header {
  margin-bottom: 8px;
}

.review-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-user-info {
  flex: 1;
}

.review-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.review-user-stars {
  font-size: 12px;
  line-height: 1.4;
}

.review-date {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}

.review-comment {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-photos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.review-photo {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .15s;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}

.review-photo:hover {
  opacity: .85;
}

/* Oculta imgs de mp4 que não carregam como imagem */
img.review-photo[src$=".mp4"] {
  display: none !important;
}

.ver-mais-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}

.ver-mais-btn:hover {
  background: #eee;
}

.load-more-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}

.load-more-btn:hover {
  background: #eee;
}

.review-avatar-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== BARRA DE ABAS (SHOPEE STYLE — FIXA E OCULTA ATÉ ROLAR) ===== */
.product-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e0e0e0;
  background: #fff;
  position: fixed;
  top: -60px;
  /* oculto acima da viewport */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  z-index: 99;
  /* Fica logo abaixo do header que tem 100 */
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  transition: top 0.25s ease;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

/* Quando visível (adicionado via JS ao rolar) */
.product-tabs.tabs-visible {
  top: 52px;
  /* aparece logo abaixo do header (header = 52px) */
}

.product-tab {
  flex: 1;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: center;
}

.product-tab.active {
  color: #111;
  border-bottom-color: #111;
  font-weight: 700;
}

/* ===== PRODUTOS RELACIONADOS ===== */
.related-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.related-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 14px;
}

/* Grade masonry real com 2 colunas independentes (estilo Shopee) */
.related-grid {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 0 4px;
}

/* Colunas individuais do masonry */
.related-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.related-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s;
  display: block;
  width: 100%;
}

.related-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.related-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}

.related-info {
  padding: 8px;
}

.related-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.related-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.related-price-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.related-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.related-discount {
  background: #fde8ec;
  /* Fundo rosa suave igual ao da loja oficial */
  color: #c0394b;
  /* Vermelho menos aceso, idêntico ao -38% da loja */
  font-size: 10px;
  font-weight: 600;
  /* Menos grossa que 700, igual ao original */
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-frete {
  font-size: 10px;
  color: var(--color-frete);
  font-weight: 600;
}

.related-sold {
  font-size: 11px;
  color: #999;
}

/* ===== BOTTOM BAR (ESTILO SHOPEE/OFICIAL FIEL) ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: 64px;
  background: var(--color-white);
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, .04);
}

/* Ícones de Loja e Chat (esquerda) */
.btn-icon-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
  /* Cor preta sólida idêntica à imagem */
  font-size: 11px;
  font-weight: 500;
  padding: 0;
  flex-shrink: 0;
}

.btn-icon-action svg {
  color: #000000;
  stroke-width: 2.2;
  /* Desenho mais encorpado */
}

/* Sem separador na imagem */
.bottom-bar-sep {
  display: none;
}

/* Botão "Adicionar ao carrinho" (Cinza claro, fonte preta, super arredondado) */
.btn-add-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1.45;
  /* Aumentado para estender mais */
  height: 44px;
  border: none;
  background: #f2f2f2;
  /* Cinza claro idêntico */
  color: #000000;
  /* Texto preto */
  border-radius: 24px;
  /* Totalmente arredondado como na imagem */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  line-height: 1.25;
  margin-left: 2px;
  /* Aproxima do bloco de Loja/Chat */
  margin-right: 4px;
}

.btn-add-cart span.btn-line1 {
  font-size: 13.5px;
  font-weight: 600;
  color: #000000;
}

.btn-add-cart:hover {
  opacity: 0.9;
}

/* Botão "Comprar agora" (Vermelho vívido/rosa, super arredondado) */
.btn-buy {
  flex: 1.6;
  /* Aumentado proporcionalmente para manter a simetria */
  height: 44px;
  background: #ff2d55;
  /* Cor rosa/vermelho idêntico ao da imagem */
  color: #ffffff;
  border: none;
  border-radius: 24px;
  /* Totalmente arredondado */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.btn-buy span.btn-line1 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.btn-buy span.btn-line2 {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.95;
  color: #ffffff;
}

.btn-buy:hover {
  opacity: .9;
}

/* Bloco fatiado da loja e do chat usando a imagem oficial */
.store-chat-image-group {
  display: flex;
  align-items: center;
  position: relative;
  width: 78px;
  height: 36px;
  background: url('../botoesdecarrinhioechat/image.png') no-repeat left center;
  background-size: auto 100%;
  flex-shrink: 0;
  margin-right: 0px;
  /* Encostado no botão para menor espaço possível */
  margin-left: 12px;
  /* Afastado um pouco da esquerda */
}

.store-chat-clickable-loja {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
}

.store-chat-clickable-chat {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
}


/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, .85);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

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

.photo-modal img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

.photo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
}

/* ===== CARRINHO ===== */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 12px;
  text-align: center;
}

.cart-empty-icon {
  color: #ddd;
}

.cart-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cart-empty-text {
  font-size: 14px;
  color: #999;
  max-width: 240px;
}

.btn-continue-shopping {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cart-list {
  padding: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 30px;
  height: 28px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.qty-btn:hover {
  background: #eee;
}

.qty-value {
  width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  flex-shrink: 0;
  transition: color .15s;
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

/* Resumo do carrinho */
.cart-summary {
  background: var(--color-white);
  padding: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.cart-summary-label {
  color: var(--color-text-muted);
}

.cart-summary-value {
  font-weight: 600;
  color: var(--color-text);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Bottom bar do carrinho */
.cart-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .15s;
}

.btn-checkout:hover {
  opacity: .9;
}

/* ===== CHECKOUT ===== */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--color-white);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.step.active .step-circle {
  background: var(--color-primary);
  color: #fff;
}

.step.done .step-circle {
  background: #2E7D32;
  color: #fff;
}

.step-label {
  font-size: 10px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.step.active .step-label,
.step.done .step-label {
  color: var(--color-text);
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 6px;
  margin-bottom: 14px;
  transition: background .3s;
}

.step-line.done {
  background: #2E7D32;
}

/* Seções do checkout */
.checkout-section {
  background: var(--color-white);
  padding: 16px;
  margin-bottom: 8px;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Formulário */
.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  background: var(--color-white);
  transition: border-color .15s;
  font-family: var(--font-main);
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input.error {
  border-color: var(--color-primary);
  background: #fff5f5;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
}

/* Resumo do pedido no checkout */
.order-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.order-item-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-item-qty-price {
  font-size: 12px;
  color: var(--color-text-muted);
}

.order-divider {
  height: 1px;
  background: var(--color-border);
  margin: 10px 0;
}

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

.order-total-label {
  font-size: 14px;
  font-weight: 700;
}

.order-total-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Métodos de pagamento */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all .15s;
  background: var(--color-white);
}

.payment-option.selected {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s;
}

.payment-option.selected .payment-radio {
  border-color: var(--color-primary);
}

.payment-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: scale(0);
  transition: transform .15s;
}

.payment-option.selected .payment-radio-dot {
  transform: scale(1);
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.payment-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.payment-icon {
  flex-shrink: 0;
}

/* PIX display */
.pix-display {
  background: #f0faf9;
  border: 1px solid #b2dfdb;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.pix-display-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a6b6b;
  margin-bottom: 12px;
}

.pix-qr {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.pix-code-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.pix-code-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 10px;
  color: #444;
  word-break: break-all;
  text-align: left;
  font-family: monospace;
  margin-bottom: 10px;
}

.btn-copy-pix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 40px;
  background: #32bcad;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}

.btn-copy-pix:hover {
  opacity: .9;
}

/* ===== SUCESSO ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: checkAnim .5s ease-out;
}

@keyframes checkAnim {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}

.success-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 24px;
}

.success-order-box {
  width: 100%;
  background: #f7f7f7;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.success-order-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.success-order-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.btn-back-home {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}

.btn-back-home:hover {
  opacity: .9;
}

/* ===== INDEX / HOME ===== */
.home-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 20px 16px 16px;
  position: relative;
  overflow: hidden;
}

.home-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.home-banner-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  position: relative;
}

.home-banner-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 12px;
  position: relative;
}

.home-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
}

.home-section-title {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px 8px;
  color: var(--color-text);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
}

.product-card {
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity .15s;
}

.product-card:hover {
  opacity: .95;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f9f9f9;
}

.product-card-info {
  padding: 10px;
}

.product-card-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 32px;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.product-card-badges {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.product-card-discount {
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

.product-card-sold {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* ===== CONTA PAGE ===== */
.conta-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 30px 16px 24px;
  text-align: center;
  color: #fff;
}

.conta-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px;
}

.conta-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.conta-email {
  font-size: 13px;
  opacity: .8;
}

.conta-menu {
  background: var(--color-white);
}

.conta-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  transition: background .15s;
}

.conta-menu-item:hover {
  background: #f9f9f9;
}

.conta-menu-item:last-child {
  border-bottom: none;
}

.conta-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.conta-menu-text {
  flex: 1;
}

.conta-menu-title {
  font-size: 14px;
  font-weight: 600;
}

.conta-menu-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.conta-menu-arrow {
  color: #ccc;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15);
  border-radius: 2px;
}

/* ===== BOT�O VER MAIS AVALIA��ES ===== */
.ver-mais-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: all .15s;
}

.ver-mais-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* Ajustes de Video e Carrossel */
.slider-video {
  pointer-events: auto !important;
  background: #000 !important;
}

.image-slider {
  background: #000 !important;
}

.slider-dots {
  display: none !important;
}

/* ===== SEÇÃO MAIS DESTA LOJA (WIDGET FAST STAR STORE) ===== */
.store-widget-section {
  background: #fff;
  padding: 16px;
  margin: 0;
  border-top: 8px solid #f5f5f5;
  border-bottom: 8px solid #f5f5f5;
}

.store-widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.store-widget-logo-wrapper {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #eee;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-widget-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-widget-info {
  flex: 1;
}

.store-widget-name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.store-widget-sales {
  font-size: 13px;
  color: #888;
}

.store-widget-btn-visitar {
  background: #f5f5f5;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.store-widget-btn-visitar:hover {
  background: #e5e5e5;
}

.store-widget-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
  border-bottom: 1.5px solid #f2f2f2;
  padding-bottom: 16px;
}

.store-widget-stats strong {
  color: #111;
  font-weight: 700;
}

.store-widget-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  cursor: pointer;
}

.store-widget-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.2px;
}

.store-widget-arrow {
  color: #bbb;
  font-size: 18px;
}

.store-widget-products-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.store-widget-products-scroll::-webkit-scrollbar {
  display: none;
}

.store-widget-product-card {
  width: 110px;
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.store-widget-product-img {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.store-widget-product-price {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
}

.store-widget-product-discount {
  font-size: 10px;
  font-weight: 700;
  color: #ff2b56;
  background: #fff0f3;
  padding: 1px 4px;
  border-radius: 3px;
  width: fit-content;
}

para harmonia visual */ font-size: clamp(17px, 5.0vw, 30px);
font-weight: 500;
line-height: 1;
letter-spacing: -0.5px;
}

.price-currency {
  display: none;
}

/* 4. Preço Original Riscado (Fica abaixo do balão de desconto) */
.price-original {
  position: absolute;
  left: 4.2%;
  top: 56%;
  /* Subido "coisa leve" conforme solicitado */
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(11px, 2.7vw, 15px);
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1;
}

/* 5. Container do Timer (Lado Direito) */
.price-right {
  display: block;
}

.oferta-relampago {
  display: none;
}

/* Timer alinhado mais para a direita abaixo de Oferta Relâmpago */
.timer-row {
  position: absolute;
  right: 5.5%;
  top: 62%;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.timer-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  /* Cor branca suave, idêntica ao cronômetro */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* Valor do timer - Cor ajustada para combinar perfeitamente com o rótulo */
.timer-value {
  color: rgba(255, 255, 255, 0.85);
  /* Tom branco suave (puxado pro cinza leve) */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
}

/* ===== PRODUCT INFO ===== */
.product-info {
  background: var(--color-white);
  padding: 14px;
}

/* Badge de desconto tipo cupom */
.discount-ticket {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.product-badge-discount {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px dashed var(--color-primary);
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* Ratings row */
.ratings-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star-icon {
  color: #F5A623;
}

.rating-number {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.divider-v {
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.sold-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Frete */
.frete-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f7f7f7;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
}

.frete-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .8;
}

.product-badge {
  background: var(--color-frete);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.frete-detail {
  font-size: 12px;
  color: var(--color-text-muted);
}

.frete-taxa {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Urgência */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #444;
  background: #fff8f0;
  border: 1px solid #ffd7b0;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-bottom: 12px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.urgency-separator {
  color: #ccc;
  margin: 0 2px;
}

/* Proteção */
.protection-section {
  border: 1px solid #e8d0a9;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
  background: #fff8e1;
}

.protection-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-protection);
  margin-bottom: 10px;
}

.protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.protection-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7a4000;
}

/* Descrição */
.description-section {
  margin-bottom: 14px;
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.description-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  white-space: pre-line;
}

/* ===== AVALIAÇÕES ===== */
.reviews-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
  margin-bottom: 14px;
}

.reviews-header {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.review-avg {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
}

.review-avg-total {
  font-size: 16px;
  color: #999;
  margin-top: 4px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #F5A623;
}

.review-star.empty {
  color: #ddd;
}

.review-card {
  border-top: 1px solid var(--color-border);
  padding: 12px 0;
}

.review-card:first-of-type {
  border-top: none;
}

.review-header {
  margin-bottom: 8px;
}

.review-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-user-info {
  flex: 1;
}

.review-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.review-user-stars {
  font-size: 12px;
  line-height: 1.4;
}

.review-date {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}

.review-comment {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-photos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.review-photo {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .15s;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}

.review-photo:hover {
  opacity: .85;
}

img.review-photo[src$=".mp4"] {
  display: none !important;
}

.ver-mais-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}

.ver-mais-btn:hover {
  background: #eee;
}

/* ===== BARRA DE ABAS (SHOPEE STYLE — FIXA E OCULTA ATÉ ROLAR) ===== */
.product-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e0e0e0;
  background: #fff;
  position: fixed;
  top: -60px;
  /* oculto acima da viewport */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  z-index: 99;
  /* Fica logo abaixo do header que tem 100 */
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  transition: top 0.25s ease;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

/* Quando visível (adicionado via JS ao rolar) */
.product-tabs.tabs-visible {
  top: 52px;
  /* aparece logo abaixo do header (header = 52px) */
}

.product-tab {
  flex: 1;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: center;
}

.product-tab.active {
  color: #111;
  border-bottom-color: #111;
  font-weight: 700;
}

/* ===== PRODUTOS RELACIONADOS ===== */
.related-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.related-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 14px;
}

/* Grade masonry real com 2 colunas independentes (estilo Shopee) */
.related-grid {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 0 4px;
}

/* Colunas individuais do masonry */
.related-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.related-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s;
  display: block;
  width: 100%;
}

.related-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.related-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}

.related-info {
  padding: 8px;
}

.related-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.related-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.related-price-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.related-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.related-discount {
  background: #fde8ec;
  /* Fundo rosa suave igual ao da loja oficial */
  color: #c0394b;
  /* Vermelho menos aceso, idêntico ao -38% da loja */
  font-size: 10px;
  font-weight: 600;
  /* Menos grossa que 700, igual ao original */
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-frete {
  font-size: 10px;
  color: var(--color-frete);
  font-weight: 600;
}

.related-sold {
  font-size: 11px;
  color: #999;
}

/* ===== BOTTOM BAR (ESTILO SHOPEE/OFICIAL FIEL) ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: 64px;
  background: var(--color-white);
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, .04);
}

/* Ícones de Loja e Chat (esquerda) */
.btn-icon-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
  /* Cor preta sólida idêntica à imagem */
  font-size: 11px;
  font-weight: 500;
  padding: 0;
  flex-shrink: 0;
}

.btn-icon-action svg {
  color: #000000;
  stroke-width: 2.2;
  /* Desenho mais encorpado */
}

/* Sem separador na imagem */
.bottom-bar-sep {
  display: none;
}

/* Botão "Adicionar ao carrinho" (Cinza claro, fonte preta, super arredondado) */
.btn-add-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1.1;
  height: 44px;
  border: none;
  background: #f2f2f2;
  /* Cinza claro idêntico */
  color: #000000;
  /* Texto preto */
  border-radius: 24px;
  /* Totalmente arredondado como na imagem */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  line-height: 1.25;
  margin-left: 6px;
  margin-right: 6px;
}

.btn-add-cart span.btn-line1 {
  font-size: 13.5px;
  font-weight: 600;
  color: #000000;
}

.btn-add-cart:hover {
  opacity: 0.9;
}

/* Botão "Comprar agora" (Vermelho vívido/rosa, super arredondado) */
.btn-buy {
  flex: 1.3;
  height: 44px;
  background: #ff2d55;
  /* Cor rosa/vermelho idêntico ao da imagem */
  color: #ffffff;
  border: none;
  border-radius: 24px;
  /* Totalmente arredondado */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.btn-buy span.btn-line1 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.btn-buy span.btn-line2 {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.95;
  color: #ffffff;
}

.btn-buy:hover {
  opacity: .9;
}


/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, .85);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

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

.photo-modal img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

.photo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
}

/* ===== CARRINHO ===== */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 12px;
  text-align: center;
}

.cart-empty-icon {
  color: #ddd;
}

.cart-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cart-empty-text {
  font-size: 14px;
  color: #999;
  max-width: 240px;
}

.btn-continue-shopping {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cart-list {
  padding: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 30px;
  height: 28px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.qty-btn:hover {
  background: #eee;
}

.qty-value {
  width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  flex-shrink: 0;
  transition: color .15s;
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

/* Resumo do carrinho */
.cart-summary {
  background: var(--color-white);
  padding: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.cart-summary-label {
  color: var(--color-text-muted);
}

.cart-summary-value {
  font-weight: 600;
  color: var(--color-text);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Bottom bar do carrinho */
.cart-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .15s;
}

.btn-checkout:hover {
  opacity: .9;
}

/* ===== CHECKOUT ===== */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--color-white);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.step.active .step-circle {
  background: var(--color-primary);
  color: #fff;
}

.step.done .step-circle {
  background: #2E7D32;
  color: #fff;
}

.step-label {
  font-size: 10px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.step.active .step-label,
.step.done .step-label {
  color: var(--color-text);
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 6px;
  margin-bottom: 14px;
  transition: background .3s;
}

.step-line.done {
  background: #2E7D32;
}

/* Seções do checkout */
.checkout-section {
  background: var(--color-white);
  padding: 16px;
  margin-bottom: 8px;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Formulário */
.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  background: var(--color-white);
  transition: border-color .15s;
  font-family: var(--font-main);
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input.error {
  border-color: var(--color-primary);
  background: #fff5f5;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
}

/* Resumo do pedido no checkout */
.order-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.order-item-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-item-qty-price {
  font-size: 12px;
  color: var(--color-text-muted);
}

.order-divider {
  height: 1px;
  background: var(--color-border);
  margin: 10px 0;
}

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

.order-total-label {
  font-size: 14px;
  font-weight: 700;
}

.order-total-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Métodos de pagamento */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all .15s;
  background: var(--color-white);
}

.payment-option.selected {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s;
}

.payment-option.selected .payment-radio {
  border-color: var(--color-primary);
}

.payment-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: scale(0);
  transition: transform .15s;
}

.payment-option.selected .payment-radio-dot {
  transform: scale(1);
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.payment-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.payment-icon {
  flex-shrink: 0;
}

/* PIX display */
.pix-display {
  background: #f0faf9;
  border: 1px solid #b2dfdb;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.pix-display-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a6b6b;
  margin-bottom: 12px;
}

.pix-qr {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.pix-code-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.pix-code-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 10px;
  color: #444;
  word-break: break-all;
  text-align: left;
  font-family: monospace;
  margin-bottom: 10px;
}

.btn-copy-pix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 40px;
  background: #32bcad;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}

.btn-copy-pix:hover {
  opacity: .9;
}

/* ===== SUCESSO ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: checkAnim .5s ease-out;
}

@keyframes checkAnim {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}

.success-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 24px;
}

.success-order-box {
  width: 100%;
  background: #f7f7f7;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.success-order-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.success-order-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.btn-back-home {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}

.btn-back-home:hover {
  opacity: .9;
}

/* ===== INDEX / HOME ===== */
.home-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 20px 16px 16px;
  position: relative;
  overflow: hidden;
}

.home-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.home-banner-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  position: relative;
}

.home-banner-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 12px;
  position: relative;
}

.home-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
}

.home-section-title {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px 8px;
  color: var(--color-text);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
}

.product-card {
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity .15s;
}

.product-card:hover {
  opacity: .95;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f9f9f9;
}

.product-card-info {
  padding: 10px;
}

.product-card-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 32px;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.product-card-badges {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.product-card-discount {
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

.product-card-sold {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* ===== CONTA PAGE ===== */
.conta-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 30px 16px 24px;
  text-align: center;
  color: #fff;
}

.conta-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px;
}

.conta-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.conta-email {
  font-size: 13px;
  opacity: .8;
}

.conta-menu {
  background: var(--color-white);
}

.conta-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  transition: background .15s;
}

.conta-menu-item:hover {
  background: #f9f9f9;
}

.conta-menu-item:last-child {
  border-bottom: none;
}

.conta-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.conta-menu-text {
  flex: 1;
}

.conta-menu-title {
  font-size: 14px;
  font-weight: 600;
}

.conta-menu-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.conta-menu-arrow {
  color: #ccc;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15);
  border-radius: 2px;
}

/* ===== BOT�O VER MAIS AVALIA��ES ===== */
.ver-mais-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: all .15s;
}

.ver-mais-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* Ajustes de Video e Carrossel */
.slider-video {
  pointer-events: auto !important;
  background: #000 !important;
}

.image-slider {
  background: #000 !important;
}

.slider-dots {
  display: none !important;
}

para harmonia visual */ font-size: clamp(17px, 5.0vw, 30px);
font-weight: 500;
line-height: 1;
letter-spacing: -0.5px;
}

/* 3. Preço Principal Grande (Ex: 69,90) - Subido ligeiramente para alinha com o "A partir de R$" */
.price-current {
  position: absolute;
  left: 36.2%;
  top: 18%;
  /* Movido um pouco para baixo */
  color: rgba(255, 255, 255, 0.85);

  /* Mesma cor do 'A partir de R

.price-currency {
  display: none;
}

/* 4. Preço Original Riscado (Fica abaixo do balão de desconto) */
  .price-original {
    position: absolute;
    left: 4.2%;
    top: 56%;
    /* Subido "coisa leve" conforme solicitado */
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(11px, 2.7vw, 15px);
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1;
  }

  /* 5. Container do Timer (Lado Direito) */
  .price-right {
    display: block;
  }

  .oferta-relampago {
    display: none;
  }

  /* Timer alinhado mais para a direita abaixo de Oferta Relâmpago */
  .timer-row {
    position: absolute;
    right: 5.5%;
    top: 62%;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
  }

  .timer-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    /* Cor branca suave, idêntica ao cronômetro */
    font-size: clamp(11px, 2.8vw, 15px);
    font-weight: 400;
    letter-spacing: -0.2px;
  }

  /* Valor do timer - Cor ajustada para combinar perfeitamente com o rótulo */
  .timer-value {
    color: rgba(255, 255, 255, 0.85);
    /* Tom branco suave (puxado pro cinza leve) */
    font-size: clamp(11px, 2.8vw, 15px);
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
  }

  /* ===== PRODUCT INFO ===== */
  .product-info {
    background: var(--color-white);
    padding: 14px;
  }

  /* Badge de desconto tipo cupom */
  .discount-ticket {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-badge-discount {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1.5px dashed var(--color-primary);
  }

  .product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 10px;
  }

  /* Ratings row */
  .ratings-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .star-row {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .star-icon {
    color: #F5A623;
  }

  .rating-number {
    font-size: 13px;
    font-weight: 600;
    color: #444;
  }

  .divider-v {
    width: 1px;
    height: 14px;
    background: var(--color-border);
  }

  .sold-count {
    font-size: 13px;
    color: var(--color-text-muted);
  }

  /* Frete */
  .frete-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f7f7f7;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
  }

  .frete-icon {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: .8;
  }

  .product-badge {
    background: var(--color-frete);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .frete-detail {
    font-size: 12px;
    color: var(--color-text-muted);
  }

  .frete-taxa {
    font-size: 12px;
    color: var(--color-text-muted);
  }

  /* Urgência */
  .urgency-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #444;
    background: #fff8f0;
    border: 1px solid #ffd7b0;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: .3;
    }
  }

  .urgency-separator {
    color: #ccc;
    margin: 0 2px;
  }

  /* Proteção */
  .protection-section {
    border: 1px solid #e8d0a9;
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 14px;
    background: #fff8e1;
  }

  .protection-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-protection);
    margin-bottom: 10px;
  }

  .protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .protection-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #7a4000;
  }

  /* Descrição */
  .description-section {
    margin-bottom: 14px;
    border-top: 6px solid #f5f5f5;
    padding-top: 14px;
  }

  .section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
  }

  .description-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    white-space: pre-line;
  }

  /* ===== AVALIAÇÕES ===== */
  .reviews-section {
    border-top: 6px solid #f5f5f5;
    padding-top: 14px;
    margin-bottom: 14px;
  }

  .reviews-header {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
  }

  .reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .review-avg {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-text);
  }

  .review-avg-total {
    font-size: 16px;
    color: #999;
    margin-top: 4px;
  }

  .review-stars {
    display: flex;
    gap: 2px;
  }

  .review-star {
    color: #F5A623;
  }

  .review-star.empty {
    color: #ddd;
  }

  .review-card {
    border-top: 1px solid var(--color-border);
    padding: 12px 0;
  }

  .review-card:first-of-type {
    border-top: none;
  }

  .review-header {
    margin-bottom: 8px;
  }

  .review-user {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .review-user-info {
    flex: 1;
  }

  .review-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
  }

  .review-user-stars {
    font-size: 12px;
    line-height: 1.4;
  }

  .review-date {
    font-size: 11px;
    color: #999;
    margin-top: 1px;
  }

  .review-comment {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .review-photos {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .review-photo {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity .15s;
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0;
  }

  .review-photo:hover {
    opacity: .85;
  }

  img.review-photo[src$=".mp4"] {
    display: none !important;
  }

  .ver-mais-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background .15s;
  }

  .ver-mais-btn:hover {
    background: #eee;
  }

  /* ===== BARRA DE ABAS (SHOPEE STYLE — FIXA E OCULTA ATÉ ROLAR) ===== */
  .product-tabs {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid #e0e0e0;
    background: #fff;
    position: fixed;
    top: -60px;
    /* oculto acima da viewport */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    z-index: 99;
    /* Fica logo abaixo do header que tem 100 */
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transition: top 0.25s ease;
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Quando visível (adicionado via JS ao rolar) */
  .product-tabs.tabs-visible {
    top: 52px;
    /* aparece logo abaixo do header (header = 52px) */
  }

  .product-tab {
    flex: 1;
    padding: 12px 4px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: center;
  }

  .product-tab.active {
    color: #111;
    border-bottom-color: #111;
    font-weight: 700;
  }

  /* ===== PRODUTOS RELACIONADOS ===== */
  .related-section {
    border-top: 6px solid #f5f5f5;
    padding-top: 14px;
  }

  .related-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 0 14px;
  }

  /* Grade masonry real com 2 colunas independentes (estilo Shopee) */
  .related-grid {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 0 4px;
  }

  /* Colunas individuais do masonry */
  .related-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .related-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s;
    display: block;
    width: 100%;
  }

  .related-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  }

  .related-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
  }

  .related-info {
    padding: 8px;
  }

  .related-name {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .related-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 3px;
  }

  .related-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
  }

  .related-price-original {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
  }

  .related-badges {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
  }

  .related-discount {
    background: #fde8ec;
    /* Fundo rosa suave igual ao da loja oficial */
    color: #c0394b;
    /* Vermelho menos aceso, idêntico ao -38% da loja */
    font-size: 10px;
    font-weight: 600;
    /* Menos grossa que 700, igual ao original */
    padding: 2px 6px;
    border-radius: 4px;
  }

  .badge-frete {
    font-size: 10px;
    color: var(--color-frete);
    font-weight: 600;
  }

  .related-sold {
    font-size: 11px;
    color: #999;
  }

  /* ===== BOTTOM BAR (ESTILO SHOPEE/OFICIAL FIEL) ===== */
  .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    height: 64px;
    background: var(--color-white);
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, .04);
  }

  /* Ícones de Loja e Chat (esquerda) */
  .btn-icon-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 44px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    /* Cor preta sólida idêntica à imagem */
    font-size: 11px;
    font-weight: 500;
    padding: 0;
    flex-shrink: 0;
  }

  .btn-icon-action svg {
    color: #000000;
    stroke-width: 2.2;
    /* Desenho mais encorpado */
  }

  /* Sem separador na imagem */
  .bottom-bar-sep {
    display: none;
  }

  /* Botão "Adicionar ao carrinho" (Cinza claro, fonte preta, super arredondado) */
  .btn-add-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1.1;
    height: 44px;
    border: none;
    background: #f2f2f2;
    /* Cinza claro idêntico */
    color: #000000;
    /* Texto preto */
    border-radius: 24px;
    /* Totalmente arredondado como na imagem */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap;
    line-height: 1.25;
    margin-left: 6px;
    margin-right: 6px;
  }

  .btn-add-cart span.btn-line1 {
    font-size: 13.5px;
    font-weight: 600;
    color: #000000;
  }

  .btn-add-cart:hover {
    opacity: 0.9;
  }

  /* Botão "Comprar agora" (Vermelho vívido/rosa, super arredondado) */
  .btn-buy {
    flex: 1.3;
    height: 44px;
    background: #ff2d55;
    /* Cor rosa/vermelho idêntico ao da imagem */
    color: #ffffff;
    border: none;
    border-radius: 24px;
    /* Totalmente arredondado */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
  }

  .btn-buy span.btn-line1 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
  }

  .btn-buy span.btn-line2 {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.95;
    color: #ffffff;
  }

  .btn-buy:hover {
    opacity: .9;
  }


  /* ===== TOAST ===== */
  .toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, .85);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    white-space: nowrap;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
  }

  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* ===== PHOTO MODAL ===== */
  .photo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }

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

  .photo-modal img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
  }

  .photo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
  }

  /* ===== CARRINHO ===== */
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    gap: 12px;
    text-align: center;
  }

  .cart-empty-icon {
    color: #ddd;
  }

  .cart-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }

  .cart-empty-text {
    font-size: 14px;
    color: #999;
    max-width: 240px;
  }

  .btn-continue-shopping {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }

  .cart-list {
    padding: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
  }

  .cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
  }

  .cart-item-info {
    flex: 1;
    min-width: 0;
  }

  .cart-item-name {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
  }

  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
  }

  .qty-btn {
    width: 30px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
  }

  .qty-btn:hover {
    background: #eee;
  }

  .qty-value {
    width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
  }

  .cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    flex-shrink: 0;
    transition: color .15s;
  }

  .cart-item-remove:hover {
    color: var(--color-primary);
  }

  /* Resumo do carrinho */
  .cart-summary {
    background: var(--color-white);
    padding: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--color-border);
  }

  .cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .cart-summary-label {
    color: var(--color-text-muted);
  }

  .cart-summary-value {
    font-weight: 600;
    color: var(--color-text);
  }

  .cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
  }

  .cart-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
  }

  .cart-total-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
  }

  /* Bottom bar do carrinho */
  .cart-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
  }

  .btn-checkout {
    width: 100%;
    height: 48px;
    background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .15s;
  }

  .btn-checkout:hover {
    opacity: .9;
  }

  /* ===== CHECKOUT ===== */
  .checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--color-white);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
  }

  .step.active .step-circle {
    background: var(--color-primary);
    color: #fff;
  }

  .step.done .step-circle {
    background: #2E7D32;
    color: #fff;
  }

  .step-label {
    font-size: 10px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
  }

  .step.active .step-label,
  .step.done .step-label {
    color: var(--color-text);
  }

  .step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 6px;
    margin-bottom: 14px;
    transition: background .3s;
  }

  .step-line.done {
    background: #2E7D32;
  }

  /* Seções do checkout */
  .checkout-section {
    background: var(--color-white);
    padding: 16px;
    margin-bottom: 8px;
  }

  .checkout-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
  }

  /* Formulário */
  .form-group {
    margin-bottom: 12px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
  }

  .form-input {
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    font-size: 14px;
    color: var(--color-text);
    outline: none;
    background: var(--color-white);
    transition: border-color .15s;
    font-family: var(--font-main);
  }

  .form-input:focus {
    border-color: var(--color-primary);
  }

  .form-input.error {
    border-color: var(--color-primary);
    background: #fff5f5;
  }

  select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 32px;
  }

  /* Resumo do pedido no checkout */
  .order-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }

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

  .order-item-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
  }

  .order-item-info {
    flex: 1;
    min-width: 0;
  }

  .order-item-name {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-item-qty-price {
    font-size: 12px;
    color: var(--color-text-muted);
  }

  .order-divider {
    height: 1px;
    background: var(--color-border);
    margin: 10px 0;
  }

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

  .order-total-label {
    font-size: 14px;
    font-weight: 700;
  }

  .order-total-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
  }

  /* Métodos de pagamento */
  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px;
    cursor: pointer;
    transition: all .15s;
    background: var(--color-white);
  }

  .payment-option.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
  }

  .payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .15s;
  }

  .payment-option.selected .payment-radio {
    border-color: var(--color-primary);
  }

  .payment-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: scale(0);
    transition: transform .15s;
  }

  .payment-option.selected .payment-radio-dot {
    transform: scale(1);
  }

  .payment-info {
    flex: 1;
  }

  .payment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
  }

  .payment-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 1px;
  }

  .payment-icon {
    flex-shrink: 0;
  }

  /* PIX display */
  .pix-display {
    background: #f0faf9;
    border: 1px solid #b2dfdb;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
  }

  .pix-display-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a6b6b;
    margin-bottom: 12px;
  }

  .pix-qr {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .pix-code-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
  }

  .pix-code-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-size: 10px;
    color: #444;
    word-break: break-all;
    text-align: left;
    font-family: monospace;
    margin-bottom: 10px;
  }

  .btn-copy-pix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 40px;
    background: #32bcad;
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
  }

  .btn-copy-pix:hover {
    opacity: .9;
  }

  /* ===== SUCESSO ===== */
  .success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    text-align: center;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: checkAnim .5s ease-out;
  }

  @keyframes checkAnim {
    from {
      transform: scale(0);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
  }

  .success-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 24px;
  }

  .success-order-box {
    width: 100%;
    background: #f7f7f7;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: left;
    margin-bottom: 24px;
  }

  .success-order-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
  }

  .success-order-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
  }

  .btn-back-home {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    transition: opacity .15s;
  }

  .btn-back-home:hover {
    opacity: .9;
  }

  /* ===== INDEX / HOME ===== */
  .home-banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: 20px 16px 16px;
    position: relative;
    overflow: hidden;
  }

  .home-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
  }

  .home-banner-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    position: relative;
  }

  .home-banner-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 12px;
    position: relative;
  }

  .home-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    position: relative;
  }

  .home-section-title {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 16px 8px;
    color: var(--color-text);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--color-border);
  }

  .product-card {
    background: var(--color-white);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity .15s;
  }

  .product-card:hover {
    opacity: .95;
  }

  .product-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f9f9f9;
  }

  .product-card-info {
    padding: 10px;
  }

  .product-card-name {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
  }

  .product-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 3px;
  }

  .product-card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
  }

  .product-card-original {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
  }

  .product-card-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
  }

  .product-card-discount {
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
  }

  .product-card-sold {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
  }

  /* ===== CONTA PAGE ===== */
  .conta-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: 30px 16px 24px;
    text-align: center;
    color: #fff;
  }

  .conta-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 28px;
  }

  .conta-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .conta-email {
    font-size: 13px;
    opacity: .8;
  }

  .conta-menu {
    background: var(--color-white);
  }

  .conta-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
    transition: background .15s;
  }

  .conta-menu-item:hover {
    background: #f9f9f9;
  }

  .conta-menu-item:last-child {
    border-bottom: none;
  }

  .conta-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .conta-menu-text {
    flex: 1;
  }

  .conta-menu-title {
    font-size: 14px;
    font-weight: 600;
  }

  .conta-menu-sub {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 1px;
  }

  .conta-menu-arrow {
    color: #ccc;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 3px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 2px;
  }

  /* ===== BOT�O VER MAIS AVALIA��ES ===== */
  .ver-mais-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: 1.5px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    margin-top: 12px;
    transition: all .15s;
  }

  .ver-mais-btn:hover {
    background: var(--color-primary);
    color: #fff;
  }


  /* Ajustes de Video e Carrossel */
  .slider-video {
    pointer-events: auto !important;
    background: #000 !important;
  }

  .image-slider {
    background: #000 !important;
  }

  .slider-dots {
    display: none !important;
  }

  para harmonia visual */ font-size: clamp(17px, 5.0vw, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.5px;
}

.price-currency {
  display: none;
}

/* 4. Preço Original Riscado (Fica abaixo do balão de desconto) */
.price-original {
  position: absolute;
  left: 4.2%;
  top: 56%;
  /* Subido "coisa leve" conforme solicitado */
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(11px, 2.7vw, 15px);
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1;
}

/* 5. Container do Timer (Lado Direito) */
.price-right {
  display: block;
}

.oferta-relampago {
  display: none;
}

/* Timer alinhado mais para a direita abaixo de Oferta Relâmpago */
.timer-row {
  position: absolute;
  right: 5.5%;
  top: 62%;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.timer-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  /* Cor branca suave, idêntica ao cronômetro */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* Valor do timer - Cor ajustada para combinar perfeitamente com o rótulo */
.timer-value {
  color: rgba(255, 255, 255, 0.85);
  /* Tom branco suave (puxado pro cinza leve) */
  font-size: clamp(11px, 2.8vw, 15px);
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
}

/* ===== PRODUCT INFO ===== */
.product-info {
  background: var(--color-white);
  padding: 14px;
}

/* Badge de desconto tipo cupom */
.discount-ticket {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.product-badge-discount {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px dashed var(--color-primary);
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* Ratings row */
.ratings-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star-icon {
  color: #F5A623;
}

.rating-number {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.divider-v {
  width: 1px;
  height: 14px;
  background: var(--color-border);
}

.sold-count {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Frete */
.frete-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f7f7f7;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
}

.frete-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .8;
}

.product-badge {
  background: var(--color-frete);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.frete-detail {
  font-size: 12px;
  color: var(--color-text-muted);
}

.frete-taxa {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Urgência */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #444;
  background: #fff8f0;
  border: 1px solid #ffd7b0;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-bottom: 12px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.urgency-separator {
  color: #ccc;
  margin: 0 2px;
}

/* Proteção */
.protection-section {
  border: 1px solid #e8d0a9;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
  background: #fff8e1;
}

.protection-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-protection);
  margin-bottom: 10px;
}

.protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.protection-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7a4000;
}

/* Descrição */
.description-section {
  margin-bottom: 14px;
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.description-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  white-space: pre-line;
}

/* ===== AVALIAÇÕES ===== */
.reviews-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
  margin-bottom: 14px;
}

.reviews-header {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.review-avg {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text);
}

.review-avg-total {
  font-size: 16px;
  color: #999;
  margin-top: 4px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #F5A623;
}

.review-star.empty {
  color: #ddd;
}

.review-card {
  border-top: 1px solid var(--color-border);
  padding: 12px 0;
}

.review-card:first-of-type {
  border-top: none;
}

.review-header {
  margin-bottom: 8px;
}

.review-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-user-info {
  flex: 1;
}

.review-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.review-user-stars {
  font-size: 12px;
  line-height: 1.4;
}

.review-date {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}

.review-comment {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-photos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.review-photo {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .15s;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}

.review-photo:hover {
  opacity: .85;
}

img.review-photo[src$=".mp4"] {
  display: none !important;
}

.ver-mais-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}

.ver-mais-btn:hover {
  background: #eee;
}

/* ===== BARRA DE ABAS (SHOPEE STYLE — FIXA E OCULTA ATÉ ROLAR) ===== */
.product-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e0e0e0;
  background: #fff;
  position: fixed;
  top: -60px;
  /* oculto acima da viewport */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  z-index: 99;
  /* Fica logo abaixo do header que tem 100 */
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
  transition: top 0.25s ease;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

/* Quando visível (adicionado via JS ao rolar) */
.product-tabs.tabs-visible {
  top: 52px;
  /* aparece logo abaixo do header (header = 52px) */
}

.product-tab {
  flex: 1;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: center;
}

.product-tab.active {
  color: #111;
  border-bottom-color: #111;
  font-weight: 700;
}

/* ===== PRODUTOS RELACIONADOS ===== */
.related-section {
  border-top: 6px solid #f5f5f5;
  padding-top: 14px;
}

.related-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 14px;
}

/* Grade masonry real com 2 colunas independentes (estilo Shopee) */
.related-grid {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 0 4px;
}

/* Colunas individuais do masonry */
.related-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.related-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s;
  display: block;
  width: 100%;
}

.related-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.related-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}

.related-info {
  padding: 8px;
}

.related-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.related-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.related-price-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.related-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.related-discount {
  background: #fde8ec;
  /* Fundo rosa suave igual ao da loja oficial */
  color: #c0394b;
  /* Vermelho menos aceso, idêntico ao -38% da loja */
  font-size: 10px;
  font-weight: 600;
  /* Menos grossa que 700, igual ao original */
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-frete {
  font-size: 10px;
  color: var(--color-frete);
  font-weight: 600;
}

.related-sold {
  font-size: 11px;
  color: #999;
}

/* ===== BOTTOM BAR (ESTILO SHOPEE/OFICIAL FIEL) ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: 64px;
  background: var(--color-white);
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, .04);
}

/* Ícones de Loja e Chat (esquerda) */
.btn-icon-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
  /* Cor preta sólida idêntica à imagem */
  font-size: 11px;
  font-weight: 500;
  padding: 0;
  flex-shrink: 0;
}

.btn-icon-action svg {
  color: #000000;
  stroke-width: 2.2;
  /* Desenho mais encorpado */
}

/* Sem separador na imagem */
.bottom-bar-sep {
  display: none;
}

/* Botão "Adicionar ao carrinho" (Cinza claro, fonte preta, super arredondado) */
.btn-add-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1.1;
  height: 44px;
  border: none;
  background: #f2f2f2;
  /* Cinza claro idêntico */
  color: #000000;
  /* Texto preto */
  border-radius: 24px;
  /* Totalmente arredondado como na imagem */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  line-height: 1.25;
  margin-left: 6px;
  margin-right: 6px;
}

.btn-add-cart span.btn-line1 {
  font-size: 13.5px;
  font-weight: 600;
  color: #000000;
}

.btn-add-cart:hover {
  opacity: 0.9;
}

/* Botão "Comprar agora" (Vermelho vívido/rosa, super arredondado) */
.btn-buy {
  flex: 1.3;
  height: 44px;
  background: #ff2d55;
  /* Cor rosa/vermelho idêntico ao da imagem */
  color: #ffffff;
  border: none;
  border-radius: 24px;
  /* Totalmente arredondado */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.btn-buy span.btn-line1 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.btn-buy span.btn-line2 {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.95;
  color: #ffffff;
}

.btn-buy:hover {
  opacity: .9;
}


/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, .85);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

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

.photo-modal img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

.photo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
}

/* ===== CARRINHO ===== */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 12px;
  text-align: center;
}

.cart-empty-icon {
  color: #ddd;
}

.cart-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cart-empty-text {
  font-size: 14px;
  color: #999;
  max-width: 240px;
}

.btn-continue-shopping {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cart-list {
  padding: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 30px;
  height: 28px;
  background: #f5f5f5;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.qty-btn:hover {
  background: #eee;
}

.qty-value {
  width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  flex-shrink: 0;
  transition: color .15s;
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

/* Resumo do carrinho */
.cart-summary {
  background: var(--color-white);
  padding: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.cart-summary-label {
  color: var(--color-text-muted);
}

.cart-summary-value {
  font-weight: 600;
  color: var(--color-text);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Bottom bar do carrinho */
.cart-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .15s;
}

.btn-checkout:hover {
  opacity: .9;
}

/* ===== CHECKOUT ===== */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--color-white);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.step.active .step-circle {
  background: var(--color-primary);
  color: #fff;
}

.step.done .step-circle {
  background: #2E7D32;
  color: #fff;
}

.step-label {
  font-size: 10px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.step.active .step-label,
.step.done .step-label {
  color: var(--color-text);
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 6px;
  margin-bottom: 14px;
  transition: background .3s;
}

.step-line.done {
  background: #2E7D32;
}

/* Seções do checkout */
.checkout-section {
  background: var(--color-white);
  padding: 16px;
  margin-bottom: 8px;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Formulário */
.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  background: var(--color-white);
  transition: border-color .15s;
  font-family: var(--font-main);
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input.error {
  border-color: var(--color-primary);
  background: #fff5f5;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
}

/* Resumo do pedido no checkout */
.order-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.order-item-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.order-item-qty-price {
  font-size: 12px;
  color: var(--color-text-muted);
}

.order-divider {
  height: 1px;
  background: var(--color-border);
  margin: 10px 0;
}

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

.order-total-label {
  font-size: 14px;
  font-weight: 700;
}

.order-total-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Métodos de pagamento */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all .15s;
  background: var(--color-white);
}

.payment-option.selected {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s;
}

.payment-option.selected .payment-radio {
  border-color: var(--color-primary);
}

.payment-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: scale(0);
  transition: transform .15s;
}

.payment-option.selected .payment-radio-dot {
  transform: scale(1);
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.payment-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.payment-icon {
  flex-shrink: 0;
}

/* PIX display */
.pix-display {
  background: #f0faf9;
  border: 1px solid #b2dfdb;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.pix-display-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a6b6b;
  margin-bottom: 12px;
}

.pix-qr {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.pix-code-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.pix-code-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 10px;
  color: #444;
  word-break: break-all;
  text-align: left;
  font-family: monospace;
  margin-bottom: 10px;
}

.btn-copy-pix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 40px;
  background: #32bcad;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}

.btn-copy-pix:hover {
  opacity: .9;
}

/* ===== SUCESSO ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: checkAnim .5s ease-out;
}

@keyframes checkAnim {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}

.success-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 24px;
}

.success-order-box {
  width: 100%;
  background: #f7f7f7;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.success-order-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.success-order-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.btn-back-home {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}

.btn-back-home:hover {
  opacity: .9;
}

/* ===== INDEX / HOME ===== */
.home-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 20px 16px 16px;
  position: relative;
  overflow: hidden;
}

.home-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.home-banner-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  position: relative;
}

.home-banner-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 12px;
  position: relative;
}

.home-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
}

.home-section-title {
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px 8px;
  color: var(--color-text);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
}

.product-card {
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity .15s;
}

.product-card:hover {
  opacity: .95;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f9f9f9;
}

.product-card-info {
  padding: 10px;
}

.product-card-name {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 32px;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.product-card-original {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.product-card-badges {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.product-card-discount {
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

.product-card-sold {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* ===== CONTA PAGE ===== */
.conta-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 30px 16px 24px;
  text-align: center;
  color: #fff;
}

.conta-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px;
}

.conta-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.conta-email {
  font-size: 13px;
  opacity: .8;
}

.conta-menu {
  background: var(--color-white);
}

.conta-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  transition: background .15s;
}

.conta-menu-item:hover {
  background: #f9f9f9;
}

.conta-menu-item:last-child {
  border-bottom: none;
}

.conta-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.conta-menu-text {
  flex: 1;
}

.conta-menu-title {
  font-size: 14px;
  font-weight: 600;
}

.conta-menu-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.conta-menu-arrow {
  color: #ccc;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .15);
  border-radius: 2px;
}

/* ===== BOT�O VER MAIS AVALIA��ES ===== */
.ver-mais-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: all .15s;
}

.ver-mais-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* Ajustes de Video e Carrossel */
.slider-video {
  pointer-events: auto !important;
  background: #000 !important;
}

.image-slider {
  background: #000 !important;
}

.slider-dots {
  display: none !important;
}

/* Força a remoção de borda pontilhada das pílulas de desconto em todo o site (incluindo catálogo da loja) */
.product-badge-discount {
  border: none !important;
  background: #fff1f3 !important;
  color: #e02447 !important;
}