/* Galaxy Mobile — Premium Product Page */

.lx-product-page {
  background: var(--lx-bg);
}

.lx-pd {
  padding: 12px 0 100px;
}

/* Hero layout */
.lx-pd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

/* Gallery */
.lx-pd-gallery__stage {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--lx-border);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  overflow: hidden;
  aspect-ratio: 1;
}

.lx-pd-gallery__main {
  position: relative;
  width: 100%;
  height: 100%;
}

.lx-pd-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.45s var(--lx-ease), transform 0.55s var(--lx-ease);
  pointer-events: none;
}

.lx-pd-gallery__img.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.lx-pd-gallery__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 4rem;
  color: var(--lx-gray);
}

.lx-pd-gallery__zoom,
.lx-pd-gallery__nav {
  position: absolute;
  z-index: 3;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lx-text);
  box-shadow: var(--lx-shadow);
  transition: all 0.25s ease;
}

.lx-pd-gallery__zoom {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
}

.lx-pd-gallery__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
}

.lx-pd-gallery__nav--prev { left: 16px; }
.lx-pd-gallery__nav--next { right: 16px; }

.lx-pd-gallery__zoom:hover,
.lx-pd-gallery__nav:hover {
  background: var(--lx-gradient);
  color: #fff;
}

.lx-pd-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.lx-pd-gallery__thumb {
  flex: 0 0 72px;
  height: 72px;
  border: 2px solid var(--lx-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lx-pd-gallery__thumb.is-active,
.lx-pd-gallery__thumb:hover {
  border-color: var(--lx-primary);
  transform: translateY(-2px);
}

.lx-pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.lx-pd-gallery__lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(146, 32, 119, 0.35);
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: blur(2px);
}

.lx-pd-gallery.is-zooming .lx-pd-gallery__lens {
  opacity: 1;
}

/* Lightbox */
.lx-pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}

.lx-pd-lightbox[hidden] { display: none; }

.lx-pd-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(8px);
}

.lx-pd-lightbox__panel {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 960px);
  max-height: 90vh;
}

.lx-pd-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
}

.lx-pd-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--lx-text);
}

/* Product info */
.lx-pd-info__brand {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lx-primary);
}

.lx-pd-info__title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lx-pd-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--lx-gray);
}

.lx-pd-info__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.lx-pd-stars {
  display: inline-flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 14px;
}

.lx-pd-stars--sm { font-size: 12px; }

.lx-pd-info__reviews-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--lx-gray);
}

.lx-pd-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.lx-pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--lx-bg-light);
  border: 1px solid var(--lx-border);
  color: var(--lx-text);
}

.lx-pd-badge--stock {
  background: rgba(4, 116, 68, 0.1);
  border-color: rgba(4, 116, 68, 0.2);
  color: var(--lx-secondary);
}

.lx-pd-badge--out {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.lx-pd-price {
  margin-bottom: 20px;
}

.lx-pd-price__current {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--lx-text);
}

.lx-pd-price__old {
  margin-right: 10px;
  font-size: 1.1rem;
  color: var(--lx-gray);
  text-decoration: line-through;
}

.lx-pd-price__save {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lx-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

.lx-pd-price__tax,
.lx-pd-price__installment {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--lx-gray);
}

.lx-pd-info__short {
  margin: 0 0 24px;
  line-height: 1.75;
  color: var(--lx-gray);
}

/* Options */
.lx-pd-options { margin-bottom: 24px; }

.lx-pd-options__title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
}

.lx-pd-option { margin-bottom: 18px; }

.lx-pd-option__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-text);
}

.lx-pd-select,
.lx-pd-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--lx-border);
  border-radius: 16px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lx-pd-select:focus,
.lx-pd-input:focus {
  outline: none;
  border-color: var(--lx-primary);
  box-shadow: 0 0 0 3px rgba(146, 32, 119, 0.12);
}

.lx-pd-option__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lx-pd-swatch { cursor: pointer; }

.lx-pd-swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lx-pd-swatch__face {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--lx-border);
  border-radius: 16px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lx-pd-swatch__face img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.lx-pd-swatch__face em {
  font-style: normal;
  font-size: 11px;
  color: var(--lx-gray);
}

.lx-pd-swatch input:checked + .lx-pd-swatch__face,
.lx-pd-swatch:hover .lx-pd-swatch__face {
  border-color: var(--lx-primary);
  background: rgba(146, 32, 119, 0.06);
  box-shadow: 0 8px 20px rgba(146, 32, 119, 0.12);
}

.lx-pd-option__values--chip .lx-pd-swatch__face {
  min-width: 72px;
  justify-content: center;
}

/* Qty */
.lx-pd-qty { margin-bottom: 20px; }

.lx-pd-qty__control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--lx-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.lx-pd-qty__btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--lx-bg-light);
  font-size: 18px;
  font-weight: 600;
}

.lx-pd-qty__input {
  width: 56px;
  height: 44px;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-family: inherit;
  -moz-appearance: textfield;
}

.lx-pd-qty__input::-webkit-outer-spin-button,
.lx-pd-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Actions */
.lx-pd-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.lx-pd-actions__cart,
.lx-pd-actions__buy,
.lx-pd-actions__wa {
  width: 100%;
  margin: 0;
}

.lx-pd-actions__buy {
  justify-content: center;
  text-align: center;
  border: 2px solid var(--lx-primary) !important;
  color: var(--lx-primary) !important;
}

.lx-pd-actions__buy:hover {
  background: rgba(146, 32, 119, 0.08) !important;
  color: var(--lx-primary) !important;
}

/* WhatsApp CTA */
.lx-pd-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 140, 126, 0.35);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
  transition: transform 0.3s var(--lx-ease), box-shadow 0.3s var(--lx-ease), filter 0.3s ease;
}

.lx-pd-wa:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
  filter: brightness(1.03);
}

.lx-pd-wa__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #128c7e;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lx-pd-wa__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.2;
  text-align: left;
}

.lx-pd-wa__text strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lx-pd-wa__text em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lx-pd-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.lx-pd-secondary__form {
  display: contents;
}

.lx-pd-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--lx-border);
  border-radius: 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lx-pd-icon-btn:hover {
  border-color: var(--lx-primary);
  color: var(--lx-primary);
  transform: translateY(-2px);
}

.lx-pd-delivery {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 20px;
  background: var(--lx-bg-light);
  border: 1px solid var(--lx-border);
}

.lx-pd-delivery__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lx-pd-delivery__item i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--lx-primary);
}

.lx-pd-delivery__item strong {
  display: block;
  font-size: 14px;
}

.lx-pd-delivery__item span {
  font-size: 13px;
  color: var(--lx-gray);
}

.lx-pd-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lx-pd-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lx-gray);
}

.lx-pd-trust__item i { color: var(--lx-secondary); }

.lx-pd-error {
  margin-top: 6px;
  font-size: 12px;
  color: #dc2626;
}

.lx-pd-error:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.lx-pd-error:not(:empty) { display: block; }

.lx-pd-note {
  font-size: 13px;
  color: var(--lx-gray);
  margin: 0 0 12px;
}

/* Sections spacing */
.lx-pd-features,
.lx-pd-desc,
.lx-pd-specs,
.lx-pd-inbox,
.lx-pd-offer,
.lx-pd-reviews,
.lx-pd-faq,
.lx-pd .lx-carousel-rail {
  margin-top: 72px;
}

/* Features */
.lx-pd-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lx-pd-feature {
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid var(--lx-border);
  background: #fff;
  box-shadow: var(--lx-shadow);
  transition: transform 0.35s var(--lx-ease), box-shadow 0.35s var(--lx-ease);
}

.lx-pd-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--lx-shadow-lg);
}

.lx-pd-feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  font-size: 1.25rem;
  animation: lx-pd-pulse 3s ease-in-out infinite;
}

@keyframes lx-pd-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.lx-pd-feature__title {
  margin: 0 0 8px;
  font-size: 1rem;
}

.lx-pd-feature__text {
  margin: 0;
  font-size: 14px;
  color: var(--lx-gray);
  line-height: 1.6;
}

/* Description */
.lx-pd-desc__body {
  line-height: 1.8;
  color: var(--lx-gray);
}

.lx-pd-desc__body img {
  border-radius: 20px;
  margin: 16px 0;
}

.lx-pd-desc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lx-pd-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lx-bg-light);
  font-size: 13px;
  font-weight: 500;
}

/* Specs accordion */
.lx-pd-specs__group {
  border: 1px solid var(--lx-border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.lx-pd-specs__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.lx-pd-specs__summary::-webkit-details-marker { display: none; }

.lx-pd-specs__summary i {
  transition: transform 0.25s ease;
  color: var(--lx-gray);
}

.lx-pd-specs__group[open] .lx-pd-specs__summary i {
  transform: rotate(180deg);
}

.lx-pd-specs__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  padding: 14px 22px;
  border-top: 1px solid var(--lx-border);
  font-size: 14px;
}

.lx-pd-specs__key { color: var(--lx-gray); }
.lx-pd-specs__val { font-weight: 500; }

/* In box */
.lx-pd-inbox__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.lx-pd-inbox__card {
  text-align: center;
  padding: 22px 12px;
  border-radius: 20px;
  border: 1px solid var(--lx-border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.lx-pd-inbox__card:hover { transform: translateY(-4px); }

.lx-pd-inbox__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  font-size: 1.1rem;
}

/* Special offer */
.lx-pd-offer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 28px;
  background: var(--lx-gradient);
  color: #fff;
  box-shadow: 0 28px 70px rgba(146, 32, 119, 0.25);
}

.lx-pd-offer__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lx-pd-offer__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.lx-pd-offer__sub {
  margin: 0 0 16px;
  opacity: 0.9;
}

.lx-pd-offer__gifts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lx-pd-offer__gifts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.lx-pd-offer__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.lx-pd-offer__countdown div {
  text-align: center;
  padding: 14px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.lx-pd-offer__countdown strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.lx-pd-offer__countdown span {
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
}

.lx-btn--light {
  background: #fff;
  color: var(--lx-primary);
  border: 0;
}

/* Reviews */
.lx-pd-reviews {
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--lx-border);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: var(--lx-shadow);
}

.lx-pd-reviews__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--lx-border);
}

.lx-pd-reviews__lead {
  margin: 10px 0 0;
  max-width: 48ch;
  color: var(--lx-gray);
  font-size: 14px;
  line-height: 1.7;
}

.lx-pd-reviews__scorecard {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--lx-border);
  box-shadow: var(--lx-shadow);
}

.lx-pd-reviews__score-main {
  text-align: center;
  min-width: 120px;
}

.lx-pd-reviews__score {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--lx-text);
}

.lx-pd-stars--lg {
  font-size: 16px;
  margin: 8px 0;
}

.lx-pd-reviews__count {
  display: block;
  font-size: 12px;
  color: var(--lx-gray);
  font-weight: 500;
}

.lx-pd-reviews__bars {
  display: grid;
  gap: 8px;
  min-width: 200px;
}

.lx-pd-reviews__bar-row {
  display: grid;
  grid-template-columns: 14px 14px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--lx-gray);
}

.lx-pd-reviews__bar-row i {
  color: #f59e0b;
  font-size: 10px;
}

.lx-pd-reviews__bar {
  height: 8px;
  border-radius: 999px;
  background: var(--lx-bg-light);
  overflow: hidden;
}

.lx-pd-reviews__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lx-gradient);
}

.lx-pd-review-form {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lx-pd-review-sidebar {
  position: sticky;
  top: 96px;
}

.lx-pd-review-write {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--lx-border);
  background: #fff;
  box-shadow: var(--lx-shadow);
}

.lx-pd-review-write__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.lx-pd-review-write__head > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lx-gradient-soft);
  color: var(--lx-primary);
  flex-shrink: 0;
}

.lx-pd-review-write__head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--lx-gray);
  line-height: 1.5;
}

.lx-pd-review-write__title {
  margin: 0;
  font-size: 1.05rem;
}

.lx-pd-review-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.lx-pd-review-feed__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.lx-pd-review-feed__head span {
  font-size: 12px;
  color: var(--lx-gray);
}

.lx-pd-review-cards {
  display: grid;
  gap: 14px;
}

.lx-pd-review-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--lx-border);
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lx-pd-review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lx-shadow-lg);
}

.lx-pd-review-card__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lx-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.lx-pd-review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
}

.lx-pd-review-card__verified {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--lx-secondary);
  font-weight: 500;
}

.lx-pd-review-card__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--lx-gray);
}

.lx-pd-review-empty {
  text-align: center;
  padding: 48px 24px;
  border-radius: 20px;
  border: 1px dashed var(--lx-border);
  background: #fff;
  color: var(--lx-gray);
}

.lx-pd-review-empty i {
  font-size: 2rem;
  color: var(--lx-primary);
  margin-bottom: 12px;
}

.lx-pd-review-empty p {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lx-text);
}

.lx-pd-review-field {
  margin-bottom: 14px;
}

.lx-pd-review-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.lx-pd-review-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

.lx-pd-review-stars label {
  cursor: pointer;
  color: #d1d5db;
  font-size: 1.25rem;
  margin: 0;
}

.lx-pd-review-stars input { display: none; }

.lx-pd-review-stars label:hover,
.lx-pd-review-stars label:hover ~ label,
.lx-pd-review-stars input:checked ~ label {
  color: #f59e0b;
}

.lx-pd-review-pagination {
  margin-top: 16px;
}

.lx-pd-review-pagination .pagination {
  justify-content: center;
}

/* FAQ */
.lx-pd-faq__item {
  border: 1px solid var(--lx-border);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.lx-pd-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.lx-pd-faq__q::-webkit-details-marker { display: none; }

.lx-pd-faq__a {
  padding: 0 22px 18px;
  color: var(--lx-gray);
  line-height: 1.7;
  font-size: 14px;
}

/* Sticky bar */
.lx-pd-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--lx-border);
  box-shadow: 0 -12px 40px rgba(17, 24, 39, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s var(--lx-ease);
}

.lx-pd-sticky.is-visible {
  transform: translateY(0);
}

.lx-pd-sticky[hidden] { display: block; }

.lx-pd-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.lx-pd-sticky__product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.lx-pd-sticky__thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--lx-bg-light);
  border: 1px solid var(--lx-border);
}

.lx-pd-sticky__name {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.lx-pd-sticky__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lx-primary);
}

.lx-pd-sticky__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.lx-pd-sticky__actions .lx-btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  white-space: nowrap;
}

.lx-pd-sticky__buy {
  color: var(--lx-primary) !important;
  border: 2px solid var(--lx-primary) !important;
  background: #fff;
}

.lx-pd-sticky__buy:hover {
  background: rgba(146, 32, 119, 0.08) !important;
  color: var(--lx-primary) !important;
  border-color: var(--lx-primary) !important;
}

.lx-pd-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--lx-border);
  box-shadow: 0 -8px 30px rgba(17, 24, 39, 0.12);
}

.lx-pd-mobile-bar .lx-btn { flex: 1; }

.lx-pd-mobile-bar__buy {
  color: var(--lx-primary) !important;
  border: 2px solid var(--lx-primary) !important;
  background: #fff;
  font-weight: 600;
}

.lx-pd-mobile-bar__buy:hover {
  background: rgba(146, 32, 119, 0.08) !important;
  color: var(--lx-primary) !important;
}

.lx-pd-sub-note.is-hidden { display: none; }

/* Responsive */
@media (max-width: 991px) {
  .lx-pd-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lx-pd-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-pd-inbox__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lx-pd-offer__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .lx-pd-reviews__header {
    grid-template-columns: 1fr;
  }

  .lx-pd-reviews__scorecard {
    flex-direction: column;
    align-items: stretch;
  }

  .lx-pd-review-form {
    grid-template-columns: 1fr;
  }

  .lx-pd-review-sidebar {
    position: static;
  }

  .lx-pd-reviews {
    padding: 28px 20px;
  }

  .lx-pd-sticky { display: none; }
  .lx-pd-mobile-bar { display: flex; }

  .lx-product-page { padding-bottom: 80px; }
}

@media (max-width: 575px) {
  .lx-pd-features__grid,
  .lx-pd-trust {
    grid-template-columns: 1fr;
  }

  .lx-pd-inbox__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-pd-specs__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
