/* ==========================================================================
   TRENDY SHOP COLOMBIA - PRODUCT DETAIL PAGE (PDP) 1:1 STYLES
   Exact replica of https://www.maquillajetrendyshop.com/pulsera-plateada-princesas-dy2292/p
   ========================================================================== */

/* Main PDP Container */
html, body {
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100vw;
}

.pdp-page-wrapper {
  background-color: #FFFFFF;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100vw;
}

.pdp-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px 60px 24px;
}

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #707070;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pdp-breadcrumb a {
  color: #707070;
  text-decoration: none;
  transition: color 0.2s;
}

.pdp-breadcrumb a:hover {
  color: #DF4080;
}

.pdp-breadcrumb .pdp-sep {
  margin: 0 8px;
  color: #A0A0A0;
  font-size: 12px;
}

.pdp-breadcrumb .pdp-current {
  color: #DF4080;
  font-weight: 600;
}

/* Main Grid: Gallery (Left) & Info (Right) */
.pdp-hero-grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

/* Gallery Section */
.pdp-gallery-container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Vertical Thumbnails */
.pdp-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 72px;
  flex-shrink: 0;
}

.pdp-thumb-item {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  padding: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pdp-thumb-item:hover {
  transform: scale(1.05);
}

.pdp-thumb-item.active {
  border-color: #DF4080;
  box-shadow: 0 0 0 2px rgba(223, 64, 128, 0.25);
}

.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Main Image Box */
.pdp-main-image-wrap {
  position: relative;
  flex: 1;
  min-height: 480px;
  max-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

.pdp-main-image-wrap img {
  max-width: 100%;
  max-height: 510px;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.3s ease;
  user-select: none;
}

.pdp-main-image-wrap:hover img {
  transform: scale(1.03);
}

/* Gallery Navigation Arrows */
.pdp-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EAEAEA;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  transition: all 0.2s ease;
  z-index: 3;
  opacity: 0.85;
}

.pdp-gallery-btn:hover {
  background: #DF4080;
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.pdp-gallery-btn--prev {
  left: 10px;
}

.pdp-gallery-btn--next {
  right: 10px;
}

/* Product Info Column */
.pdp-info-col {
  display: flex;
  flex-direction: column;
}

.pdp-title {
  font-size: 26px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 10px 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* Star Rating */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pdp-rating-stars {
  display: flex;
  gap: 3px;
  color: #C0C0C0;
}

.pdp-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: #FFB800;
}

.pdp-reviews-count {
  font-size: 13px;
  color: #888888;
}

/* Short Description */
.pdp-short-desc {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Price Row & Wishlist */
.pdp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pdp-price-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.pdp-list-price {
  font-size: 16px;
  color: #888888;
  text-decoration: line-through;
  font-weight: 400;
}

.pdp-sale-price {
  font-size: 32px;
  font-weight: 700;
  color: #DF4080;
  letter-spacing: -0.5px;
}

.pdp-wishlist-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: transform 0.2s ease, color 0.2s ease;
}

.pdp-wishlist-btn:hover {
  transform: scale(1.15);
}

.pdp-wishlist-btn svg {
  width: 24px;
  height: 24px;
  stroke: #333333;
  stroke-width: 1.8;
  fill: none;
  transition: all 0.2s ease;
}

.pdp-wishlist-btn.active svg {
  stroke: #DF4080;
  fill: #DF4080;
}

/* Unit Price (PUM) */
.pdp-unit-price {
  font-size: 12px;
  color: #777777;
  margin-bottom: 24px;
}

/* Quantity Selector */
.pdp-qty-section {
  margin-bottom: 22px;
}

.pdp-qty-label {
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
  display: block;
}

.pdp-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #D0D0D0;
  border-radius: 20px;
  padding: 3px 14px;
  gap: 16px;
  background: #FFFFFF;
}

.pdp-stepper-btn {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #444444;
  cursor: pointer;
  padding: 2px 4px;
  user-select: none;
  transition: color 0.2s;
}

.pdp-stepper-btn:hover {
  color: #DF4080;
}

.pdp-stepper-val {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  min-width: 16px;
  text-align: center;
  user-select: none;
}

/* Action Buttons */
.pdp-actions-row {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.pdp-btn-cart {
  flex: 1;
  background: #FFFFFF;
  border: 1.5px solid #DF4080;
  color: #DF4080;
  border-radius: 24px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.pdp-btn-cart:hover {
  background: #FFF0F5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(223, 64, 128, 0.15);
}

.pdp-btn-buy {
  flex: 1;
  background: #DF4080;
  border: 1.5px solid #DF4080;
  color: #FFFFFF;
  border-radius: 24px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.pdp-btn-buy:hover {
  background: #C92F6F;
  border-color: #C92F6F;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(223, 64, 128, 0.3);
}

/* TE PUEDE INTERESAR Cross-Sell Section */
.pdp-cross-section {
  border-top: 1px solid #EEEEEE;
  padding-top: 22px;
}

.pdp-cross-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pdp-cross-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  text-transform: uppercase;
}

.pdp-cross-arrows {
  display: flex;
  gap: 8px;
}

.pdp-cross-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #9E9E9E;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pdp-cross-arrow:hover {
  background: #757575;
  transform: scale(1.08);
}

.pdp-cross-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.pdp-cross-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pdp-cross-card {
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.pdp-cross-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-color: #E2E2E2;
}

.pdp-cross-top-icons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.pdp-cross-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.pdp-cross-icon-btn:hover {
  transform: scale(1.2);
  color: #DF4080;
}

.pdp-cross-icon-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.pdp-cross-img-wrap {
  width: 100%;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  cursor: pointer;
}

.pdp-cross-img-wrap img {
  max-width: 100%;
  max-height: 125px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.pdp-cross-card:hover .pdp-cross-img-wrap img {
  transform: scale(1.05);
}

.pdp-cross-name {
  font-size: 12px;
  font-weight: 500;
  color: #222222;
  text-align: center;
  min-height: 32px;
  line-height: 1.35;
  margin: 0 0 6px 0;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdp-cross-name:hover {
  color: #DF4080;
}

.pdp-cross-price {
  font-size: 16px;
  font-weight: 700;
  color: #DF4080;
  text-align: center;
  margin: 0 0 10px 0;
}

.pdp-cross-btn {
  width: 100%;
  border: 1px solid #DF4080;
  background: #FFFFFF;
  color: #DF4080;
  border-radius: 20px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.pdp-cross-btn:hover {
  background: #DF4080;
  color: #FFFFFF;
}

/* Tabs Section (Lower Area) */
.pdp-tabs-section {
  border-top: 1px solid #EAEAEA;
  padding-top: 30px;
  margin-top: 40px;
}

.pdp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  border-bottom: 1px solid #EAEAEA;
  position: relative;
}

.pdp-tab-btn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.pdp-tab-btn:hover {
  color: #1A1A1A;
}

.pdp-tab-btn.active {
  color: #DF4080;
}

.pdp-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: #DF4080;
  border-radius: 2px 2px 0 0;
}

/* Tab Panels */
.pdp-tab-panel {
  display: none;
  padding: 36px 0 20px 0;
  animation: pdpFadeIn 0.3s ease;
}

.pdp-tab-panel.active {
  display: block;
}

@keyframes pdpFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Description Layout: Lifestyle Photo + Detailed Text */
.pdp-desc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.pdp-desc-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: block;
}

.pdp-desc-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 16px 0;
}

.pdp-desc-content p {
  font-size: 14.5px;
  color: #4A4A4A;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Specifications Table */
.pdp-spec-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  overflow: hidden;
}

.pdp-spec-table tr {
  border-bottom: 1px solid #EAEAEA;
}

.pdp-spec-table tr:last-child {
  border-bottom: none;
}

.pdp-spec-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #444444;
}

.pdp-spec-table td.spec-key {
  font-weight: 600;
  color: #1A1A1A;
  width: 220px;
  background: #FAFAFA;
}

/* Additional PDP Elements */
.pdp-badge {
  display: inline-block;
  background: #FFF0F5;
  color: #DF4080;
  border: 1px solid #DF4080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pdp-discount-pill {
  background: #DF4080;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  display: inline-block;
}

.pdp-expert-tip {
  background: #FFF9FA;
  border-left: 4px solid #DF4080;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 18px;
  font-size: 13.5px;
  color: #333333;
  line-height: 1.6;
}

/* ==========================================================================
   REVIEWS & OPINIONES SECTION (VTEX 1:1 REPLICA)
   ========================================================================== */
.pdp-reviews-section {
  border-top: 1px solid #EAEAEA;
  padding-top: 40px;
  margin-top: 50px;
}

.pdp-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.pdp-reviews-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DF4080;
  color: #FFFFFF;
  border: none;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(223, 64, 128, 0.2);
}

.btn-write-review:hover {
  background: #C92F6F;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(223, 64, 128, 0.3);
}

/* Review Summary Breakdown */
.pdp-reviews-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  background: #FAFAFA;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  padding: 28px 36px;
  margin-bottom: 36px;
}

.pdp-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #E5E5E5;
  padding-right: 30px;
}

.pdp-score-val {
  font-size: 54px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 8px;
}

.pdp-score-stars {
  display: flex;
  gap: 4px;
  color: #FFB800;
  font-size: 20px;
  margin-bottom: 8px;
}

.pdp-score-sub {
  font-size: 13px;
  color: #777777;
  margin-bottom: 8px;
}

.pdp-score-recommend {
  font-size: 12px;
  color: #2E7D32;
  font-weight: 600;
  background: #E8F5E9;
  padding: 4px 12px;
  border-radius: 12px;
}

.pdp-breakdown-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #555555;
}

.breakdown-label {
  min-width: 80px;
  font-weight: 500;
  cursor: pointer;
}

.breakdown-bar-bg {
  flex: 1;
  height: 9px;
  background: #EAEAEA;
  border-radius: 6px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: #DF4080;
  border-radius: 6px;
  transition: width 0.4s ease;
}

.breakdown-count {
  min-width: 35px;
  text-align: right;
  font-weight: 600;
  color: #333333;
}

/* Review Form Container */
.pdp-review-form-container {
  background: #FFF9FB;
  border: 1.5px solid #F5C6D8;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 36px;
  animation: pdpFadeIn 0.3s ease;
}

.pdp-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 6px 0;
}

.pdp-form-subtitle {
  font-size: 13px;
  color: #666666;
  margin: 0 0 20px 0;
}

.interactive-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.star-picker-item {
  font-size: 28px;
  color: #D1D1D1;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}

.star-picker-item.active,
.star-picker-item.hovered {
  color: #FFB800;
  transform: scale(1.15);
}

.star-picker-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #555555;
  margin-left: 12px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  font-size: 14px;
  color: #222222;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #DF4080;
  box-shadow: 0 0 0 3px rgba(223, 64, 128, 0.15);
}

.checkbox-label {
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-submit-review {
  background: #DF4080;
  color: #FFFFFF;
  border: none;
  padding: 11px 26px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit-review:hover {
  background: #C92F6F;
  transform: translateY(-1px);
}

.btn-cancel-review {
  background: none;
  border: 1px solid #CCCCCC;
  color: #666666;
  padding: 11px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-review:hover {
  border-color: #999999;
  color: #333333;
}

/* Reviews Toolbar */
.pdp-reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-count-badge {
  font-size: 14px;
  font-weight: 600;
  color: #444444;
}

.reviews-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666666;
}

.reviews-sort-select {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid #CCCCCC;
  font-size: 13px;
  color: #333333;
  outline: none;
  background: #FFFFFF;
  cursor: pointer;
}

/* Review Cards */
.pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-review-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 22px 26px;
  transition: box-shadow 0.2s;
}

.pdp-review-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.pdp-review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pdp-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-reviewer-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-reviewer-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #1A1A1A;
}

.pdp-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 2px 8px;
  border-radius: 10px;
}

.pdp-review-date {
  font-size: 12px;
  color: #888888;
}

.pdp-review-stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
  font-size: 16px;
}

.pdp-review-title {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 8px 0;
}

.pdp-review-body {
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.pdp-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #777777;
}

.pdp-helpful-btn {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.pdp-helpful-btn .pdp-helpful-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease, fill 0.2s ease;
  flex-shrink: 0;
}

.pdp-helpful-btn:hover {
  border-color: #DF4080;
  color: #DF4080;
  background: #FFF5F8;
}

.pdp-helpful-btn:hover .pdp-helpful-icon {
  transform: translateY(-1px);
}

.pdp-helpful-btn.voted {
  background: #FFF0F5;
  border-color: #DF4080;
  color: #DF4080;
  font-weight: 600;
}

.pdp-helpful-btn.voted .pdp-helpful-icon {
  fill: #DF4080;
  stroke: #DF4080;
}

/* Toast for Review Added */
.pdp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: pdpSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-toast--success {
  border-left: 4px solid #2E7D32;
}

@keyframes pdpSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pdp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pdp-desc-layout {
    grid-template-columns: 1fr;
  }
  .pdp-reviews-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pdp-score-card {
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .pdp-container {
    padding: 12px 16px 40px 16px;
  }
  .pdp-main-image-wrap {
    min-height: 280px;
    max-height: 380px;
  }
  .pdp-gallery-container {
    flex-direction: column-reverse;
  }
  .pdp-thumbs-col {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .pdp-actions-row {
    flex-direction: column;
  }
  .pdp-cross-grid {
    grid-template-columns: 1fr;
  }
  .pdp-tabs-nav {
    gap: 20px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .pdp-reviews-summary {
    padding: 20px;
  }
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   VTEX 1:1 VARIANT / TONES SELECTOR (SKU SELECTOR)
   ========================================================================== */
.pdp-variants-container {
  margin: 18px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-variant-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.pdp-variant-name-label {
  font-weight: 700;
  color: #1A1A1A;
}

.pdp-variant-active-val {
  font-weight: 500;
  color: #666666;
}

.pdp-variants-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 4px 2px;
}

/* Round swatch circle (VTEX style with double-ring active state) */
.pdp-swatch-item {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
}

.pdp-swatch-item:hover {
  transform: scale(1.06);
}

.pdp-swatch-item.active {
  border-color: #DF4080;
}

.pdp-swatch-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border: 1px solid #E2E2E2;
}

/* Fallback pill swatch for text-only options */
.pdp-swatch-pill {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #D1D5DB;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pdp-swatch-pill:hover {
  border-color: #DF4080;
  color: #DF4080;
}

.pdp-swatch-pill.active {
  border-color: #DF4080;
  background: #FFF0F5;
  color: #DF4080;
  box-shadow: 0 0 0 1px #DF4080;
}

.pdp-swatch-item.disabled, .pdp-swatch-pill.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
}

.pdp-swatch-item.disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #E53E3E;
  transform: rotate(-45deg);
}

