/* ============================================================
   DECOR COLORS — PRODUCT PAGE (PDP) STYLES
   ============================================================ */

.pdp-main { background: #F9FAFB; min-height: 60vh; padding-bottom: 60px; }

.pdp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BREADCRUMB */
.pdp-breadcrumb {
  display: flex; align-items: center; gap: 5px;
  padding: 16px 0 20px;
  font-size: 0.75rem; color: #9CA3AF;
  flex-wrap: wrap;
}
.pdp-breadcrumb a { transition: color .2s; }
.pdp-breadcrumb a:hover { color: #0B9E8E; }
.pdp-breadcrumb span { color: #374151; font-weight: 500; }

/* ============================================================
   PRODUCT LAYOUT: gallery + info
   ============================================================ */
.pdp-layout {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   GALLERY
   ============================================================ */
.pdp-gallery {
  display: flex;
  gap: 14px;
  position: sticky;
  top: 80px;
}

.pdp-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80px;
  flex-shrink: 0;
}
.pdp-thumb {
  width: 80px; height: 80px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color .2s;
  flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb:hover { border-color: #0B9E8E; }
.pdp-thumb.active { border-color: #0B9E8E; box-shadow: 0 0 0 3px rgba(11,158,142,.15); }

.pdp-gallery__main {
  flex: 1;
  min-width: 0;
}
.pdp-gallery--single .pdp-gallery__main {
  width: 100%;
}

/* Thumbs abaixo da foto principal (ex: borracha-liquida) */
.pdp-gallery--thumbs-below {
  flex-direction: column;
  gap: 12px;
}
.pdp-gallery--thumbs-below .pdp-gallery__main {
  width: 100%;
}
.pdp-gallery__thumbs--row {
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.pdp-gallery__thumbs--row .pdp-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}
.pdp-gallery__main-wrap {
  position: relative;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.pdp-gallery__main-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity .25s;
  display: block;
}
.pdp-gallery__fav {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF;
  transition: color .2s, box-shadow .2s;
}
.pdp-gallery__fav:hover { color: #E5006D; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.pdp-gallery__fav.active { color: #E5006D; }
.pdp-gallery__pix {
  position: absolute; top: 14px; left: 14px;
  background: #16A34A; color: #fff;
  font-size: .7rem; font-weight: 800;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: .04em;
}

/* ============================================================
   PRODUCT INFO
   ============================================================ */
.pdp-info {
  display: flex; flex-direction: column; gap: 20px;
}

.pdp-title {
  font-size: 1.45rem; font-weight: 800;
  color: #111827; line-height: 1.3;
}

.pdp-rating {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem;
}

/* Area badges (Solução Piso) */
.pdp-areas {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.pdp-area-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #F0FDF4; color: #15803D;
  border: 1px solid #BBF7D0; border-radius: 20px;
  padding: 4px 12px; font-size: .78rem; font-weight: 600;
}
.pdp-stars { color: #F59E0B; font-size: 1rem; letter-spacing: -1px; }
.pdp-reviews { color: #6B7280; }
.pdp-separator { color: #D1D5DB; }
.pdp-desc-link { color: #0B9E8E; font-weight: 600; }
.pdp-desc-link:hover { text-decoration: underline; }

/* PIX BANNER */
.pdp-pix-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #16A34A;
  font-size: .82rem; font-weight: 700;
  padding: 8px 16px; border-radius: 8px;
}

/* FIELDS */
.pdp-field { display: flex; flex-direction: column; gap: 10px; }
.pdp-field__label { font-size: .82rem; color: #6B7280; }
.pdp-field__label strong { color: #111827; }

/* SIZES */
.pdp-sizes { display: flex; gap: 10px; }
.pdp-size-btn {
  padding: 9px 22px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: .875rem; font-weight: 600;
  color: #374151; background: #fff;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Montserrat', sans-serif;
}
.pdp-size-btn:hover { border-color: #0B9E8E; color: #0B9E8E; background: #F0FDFA; }
.pdp-size-btn.active {
  border-color: #0B9E8E;
  color: #0B9E8E;
  background: rgba(11,158,142,.06);
}

/* PRICE BOX */
.pdp-price-box {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pdp-price-label { font-size: .72rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: .06em; }
.pdp-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pdp-price-por-label { font-size: 1.1rem; font-weight: 500; color: #374151; }
.pdp-price { font-size: 2.2rem; font-weight: 900; color: #111827; line-height: 1; }
.pdp-price-old { font-size: .88rem; color: #9CA3AF; text-decoration: line-through; display: block; margin-bottom: 2px; }
.pdp-discount-badge {
  display: inline-flex;
  align-items: center;
  background: #0B9E8E;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.pdp-price-unit { font-size: .75rem; color: #9CA3AF; margin: 2px 0 4px; }
.pdp-price-unit strong { font-weight: 500; color: #9CA3AF; }
.pdp-price-pix {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: #16A34A;
}
.pdp-price-pix strong { font-weight: 800; }
.pdp-price-pix-clean {
  font-size: .85rem; color: #16A34A; font-weight: 600;
  margin: 0;
}
.pdp-installments { font-size: .82rem; color: #374151; margin: 0; }
.pdp-installments strong { color: #111827; font-weight: 700; }
.pdp-payment-link {
  font-size: .82rem; color: #0B9E8E; font-weight: 700;
  text-decoration: underline; background: none; border: none;
  cursor: pointer; padding: 0; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.pdp-payment-link:hover { color: #087a6d; }

/* PAYMENT ACCORDION */
.pdp-payment-accordion { margin-top: 4px; }
.pdp-payment-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: #0B9E8E; font-weight: 600;
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
}
.pdp-payment-link:hover { text-decoration: underline; }
.pdp-payment-arrow { transition: transform .2s; }
.pdp-payment-link.open .pdp-payment-arrow { transform: rotate(180deg); }
.pdp-payment-panel {
  display: none;
  flex-direction: column; gap: 0;
  margin-top: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.pdp-payment-panel.open { display: flex; }
.pdp-payment-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #F3F4F6;
  background: #fff;
}
.pdp-payment-option:last-child { border-bottom: none; }
.pdp-payment-pix { background: #F0FDF4; }
.pdp-payment-option__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px;
  background: #F0FDFA;
  display: flex; align-items: center; justify-content: center;
}
.pdp-payment-option__icon--card { background: #EFF6FF; color: #1D4ED8; }
.pdp-payment-option__icon--boleto { background: #FFF7ED; color: #B45309; }
.pdp-payment-option strong { font-size: .82rem; color: #111827; display: block; }
.pdp-payment-option p { font-size: .78rem; color: #374151; margin: 2px 0 0; }
.pdp-payment-option p strong { display: inline; color: #111827; }
.pdp-pay-sub { font-size: .73rem; color: #9CA3AF; margin-top: 2px; }
.pdp-pay-badge {
  display: inline-block; padding: 2px 7px;
  border-radius: 12px; font-size: .68rem; font-weight: 700;
}
.pdp-pay-badge--green { background: #DCFCE7; color: #16A34A; }

/* STOCK */
.pdp-stock {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: #374151;
}
.pdp-stock__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  flex-shrink: 0;
}
.pdp-stock__text strong { color: #16A34A; }

/* TRUST BADGES */
.pdp-trust-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
}
.pdp-trust-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: .72rem; color: #374151; font-weight: 600;
  flex: 1; min-width: 120px;
}
.pdp-trust-badge svg { color: #0B9E8E; flex-shrink: 0; }

/* SHARE */
.pdp-share {
  display: flex; align-items: center; gap: 10px;
  padding-top: 4px;
}
.pdp-share__label { font-size: .75rem; color: #9CA3AF; font-weight: 600; }
.pdp-share-btn {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .2s; flex-shrink: 0;
}
.pdp-share-btn--wa { background: #25D366; }
.pdp-share-btn--fb { background: #1877F2; }
.pdp-share-btn--tw { background: #1DA1F2; }
.pdp-share-btn:hover { transform: scale(1.1); opacity: .9; }

/* COLORS */
.pdp-colors {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pdp-color {
  position: relative;
  padding: 3px;
  border: 2.5px solid transparent;
  border-radius: 50%;
  cursor: pointer; background: transparent;
  transition: all .2s;
}
.pdp-color:hover { border-color: #0B9E8E; transform: scale(1.1); }
.pdp-color.active { border-color: #0B9E8E; box-shadow: 0 0 0 3px rgba(11,158,142,.2); }
.pdp-color__dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: transform .2s;
}
.pdp-color:hover .pdp-color__dot,
.pdp-color.active .pdp-color__dot { transform: scale(1.05); }

/* BUY ROW */
.pdp-buy-row {
  display: flex; gap: 12px; align-items: center;
}
.pdp-qty {
  display: flex; align-items: center;
  border: 2px solid #E5E7EB; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.pdp-qty-btn {
  width: 44px; height: 52px;
  font-size: 1.4rem; color: #374151;
  background: #F9FAFB;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-family: 'Montserrat', sans-serif;
}
.pdp-qty-btn:hover { background: #F3F4F6; color: #0B9E8E; }
.pdp-qty-input {
  width: 52px; text-align: center;
  font-size: 1rem; font-weight: 700; color: #111827;
  border: none; outline: none;
  background: transparent;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp-btn-cart {
  flex: 1; height: 52px;
  background: #1C2B4A; color: #fff;
  border-radius: 10px;
  font-size: .95rem; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.pdp-btn-cart:hover { background: #142038; transform: translateY(-1px); }
.pdp-btn-cart:active { transform: translateY(0); }

/* CART CONFIRM POPUP */
/* CART CONFIRM MODAL */
.cart-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 4500;
  backdrop-filter: blur(2px);
}
.cart-modal-overlay.show { display: block; }

.pdp-cart-confirm {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  width: 92%; max-width: 500px;
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 26px;
  flex-direction: column;
  gap: 0;
  z-index: 4600;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  animation: modalIn .28s ease forwards;
}
.pdp-cart-confirm.show { display: flex; }
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.pdp-cart-confirm__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.4rem; line-height: 1; color: #9CA3AF;
  cursor: pointer; padding: 4px 8px;
  transition: color .2s;
}
.pdp-cart-confirm__close:hover { color: #374151; }
.pdp-cart-confirm__title {
  font-size: 1rem; font-weight: 700; color: #111827;
  margin-bottom: 8px; padding-right: 24px;
}
.pdp-cart-confirm__subtitle {
  font-size: .8rem; color: #6B7280;
  line-height: 1.55; margin-bottom: 18px;
  text-align: center;
}
.pdp-cart-confirm__product {
  display: flex; gap: 16px; align-items: center;
  background: #F9FAFB; border-radius: 10px;
  padding: 14px; margin-bottom: 20px;
}
.pdp-cart-confirm__product img {
  width: 80px; height: 80px; object-fit: contain;
  border-radius: 8px; background: #fff; flex-shrink: 0;
}
.pdp-cart-confirm__product-info { flex: 1; }
.pdp-cart-confirm__product-info s {
  font-size: .78rem; color: #9CA3AF; display: block; margin-bottom: 2px;
}
.pdp-cart-confirm__product-info .price-main {
  font-size: 1.25rem; font-weight: 700; color: #111827; display: block;
}
.pdp-cart-confirm__product-info .price-inst {
  font-size: .78rem; color: #6B7280; margin-top: 2px;
}
.pdp-cart-confirm__actions { display: flex; gap: 10px; }
.pdp-cart-confirm__btn-secondary {
  flex: 1; padding: 12px;
  border: 1.5px solid #D1D5DB; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: #374151;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer; background: #fff;
  transition: all .2s;
}
.pdp-cart-confirm__btn-secondary:hover { background: #F3F4F6; border-color: #9CA3AF; }
.pdp-cart-confirm__btn-primary {
  flex: 1; padding: 12px;
  background: #373655; color: #fff;
  border-radius: 8px; border: none;
  font-size: .85rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s;
}
.pdp-cart-confirm__btn-primary:hover { background: #2a2840; }

/* WHATSAPP */
.pdp-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px;
  background: #25D366; color: #fff;
  border-radius: 10px;
  font-size: .9rem; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background .2s;
}
.pdp-whatsapp:hover { background: #1EB855; }

/* AREAS */
.pdp-areas {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pdp-area {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: #F0FDF4; border: 1px solid #BBF7D0;
  color: #166534; font-size: .78rem; font-weight: 600;
  border-radius: 20px;
}

/* SHIPPING */
.pdp-shipping {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.pdp-shipping__title {
  font-size: .875rem; font-weight: 700; color: #374151;
  display: flex; align-items: center; gap: 8px;
}
.pdp-shipping__row { display: flex; gap: 8px; }
.pdp-cep {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid #E5E7EB; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .875rem;
  outline: none; transition: border-color .2s;
}
.pdp-cep:focus { border-color: #0B9E8E; }
.pdp-cep-btn {
  padding: 10px 18px;
  background: #0B9E8E; color: #fff;
  border-radius: 8px; font-weight: 700; font-size: .8rem;
  font-family: 'Montserrat', sans-serif; cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.pdp-cep-btn:hover { background: #087A6D; }
.pdp-cep-link { font-size: .75rem; color: #0B9E8E; }
.pdp-cep-link:hover { text-decoration: underline; }
.pdp-shipping__result { font-size: .82rem; color: #374151; }
.pdp-shipping__result .frete-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #F3F4F6;
}
.pdp-shipping__result .frete-option:last-child { border-bottom: none; }
.frete-option__name { font-weight: 600; color: #111827; }
.frete-option__prazo { font-size: .75rem; color: #6B7280; }
.frete-option__price { font-weight: 700; color: #0B9E8E; }
.frete-option__price.free { color: #16A34A; }

/* ============================================================
   TABS
   ============================================================ */
.pdp-tabs {
  margin-top: 52px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}
.pdp-tabs__header {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.pdp-tab {
  padding: 15px 28px;
  font-size: .875rem; font-weight: 600;
  color: #6B7280;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
  background: transparent;
}
.pdp-tab:hover { color: #0B9E8E; }
.pdp-tab.active { color: #0B9E8E; border-bottom-color: #0B9E8E; background: #fff; }

.pdp-tab-content { display: none; padding: 32px; }
.pdp-tab-content.active { display: block; }

/* Description */
.pdp-desc h2 { font-size: 1.3rem; font-weight: 800; color: #111827; margin-bottom: 14px; }
.pdp-desc h3 { font-size: 1rem; font-weight: 700; color: #111827; margin: 20px 0 10px; }
.pdp-desc p { font-size: .9rem; color: #374151; line-height: 1.8; margin-bottom: 12px; }
.pdp-desc ul, .pdp-desc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.pdp-desc li { font-size: .875rem; color: #374151; line-height: 1.6; }
.pdp-desc__rendimento {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 24px;
}
.pdp-desc__rend-item {
  background: #F9FAFB; border: 1px solid #E5E7EB;
  border-radius: 10px; padding: 16px; text-align: center;
}
.pdp-desc__rend-val { display: block; font-size: 1.6rem; font-weight: 900; color: #0B9E8E; }
.pdp-desc__rend-label { font-size: .72rem; color: #6B7280; margin-top: 4px; display: block; }

/* Spec table */
.pdp-spec-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.pdp-spec-table tr { border-bottom: 1px solid #F3F4F6; }
.pdp-spec-table tr:last-child { border-bottom: none; }
.pdp-spec-table th {
  width: 200px; padding: 12px 16px; text-align: left;
  font-weight: 600; color: #374151; background: #F9FAFB;
  white-space: nowrap;
}
.pdp-spec-table td { padding: 12px 16px; color: #4B5563; }

/* Reviews */
.pdp-reviews-summary {
  display: flex; gap: 48px; align-items: center; margin-bottom: 32px;
  padding-bottom: 28px; border-bottom: 1px solid #E5E7EB;
}
.pdp-reviews-avg { text-align: center; }
.pdp-reviews-avg__num { display: block; font-size: 3.5rem; font-weight: 900; color: #111827; line-height: 1; }
.pdp-reviews-avg__stars { color: #F59E0B; font-size: 1.4rem; margin: 4px 0; }
.pdp-reviews-avg__total { font-size: .78rem; color: #6B7280; }
.pdp-reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pdp-reviews-bar { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: #6B7280; }
.pdp-reviews-bar span:first-child { width: 24px; text-align: right; flex-shrink: 0; }
.bar-bg { flex: 1; height: 8px; background: #F3F4F6; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: #F59E0B; border-radius: 4px; }
.pdp-reviews-bar span:last-child { width: 32px; flex-shrink: 0; }
.pdp-review-list { display: flex; flex-direction: column; gap: 20px; }
.pdp-review { padding: 18px 0; border-bottom: 1px solid #F3F4F6; }
.pdp-review:last-child { border-bottom: none; }
.pdp-review__header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pdp-review__stars { color: #F59E0B; }
.pdp-review__header strong { font-size: .875rem; color: #111827; }
.pdp-review__date { font-size: .75rem; color: #9CA3AF; margin-left: auto; }
.pdp-review p { font-size: .875rem; color: #374151; line-height: 1.6; }
.pdp-review--new { background: #f0fdf4; border-left: 3px solid #16A34A; }

/* ============================================================
   REVIEW FORM
   ============================================================ */
.pdp-review-form {
  margin-top: 36px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px 32px;
}
.pdp-review-form__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}
.pdp-review-form__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.star-btn {
  font-size: 2rem;
  color: #D1D5DB;
  cursor: pointer;
  transition: color .15s, transform .1s;
  user-select: none;
  line-height: 1;
}
.star-btn:hover,
.star-btn.active { color: #F59E0B; transform: scale(1.15); }
.pdp-review-form__row { margin-bottom: 14px; }
.pdp-review-form__input,
.pdp-review-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: #111827;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s;
  resize: vertical;
}
.pdp-review-form__input:focus,
.pdp-review-form__textarea:focus {
  outline: none;
  border-color: #8B1A1A;
}
.pdp-review-form__btn {
  background: #1C2B4A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.pdp-review-form__btn:hover { background: #6B1414; }
.pdp-review-form__success {
  margin-top: 12px;
  color: #16A34A;
  font-weight: 600;
  font-size: .95rem;
}
@media (max-width: 600px) {
  .pdp-review-form { padding: 18px 16px; }
}

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.pdp-related { margin-top: 52px; }
.pdp-related__title { font-size: 1.3rem; font-weight: 800; color: #111827; margin-bottom: 24px; }
.pdp-related__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pdp-related-card {
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 12px; overflow: hidden;
  transition: all .2s;
  display: block; color: inherit;
}
.pdp-related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); border-color: #0B9E8E; }
.pdp-related-card__img {
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F9FAFB;
}
.pdp-related-card__body { padding: 14px; }
.pdp-related-card__cat { font-size: .68rem; font-weight: 700; color: #0B9E8E; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.pdp-related-card__body h4 { font-size: .875rem; font-weight: 600; color: #111827; line-height: 1.4; margin-bottom: 8px; }
.pdp-related-card__price { font-size: 1rem; font-weight: 800; color: #111827; }

/* ============================================================
   BANNER SOLUÇÃO TOTAL
   ============================================================ */
.pdp-promo-banner {
  margin-top: 48px;
  overflow: hidden;
}
.pdp-promo-banner img,
.pdp-promo-banner__img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: smooth;
  max-width: 100%;
}
@media (max-width: 768px) {
  .pdp-promo-banner { margin-top: 32px; }
}

/* ============================================================
   VÍDEO DA APLICAÇÃO
   ============================================================ */
.pdp-video-wrap {
  margin-top: 36px;
  border-top: 1px solid #E5E7EB;
  padding-top: 28px;
}
.pdp-video-wrap__title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700; color: #111827;
  margin-bottom: 16px;
}
.pdp-video-wrap__title svg { color: #0B9E8E; flex-shrink: 0; }
.pdp-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.pdp-video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 14px;
}

/* ============================================================
   DOWNLOADS NA ABA ESPECIFICAÇÕES
   ============================================================ */
.pdp-spec-downloads {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}
.pdp-spec-download-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #F0FDFA;
  border: 1.5px solid #0B9E8E;
  border-radius: 8px;
  color: #0B9E8E;
  font-size: .83rem; font-weight: 600;
  transition: all .2s;
}
.pdp-spec-download-btn:hover { background: #0B9E8E; color: #fff; }

/* ============================================================
   SOLUÇÃO TOTAL — BENEFÍCIOS
   ============================================================ */
.pdp-solucao {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  margin-top: 48px;
  border: 1px solid #E5E7EB;
}
.pdp-solucao__title {
  font-size: 1.6rem; font-weight: 800; color: #0B9E8E;
  text-align: center; margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.pdp-solucao__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pdp-solucao__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.pdp-surfaces__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.pdp-solucao-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  transition: all .25s;
}
.pdp-solucao-card:hover {
  border-color: #0B9E8E;
  background: #F0FDFA;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11,158,142,.1);
}
.pdp-solucao-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(11,158,142,.08);
  display: flex; align-items: center; justify-content: center;
  color: #0B9E8E;
  flex-shrink: 0;
}
.pdp-solucao-card p {
  font-size: .82rem; font-weight: 600; color: #374151;
  line-height: 1.4;
}

/* ============================================================
   ONDE POSSO APLICAR
   ============================================================ */
.pdp-surfaces {
  margin-top: 48px;
  padding: 48px 40px;
  background: linear-gradient(135deg, #0B9E8E 0%, #0d7065 100%);
  border-radius: 16px;
  color: #fff;
}
.pdp-surfaces__title {
  font-size: 1.6rem; font-weight: 800;
  text-align: center; margin-bottom: 36px;
  color: #fff;
}
.pdp-surfaces__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.pdp-surface-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
  padding: 20px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.pdp-surface-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-3px);
}
.pdp-surface-card__icon { color: #fff; opacity: .9; }
.pdp-surface-card span {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.95);
}

/* ============================================================
   DADOS TÉCNICOS
   ============================================================ */
.pdp-techdata {
  margin-top: 48px;
}
.pdp-techdata__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pdp-techdata-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .2s;
}
.pdp-techdata-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.pdp-techdata-card__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #F0FDFA;
}
.pdp-techdata-card__header h4 {
  font-size: 1rem; font-weight: 700; color: #111827;
}
.pdp-techdata-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pdp-techdata-card ul li {
  font-size: .85rem; color: #374151;
  padding: 6px 0;
  border-bottom: 1px dashed #F3F4F6;
}
.pdp-techdata-card ul li:last-child { border-bottom: none; }
.pdp-techdata-card__obs {
  font-size: .75rem; color: #9CA3AF;
  margin-top: 10px; font-style: italic;
}
.pdp-techdata-card__downloads {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.pdp-techdata-card__downloads a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  background: #F0FDFA;
  border: 1px solid #0B9E8E;
  border-radius: 6px;
  color: #0B9E8E; font-size: .75rem; font-weight: 600;
  transition: all .2s;
}
.pdp-techdata-card__downloads a:hover { background: #0B9E8E; color: #fff; }

/* ============================================================
   APP DE CORES
   ============================================================ */
.pdp-app-promo {
  margin-top: 48px;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: #fff;
}
.pdp-app-promo__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.pdp-app-promo__text { flex: 1; }
.pdp-app-promo__text h2 {
  font-size: 1.8rem; font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
.pdp-app-promo__text p {
  font-size: 1rem; color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.pdp-app-promo__sub { font-size: .88rem; color: rgba(255,255,255,.65); }
.pdp-app-promo__btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 14px 28px;
  background: #0B9E8E;
  color: #fff; font-size: 1rem; font-weight: 700;
  border-radius: 10px;
  border: none; cursor: pointer;
  transition: all .2s;
}
.pdp-app-promo__btn:hover { background: #0d7065; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,158,142,.4); }
.pdp-app-promo__visual { flex-shrink: 0; text-align: center; }
.pdp-app-promo__palette {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 12px;
}
.pdp-app-promo__palette span {
  display: block;
  width: 50px; height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.2);
}
.pdp-app-promo__visual p {
  font-size: .78rem; color: rgba(255,255,255,.6);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 24px; }
  .pdp-gallery { flex-direction: column-reverse; position: static; }
  .pdp-gallery__thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
  .pdp-gallery__thumbs::-webkit-scrollbar { height: 3px; }
  .pdp-thumb { flex-shrink: 0; }
  .pdp-related__grid { grid-template-columns: repeat(2,1fr); }
  .pdp-solucao__grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-surfaces__grid { grid-template-columns: repeat(4, 1fr); }
  .pdp-techdata__grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-app-promo__inner { flex-direction: column; }
  .pdp-solucao { padding: 36px 24px; }
  .pdp-surfaces { padding: 36px 24px; }
  .pdp-app-promo { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .pdp-buy-row {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .pdp-btn-cart {
    width: 100%;
    flex: unset;
    min-height: 56px;
    font-size: 1rem;
  }
  .pdp-qty {
    width: 100%;
    justify-content: center;
  }
  .pdp-related__grid { grid-template-columns: 1fr 1fr; }
  .pdp-reviews-summary { flex-direction: column; gap: 24px; }
  .pdp-tab { padding: 12px 14px; font-size: .78rem; }
  .pdp-solucao__grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-surfaces__grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-techdata__grid { grid-template-columns: 1fr; }
  .pdp-app-promo__palette span { width: 38px; height: 38px; }
}

/* AREA BADGE */
.pdp-area-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #EFF6FF; color: #1D4ED8;
  font-size: .78rem; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid #BFDBFE;
}

/* ============================================================
   DIAMANTADO PDP OVERRIDES
   ============================================================ */

/* PIX pill above title */
.pdp-pix-pill {
  display: inline-block;
  background: #16A34A; color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

/* "MAIS VENDIDOS" badge on gallery */
.pdp-gallery__badge-mais {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, #E5006D, #FF4D9D);
  color: #fff;
  font-size: .72rem; font-weight: 900;
  padding: 7px 16px; border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(229,0,109,.35);
}

/* Color swatch as rounded square (not circle) */
.pdp-color--square {
  padding: 2px;
  border-radius: 6px !important;
}
.pdp-color--square .pdp-color__dot {
  border-radius: 5px !important;
  width: 30px !important;
  height: 30px !important;
}
.pdp-color--square.active { border-radius: 6px !important; }

/* Price box – diamantado variant (no card border) */
.pdp-price-box--diamantado {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  gap: 4px;
}
.pdp-price-por {
  font-size: .85rem; color: #374151;
  margin: 0;
}
.pdp-price-por .pdp-price {
  font-size: 2rem; font-weight: 900; color: #111827;
}
.pdp-price-unit {
  font-size: .72rem; color: #6B7280;
  margin: 0;
}
.pdp-price-unit strong { font-weight: 600; color: #6B7280; }
.pdp-price-pix-line {
  font-size: .82rem; color: #374151;
  margin: 2px 0 0;
}
.pdp-price-pix-line strong { color: #374151; font-weight: 800; }
.pdp-pix-off { color: #16A34A; font-weight: 700; }

/* "Confira formas de pagamento" as plain blue link */
.pdp-payment-link-plain {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; color: #1D4ED8; font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}
.pdp-payment-link-plain:hover { text-decoration: underline; }
.pdp-payment-link-plain svg { transition: transform .2s; }
.pdp-payment-link-plain.open svg { transform: rotate(180deg); }

/* Qty row with "Rende" text */
.pdp-qty-row--diamantado {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.pdp-qty-rende {
  font-size: .8rem; color: #6B7280;
}

/* Add to cart – full-width dark button */
.pdp-add-btn--diamantado {
  width: 100%; height: 52px;
  background: #1A2B45; color: #fff;
  border-radius: 8px;
  font-size: 1rem; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .15s;
  border: none;
  letter-spacing: .02em;
}
.pdp-add-btn--diamantado:hover { background: #0f1f33; transform: translateY(-1px); }
.pdp-add-btn--diamantado:active { transform: translateY(0); }

/* PROMO BANNER — anniversary strip on product pages */
.promo-banner {
  background: linear-gradient(90deg, #0d1b4b 0%, #162264 50%, #0d1b4b 100%);
  border-bottom: 3px solid #0B9E8E;
  padding: 14px 24px;
  width: 100%;
  box-sizing: border-box;
}
.promo-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.promo-banner__badge {
  background: #0B9E8E;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.promo-banner__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
}
.promo-banner__sep {
  color: #0B9E8E;
  font-size: 18px;
  font-weight: 300;
}
.promo-banner__offer {
  color: #dde6ff;
  font-size: 14px;
  white-space: nowrap;
}
.promo-banner__offer strong {
  color: #ff5533;
  font-size: 20px;
  font-weight: 800;
}
.promo-banner__cta {
  background: #0B9E8E;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-banner__cta:hover {
  background: #097a6e;
  color: #fff;
}
@media (max-width: 768px) {
  .promo-banner { padding: 12px 16px; }
  .promo-banner__title,
  .promo-banner__sep { display: none; }
  .promo-banner__offer { font-size: 13px; }
  .promo-banner__offer strong { font-size: 16px; }
}
