@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

/* ══════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════ */

.pageWrapper {
  min-height: 100vh;
  background: var(--bg-primary);
}

.loadingState {
  background: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.loadingSpinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border-color);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   PRODUCT LAYOUT — 2 COLUNAS
══════════════════════════════════════════ */

.productLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px;
  align-items: start;
  gap: 64px;
}

@media (max-width: 900px) {
  .productLayout {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 32px;
  }
}

/* ══════════════════════════════════════════
   GALERIA
══════════════════════════════════════════ */

.galleryCol {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .galleryCol { position: static; }
}

.mainImageWrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #080e24;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--border-color);
}

.mainImageWrapper.zoomed {
  cursor: zoom-out;
}

.mainImageWrapper.zoomed .mainImage {
  transform: scale(1.25);
}

.mainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.mainImageWrapper:hover .mainImage {
  transform: scale(1.04);
}

.discountBadge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
  font-family: "Outfit", sans-serif;
}

.zoomHint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 9, 26, 0.7);
  backdrop-filter: blur(6px);
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mainImageWrapper:hover .zoomHint {
  opacity: 0;
}

/* Miniaturas */
.thumbsRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  background: #080e24;
}

.thumb:hover {
  border-color: rgba(0, 200, 232, 0.4);
  transform: translateY(-2px);
}

.thumbActive {
  border-color: var(--accent-cyan);
  border-width: 2px;
}

@media (max-width: 480px) {
  .thumb { width: 60px; height: 60px; }
}

/* ══════════════════════════════════════════
   INFO COL
══════════════════════════════════════════ */

.infoCol {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.productName {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

/* Rating */
.ratingRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.ratingCount {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ratingCount strong {
  color: var(--text-secondary);
}

/* Urgência */
.urgencyBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 24px;
}

.urgencyDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: urgPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ══════════════════════════════════════════
   PREÇO
══════════════════════════════════════════ */

.priceBlock {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oldPrice {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.oldPrice s {
  color: var(--text-muted);
}

.currentPrice {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.installmentLine {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.installmentLine strong {
  color: var(--text-secondary);
}

.pixLine {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pixLine strong {
  color: #4ade80;
}

.pixLine span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Promo banner compacto */
.promoBanner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(0, 200, 232, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.promoLabel {
  color: var(--text-secondary);
  font-weight: 600;
  margin-right: 4px;
}

.promoBanner strong {
  color: #fff;
}

.promoDot {
  color: var(--border-color);
}

/* ══════════════════════════════════════════
   FORM
══════════════════════════════════════════ */

.form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sectionLabel {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selectedTag {
  background: rgba(0, 200, 232, 0.1);
  color: var(--accent-cyan);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}

.optionalTag {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Tamanhos */
.sizesGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.sizeBtn {
  width: 60px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sizeBtn:hover {
  border-color: rgba(0, 200, 232, 0.4);
  background: rgba(0, 200, 232, 0.06);
  color: var(--accent-cyan);
  transform: translateY(-1px);
}

.sizeBtnActive {
  border-color: var(--accent-cyan);
  border-width: 2px;
  background: rgba(0, 200, 232, 0.1);
  color: var(--accent-cyan);
  font-weight: 800;
}

.sizeGuideBtn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  padding: 4px 0;
  transition: 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: left;
  margin-bottom: 4px;
}

.sizeGuideBtn:hover { color: var(--text-secondary); }

/* Personalização */
.persoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}

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

.persoLabel {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.persoLabel span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.7rem;
}

.persoInput {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.2s;
}

.persoInput::placeholder { color: var(--text-muted); }

.persoInput:focus {
  border-color: rgba(0, 200, 232, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 200, 232, 0.06);
}

/* Quantidade */
.qtdeRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 16px;
}

.qtdeControls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.qtdeBtn {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qtdeBtn:hover {
  background: rgba(0, 200, 232, 0.08);
  color: var(--accent-cyan);
}

.qtdeValue {
  width: 44px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  line-height: 40px;
}

/* ══════════════════════════════════════════
   BOTÃO COMPRAR
══════════════════════════════════════════ */

.buyBtn {
  width: 100%;
  height: 58px;
  background: var(--accent-cyan);
  border: none;
  border-radius: 10px;
  color: #06091a;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.buyBtn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 232, 0.25);
}

.buyBtn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Benefícios */
.benefitsRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.benefit span {
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   SEÇÕES INFERIORES
══════════════════════════════════════════ */

.qualitySection,
.reviewsSection,
.sizeTableSection {
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0;
}

.qualityInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .qualityInner { padding: 0 16px; }
}

.sectionEyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.qualityTitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 40px;
  line-height: 1.1;
}

.qualityTitle span { color: var(--accent-cyan); }

/* Cards de qualidade */
.qualityGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .qualityGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .qualityGrid { grid-template-columns: 1fr; } }

.qualityCard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.qualityCard:hover {
  border-color: rgba(0, 200, 232, 0.15);
  transform: translateY(-3px);
}

.qualityIcon { font-size: 1.6rem; margin-bottom: 4px; }

.qualityCard strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.qualityCard p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Reviews */
.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.reviewCard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.reviewCard:hover { border-color: rgba(0, 200, 232, 0.15); }

.reviewText {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.reviewAuthor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewAvatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 200, 232, 0.1);
  border: 1px solid rgba(0, 200, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-cyan);
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
}

.reviewAuthor strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.reviewAuthor span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tabela de medidas */
.tableWrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sizeTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.88rem;
}

.sizeTable th {
  background: rgba(0, 200, 232, 0.06);
  color: var(--text-secondary);
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.sizeTable td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-secondary);
}

.sizeTable tr:last-child td { border-bottom: none; }
.sizeTable tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
.sizeTable td:first-child { font-weight: 800; color: #fff; font-family: "Outfit", sans-serif; }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */

.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
  padding: 16px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modalContent {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
}

.modalClose:hover { background: rgba(255,255,255,0.1); color: #fff; }

.modalTitle {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.modalSub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sizeModalTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.85rem;
}

.sizeModalTable th {
  background: rgba(0, 200, 232, 0.06);
  color: var(--text-secondary);
  padding: 10px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.sizeModalTable td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.sizeModalTable tr:last-child td { border-bottom: none; }
.sizeModalTable td:first-child { font-weight: 800; color: #fff; font-family: "Outfit", sans-serif; }

/* Legacy stubs */
.slider { display: none; }
.sliderMobile { display: none; }
.container { display: contents; }
.Infos { display: contents; }
.sizeTable { display: none; }
.sizeItem { display: none; }
.sizeSelected { display: none; }
.comprar { display: none; }
.buttons { display: none; }
.wrapperInps { display: none; }
.select { display: none; }
.inpPersonali { display: none; }
.label { display: none; }
.form_legacy { display: none; }
.buttonsWrapper { display: none; }
.photos { display: none; }
.sliderOpt { display: none; }
.size { display: none; }
.sizeModalOverlay { display: none; }
.sizeModalContent { display: none; }
.sizeModalTitle { display: none; }
.sizeModalSubtitle { display: none; }
.sizeModalCloseBtn { display: none; }
.sizeGuideBtn_legacy { display: none; }
.selected { display: none; }
.value { display: none; }
.productDiscountBanner { display: none; }
.buyBtn { display: none; } /* replaced by buyNowBtn */

/* ══════════════════════════════════════════
   PERSONALIZAÇÃO PREMIUM
══════════════════════════════════════════ */

.persoSection {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.persoHeader { margin-bottom: 4px; }

.persoTitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.persoSub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Cards */
.persoCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 480px) {
  .persoCards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

.persoCard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 12px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.persoCard:hover {
  border-color: rgba(0, 200, 232, 0.25);
  background: rgba(0, 200, 232, 0.03);
  transform: translateY(-1px);
}

.persoCardActive {
  border-color: var(--accent-cyan) !important;
  border-width: 2px;
  background: rgba(0, 200, 232, 0.06) !important;
  box-shadow: 0 0 16px rgba(0, 200, 232, 0.1);
}

/* Featured card */
.persoCardFeatured {
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(250, 204, 21, 0.03);
}

.persoCardFeatured.persoCardActive {
  border-color: #facc15 !important;
  background: rgba(250, 204, 21, 0.08) !important;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.12);
}

.persoCardBadge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #06091a;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
}

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

.persoCardRadio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1;
}

.persoCardActive .persoCardRadio { color: var(--accent-cyan); }
.persoCardFeatured.persoCardActive .persoCardRadio { color: #facc15; }

.persoCardIcon { font-size: 1.1rem; }

.persoCardLabel {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.persoCardActive .persoCardLabel { color: #fff; }

.persoCardPrice {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.persoCardActive .persoCardPrice { color: var(--accent-cyan); }
.persoCardFeatured.persoCardActive .persoCardPrice { color: #facc15; }

/* Campos animados */
.persoFields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: persoSlide 0.25s ease;
}

@keyframes persoSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.persoInputLabel {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* WhatsApp Banner */
.whatsappBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.whatsappBtn:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.whatsappIcon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.whatsappText {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsappText strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #25d366;
}

.whatsappText span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.whatsappArrow {
  color: rgba(37, 211, 102, 0.5);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CTA STACK — 2 BOTÕES
══════════════════════════════════════════ */

.ctaStack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* Botão 1 — COMPRAR AGORA (principal) */
.buyNowBtn {
  width: 100%;
  height: 58px;
  background: #fff;
  border: none;
  border-radius: 12px;
  color: #06091a;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.buyNowBtn:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 200, 232, 0.25);
}

.buyNowBtn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Botão 2 — ADICIONAR AO CARRINHO (secundário) */
.addToCartBtn {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.addToCartBtn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

