


.placeholder--gallery {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: linear-gradient(135deg, #2A1F1F 0%, #3B2B2B 50%, #2A1F1F 100%);
  border: 14px solid #1A1A1A;
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
}
.placeholder--gallery.is-active {
  opacity: 1;
  pointer-events: auto;
}
.placeholder--mockup-wall {
  aspect-ratio: 1.1/1;
  background: linear-gradient(180deg, #EAE7E2 0%, #F0EDE8 60%, #D4D0CA 100%);
  color: #999;
}

.product-hero {
  background: var(--bg-section);
  padding: 36px 0 24px;
}
.product-hero__card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  background: #FFF;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery__main {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.gallery__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5/7;
}


.gallery__slide { display: none; position: relative; }
.gallery__slide.is-active { display: block; }
.gallery__scene {
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.gallery__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.gallery__thumb {
  position: relative;
  width: 60px;
  aspect-ratio: 5/7;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  background: var(--bg-section);
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumb.is-active { border-color: var(--brand-pink); }
.gallery__thumb-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}


.gallery__frame--3d {
  cursor: grab;
  touch-action: none;
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(120% 90% at 50% 30%, #fafafa 0%, #f0f0f0 60%, #e8e8e8 100%);
}
.gallery__frame--3d:active { cursor: grabbing; }
.gallery__frame--3d .gallery__canvas {
  position: absolute; inset: 0; display: block;
  width: 100% !important; height: 100% !important;
}
.gallery__frame--3d .gallery__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; transition: opacity .3s ease;
}
.gallery__frame--3d.is-3d-ready .gallery__img { opacity: 0; pointer-events: none; }
.gallery__frame--3d.is-no-3d { cursor: default; }
.gallery__frame--3d.is-no-3d .gallery__canvas,
.gallery__frame--3d.is-no-3d .gallery__hint { display: none; }
.gallery__hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: rgba(26,26,26,.78); color: #fff; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; display: flex; align-items: center; gap: 7px;
  pointer-events: none; transition: opacity .5s ease; white-space: nowrap; z-index: 3;
}
.gallery__hint.is-hidden { opacity: 0; }
.gallery__hint[hidden] { display: none; } 
.gallery__hint svg { width: 14px; height: 14px; }


.gallery__loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(245, 245, 245, 0.82);
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery__frame--3d.is-3d-loading .gallery__loader { display: flex; }
.gallery__frame--3d.is-3d-ready .gallery__loader,
.gallery__frame--3d.is-no-3d .gallery__loader { display: none; }
.gallery__spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--brand-pink);
  animation: gallery-spin 0.8s linear infinite;
}
@keyframes gallery-spin { to { transform: rotate(360deg); } }
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: #999;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: color 0.2s;
}
.gallery__arrow:hover { color: var(--text-dark); }
.gallery__arrow--prev { left: -42px; }
.gallery__arrow--next { right: -42px; }
.gallery__expand {
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  z-index: 4;
  transition: transform 0.2s;
}
.gallery__expand:hover { transform: scale(1.08); }

.gallery__main .gallery__expand { display: none; }
@media (max-width: 768px) {
  .gallery__frame--3d.is-3d-ready + .gallery__expand { display: flex; }
}

.gallery__3d-overlay { position: fixed; inset: 0; z-index: 1000; background: #0e0e0e; display: none; touch-action: none; }
.gallery__3d-overlay.is-open { display: block; }
.gallery__3d-overlay canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.gallery__3d-overlay__close {
  position: fixed; top: 14px; right: 14px; z-index: 1001;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D5D5D5;
  transition: background 0.2s;
}
.gallery__dot.is-active { background: var(--text-dark); }


.info-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}
.info-card__price {
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}


.price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin-bottom: 6px;
}
.price-box__old {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-box__pix {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.price-box__pix-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.price-box__badge {
  flex-basis: 100%;
  width: fit-content;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1B7A3D;
  background: #E6F4EA;
  padding: 5px 11px;
  border-radius: 999px;
}
.info-card__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-card__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #555;
  font-weight: 400;
}
.info-card__select-wrap {
  position: relative;
}
.info-card__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 38px 12px 14px;
  border: 1px solid #DDD;
  border-radius: 4px;
  background: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.info-card__select:focus { border-color: var(--brand-pink); }
.info-card__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
.info-card__cta { margin-top: 8px; }


.spec-strip {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 14px 0 4px;
  padding: 16px;
  background: var(--bg-section);
  border-radius: 6px;
}
.spec-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.spec-strip svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-pink);
}


.accordion__body--specs .spec-list { list-style: none; }
.accordion__body--specs .spec-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #F0F0F0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
.accordion__body--specs .spec-list li:last-child { border-bottom: none; }
.accordion__body--specs .spec-list span { color: var(--text-muted); }
.accordion__body--specs .spec-list strong {
  color: var(--text-dark);
  font-weight: 700;
  text-align: right;
}
.btn--gray {
  background: #F0F0F0;
  color: var(--text-dark);
  border: 1px solid #E0E0E0;
}
.btn--gray:hover { background: #E5E5E5; }


.accordion {
  border-top: 1px solid #EEE;
}
.accordion + .accordion { border-top: 1px solid #EEE; }
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  background: transparent;
}
.accordion__header[aria-expanded="true"] {
  color: var(--brand-pink);
}
.accordion__chevron {
  color: #999;
  transition: transform 0.25s;
}
.accordion__header[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--brand-pink);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__body.is-open { max-height: 1600px; }
.accordion__body-inner { padding: 4px 4px 18px; }

.accordion__body--cep .cep-row {
  display: flex;
  gap: 8px;
}
.cep-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  color: var(--text-dark);
}
.cep-input:focus { border-color: var(--brand-pink); }
.cep-btn {
  padding: 10px 18px;
  background: #F0F0F0;
  color: var(--text-dark);
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cep-btn:hover { background: #E5E5E5; }

.accordion__body--about h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 14px 0 4px;
}
.accordion__body--about h5:first-child { margin-top: 4px; }
.accordion__body--about p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tag-pills-section {
  background: var(--bg-section);
  padding: 14px 0 24px;
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tag-pill {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #DDD;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dark);
  background: #FFF;
  transition: all 0.2s;
  white-space: nowrap;
}
.tag-pill:hover {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
}


.section--talvez,
.section--relacionados {
  background: var(--bg-section);
}

.reviews {
  background: var(--bg-section);
  padding: 50px 0 70px;
}
.reviews__lead {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--brand-pink);
  margin-bottom: 6px;
}
.reviews__title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.reviews__topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}
.reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--star);
}
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__count {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
}
.reviews__arrows {
  display: flex;
  gap: 8px;
  margin-left: 12px;
}
.reviews__arrow {
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 4px;
  color: #999;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.reviews__arrow:hover { color: var(--text-dark); }

.reviews__carousel { overflow: hidden; }
.reviews__viewport { overflow: hidden; }
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}
.review-card {
  flex-shrink: 0;
  background: #FFF;
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.review-card--featured {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__stars {
  display: inline-flex;
  gap: 1px;
  color: var(--star);
}
.review-card__stars svg { width: 14px; height: 14px; }
.review-card__date {
  font-size: 11px;
  color: #BBB;
}
.review-card__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}
.review-card__text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}
.review-card__author {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: auto;
}


@media (max-width: 1024px) {
  .product-hero__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 24px;
  }
  .gallery__main { max-width: 360px; }
  .gallery__arrow--prev { left: -36px; }
  .gallery__arrow--next { right: -36px; }
}


@media (max-width: 768px) {
  body { overflow-x: hidden; }

  .product-hero { padding: 16px 0 20px; }
  .product-hero__card {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 0;
  }

  .gallery {
    background: var(--bg-section);
    padding: 24px 12px 20px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  .gallery__main { max-width: 280px; }
  .gallery__arrow {
    display: flex;
    color: #999;
    width: 36px;
    height: 36px;
    background: transparent;
  }
  .gallery__arrow--prev { left: -48px; }
  .gallery__arrow--next { right: -48px; }

  .info-card {
    background: #FFF;
    padding: 24px 20px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  .info-card__title { font-size: 22px; }
  .info-card__price { font-size: 22px; }

  .tag-pills-section { padding: 16px 0 24px; background: #FFF; }
  .tag-pills { justify-content: flex-start; }
  .tag-pill { font-size: 12px; padding: 6px 14px; }

  .section--talvez,
  .section--relacionados { padding: 40px 0; }

  .section-title {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.04em;
    justify-content: flex-start;
  }
  .section-title::before,
  .section-title::after { display: none; }
  .section--talvez .section-title,
  .section--relacionados .section-title {
    position: relative;
    padding-bottom: 8px;
  }
  .section--talvez .section-title::after,
  .section--relacionados .section-title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--brand-pink);
  }

  .reviews { padding: 36px 0 50px; }
  .reviews__title { font-size: 17px; letter-spacing: 0.06em; }
  .reviews__topbar {
    justify-content: center;
    flex-wrap: wrap;
  }
  .review-card { padding: 20px 18px; }
  .review-card--featured { transform: none; }
}


@media (max-width: 480px) {
  .gallery__main { max-width: 240px; }
  .gallery__arrow--prev { left: -38px; }
  .gallery__arrow--next { right: -38px; }
  .gallery__expand { left: -8px; bottom: -8px; width: 38px; height: 38px; }
  .info-card__title { font-size: 20px; }
}
