/* BREADCRUMB */
.breadcrumb { background: #f3e8ff; padding: 12px 24px; font-size: 0.82rem; }
.bread-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--purple); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* PRODUCT PAGE LAYOUT */
.product-page { padding: 40px 24px 60px; }
.product-page-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

/* GALLERY */
.gallery-col { position: sticky; top: 80px; }

.gallery-main {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(145deg, #1a0633, #4a1272);
  aspect-ratio: 3/4; position: relative; cursor: zoom-in;
  box-shadow: 0 20px 60px rgba(226,73,138,0.3), 0 4px 16px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}
.gallery-main:hover {
  box-shadow: 0 28px 72px rgba(226,73,138,0.4), 0 4px 16px rgba(0,0,0,0.25);
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.25s;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-main img.fade { opacity: 0; }

/* Gradiente no fundo da imagem principal */
.gallery-main::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}

.gallery-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: linear-gradient(135deg, #e2498a, #c03070); color: white;
  font-size: 0.7rem; font-weight: 800; padding: 5px 13px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.6px;
  box-shadow: 0 3px 10px rgba(226,73,138,0.45);
}

/* Contador de fotos */
.gallery-counter {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: white; font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.3px;
}

/* Setas de navegação */
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  border: none; cursor: pointer; border-radius: 50%;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #1a0633;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: all 0.18s; opacity: 0;
}
.gallery-col:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: white; transform: translateY(-50%) scale(1.1); }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

/* Miniaturas */
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 14px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb {
  border: 2.5px solid transparent; border-radius: 12px; overflow: hidden;
  width: 82px; height: 82px; flex-shrink: 0; padding: 0; cursor: pointer;
  background: #f3e8ff; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.thumb:hover { border-color: var(--pink-light); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(226,73,138,0.25); }
.thumb.active {
  border-color: var(--pink);
  box-shadow: 0 4px 14px rgba(226,73,138,0.45);
  transform: translateY(-2px);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 5px; }

/* INFO COL */
.info-cat-tag {
  display: inline-block; background: #f3e8ff; color: var(--purple-dark);
  font-size: 0.78rem; font-weight: 700; padding: 4px 14px;
  border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.info-title { font-size: 1.7rem; font-weight: 800; line-height: 1.25; color: var(--text); margin-bottom: 18px; }

.info-price-block { margin-bottom: 20px; }
.info-price { font-size: 2.2rem; font-weight: 900; color: var(--purple-dark); line-height: 1; }
.info-price-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.info-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge-item {
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534;
  font-size: 0.78rem; padding: 5px 12px; border-radius: 20px; font-weight: 500;
}

.btn-comprar {
  display: block; width: 100%;
  background: linear-gradient(135deg, #e2498a, #c03070); color: white;
  text-align: center; padding: 18px; border-radius: 14px;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(226,73,138,0.45);
  transition: all 0.2s; margin-bottom: 14px;
  text-decoration: none;
}
.btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(226,73,138,0.55); }

/* CLUBE CTA */
.clube-cta {
  background: linear-gradient(135deg,#2a0f4d 0%,#7c2d8e 50%,#e2498a 100%);
  border: none; border-radius: 20px; padding: 22px 20px;
  display: block; text-align: center; margin-bottom: 24px;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 34px rgba(124,45,142,0.38);
}
.clube-cta::before {
  content: ''; position: absolute; top: -40%; left: -30%; width: 70%; height: 180%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.13),transparent);
  transform: skewX(-20deg); animation: clube-shine 3.5s ease-in-out infinite;
}
@keyframes clube-shine { 0%,55%{left:-40%} 100%{left:130%} }
.clube-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg,#fde047,#f59e0b); color: #5b3a00;
  font-size: 0.66rem; font-weight: 900; letter-spacing: 0.6px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.45); position: relative; z-index: 1;
}
.clube-cta h3 { color: #fff; font-size: 1.15rem; font-weight: 900; line-height: 1.25; margin-bottom: 12px; position: relative; z-index: 1; }
.clube-cta h3 em { font-style: normal; color: #ffd84d; }
.clube-benefits { list-style: none; padding: 0; margin: 0 auto 16px; max-width: 280px; text-align: left; display: grid; gap: 7px; position: relative; z-index: 1; }
.clube-benefits li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.95); font-size: 0.82rem; font-weight: 600; }
.clube-benefits li svg { width: 17px; height: 17px; color: #6ef5c4; flex-shrink: 0; }
.clube-price-row { color: rgba(255,255,255,0.85); font-size: 0.8rem; margin-bottom: 14px; position: relative; z-index: 1; }
.clube-price-row b { color: #fff; font-size: 1.05rem; }
.clube-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg,#fde047,#f59e0b); color: #4a2c00;
  border: none; padding: 14px 28px; border-radius: 30px; font-weight: 900; font-size: 0.92rem;
  white-space: nowrap; text-decoration: none; position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(245,158,11,0.5); transition: transform 0.18s, box-shadow 0.18s;
}
.clube-cta-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px rgba(245,158,11,0.6); }
.clube-cta-btn:active { transform: translateY(0); }
/* esconde estrutura antiga se sobrar */
.clube-cta-icon, .clube-cta-text { display: none; }

/* TABS */
.info-tabs { border: 1px solid #e9d5ff; border-radius: 14px; overflow: hidden; }
.tabs-nav { display: flex; background: #f9f5ff; border-bottom: 1px solid #e9d5ff; }
.tab-btn {
  flex: 1; padding: 12px 8px; background: none; border: none; cursor: pointer;
  font-weight: 600; font-size: 0.88rem; color: var(--text-muted);
  transition: all 0.2s; border-bottom: 3px solid transparent;
}
.tab-btn.active { color: var(--purple); border-bottom-color: var(--purple); background: white; }
.tab-content { padding: 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.tab-content.hidden { display: none; }
.desc-list { padding-left: 0; list-style: none; margin-top: 12px; }
.desc-list li { padding: 6px 0; border-bottom: 1px solid #f3e8ff; }
.desc-list li::before { content: "✓ "; color: var(--purple); font-weight: 700; }
.no-reviews { text-align: center; padding: 20px 0; }
.no-reviews span { font-size: 1.5rem; }
.no-reviews p { margin: 8px 0 16px; }
.btn-review {
  display: inline-block; background: var(--purple); color: white;
  padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 1000; align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer; line-height: 1; z-index: 1001;
}

/* RELATED */
.related-section { background: #f9f5ff; padding: 48px 24px; }
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.related-card {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(124,58,237,0.1); transition: all 0.2s; display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(124,58,237,0.2); }
.related-img { aspect-ratio: 3/4; overflow: hidden; background: #f3e8ff; }
.related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-info { padding: 10px; }
.pcat { font-size: 0.65rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.4px; }
.pname { font-size: 0.82rem; font-weight: 600; color: var(--text); margin: 4px 0; line-height: 1.3; }
.pprice { font-size: 0.9rem; font-weight: 800; color: var(--purple-dark); }

/* MOBILE */
@media (max-width: 768px) {
  .product-page { padding: 20px 16px 48px; }
  .product-page-inner { grid-template-columns: 1fr; gap: 24px; }
  .gallery-col { position: static; }
  .gallery-main { aspect-ratio: 3/4; }
  .gallery-arrow { width: 34px; height: 34px; font-size: 0.9rem; opacity: 1; }
  .thumb { width: 70px; height: 70px; }
  .info-title { font-size: 1.35rem; }
  .info-price { font-size: 1.8rem; }
  .btn-comprar { padding: 15px; font-size: 1rem; }
  .clube-cta { padding: 18px 16px; }
  .clube-cta h3 { font-size: 1.02rem; }
  .clube-benefits li { font-size: 0.78rem; }
  .clube-cta-btn { width: 100%; padding: 13px 20px; }
  .tabs-nav { overflow-x: auto; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══ TRUST STRIP + POLISH PREMIUM ════════════════════════════════ */
.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin: 16px 0; padding: 14px; border-radius: 16px;
  background: linear-gradient(135deg,#fff5fb,#fdeef7);
  border: 1px solid #f6d6e8;
}
.trust-strip-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.trust-strip-item svg { width: 22px; height: 22px; color: #c03070; }
.trust-strip-item span { font-size: 0.66rem; font-weight: 800; color: #6b2150; line-height: 1.25; }
.trust-secure {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 10px; font-size: 0.74rem; font-weight: 700; color: #16a34a;
}
.trust-secure svg { width: 15px; height: 15px; }

/* Botão comprar mais premium (brilho sutil) */
.btn-comprar { position: relative; overflow: hidden; }
.btn-comprar::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent);
  transform: skewX(-20deg); animation: btn-shine 3.2s ease-in-out infinite;
}
@keyframes btn-shine { 0%,60%{left:-120%} 100%{left:140%} }
.btn-comprar:active { transform: translateY(2px) scale(0.99); }

/* Badges com leve elevação */
.badge-item { box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
