/* Single Product Page */

.bsp-sp {
  background: var(--bsp-sp-bg, #f9fafb);
  padding: 24px 20px 0;
}

.bsp-sp__container {
  max-width: 1320px;
  margin: 0 auto;
}

.bsp-sp__breadcrumbs {
  margin-bottom: 20px;
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 14px;
}

.bsp-sp__breadcrumbs a {
  color: var(--bsp-sp-text, #6b7280);
  text-decoration: none;
}

.bsp-sp__breadcrumbs a:hover {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__breadcrumb-sep {
  margin: 0 8px;
  color: #d1d5db;
}

.bsp-sp__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

/* Gallery */
.bsp-sp__gallery {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

@media (min-width: 992px) {
  .bsp-sp__gallery {
    position: sticky;
    top: 24px;
    align-self: start;
    z-index: 5;
  }

  body.admin-bar .bsp-sp__gallery {
    top: 56px;
  }

  body.bsp-sticky-header.bsp-header-stuck .bsp-sp__gallery {
    top: 156px;
  }

  body.admin-bar.bsp-sticky-header.bsp-header-stuck .bsp-sp__gallery {
    top: 188px;
  }
}

.bsp-sp__gallery:not(:has(.bsp-sp__thumbs)) {
  grid-template-columns: 1fr;
}

.bsp-sp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}

.bsp-sp__thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.bsp-sp__thumb.is-active {
  border-color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bsp-sp__thumbs-more {
  border: 1px dashed var(--bsp-sp-border, #e5e7eb);
  border-radius: 8px;
  background: #fff;
  color: var(--bsp-sp-muted, #9ca3af);
  height: 32px;
  cursor: default;
}

.bsp-sp__main-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bsp-sp-gallery-bg, #fdf2f6);
  aspect-ratio: 1 / 1;
}

.bsp-sp__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bsp-sp__zoom-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bsp-sp-title, #111827);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
}

.bsp-sp__zoom-btn:hover {
  color: var(--bsp-sp-accent, #f06292);
}

/* Summary */
.bsp-sp__brand {
  margin: 0 0 6px;
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bsp-sp__title {
  margin: 0 0 10px;
  color: var(--bsp-sp-title, #111827);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}

.bsp-sp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.bsp-sp__review-link {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 14px;
  text-decoration: none;
}

.bsp-sp__review-link:hover {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.bsp-sp__price {
  font-size: 30px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__price del {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 18px;
  font-weight: 500;
  margin-right: 8px;
}

.bsp-sp__price ins {
  text-decoration: none;
}

.bsp-sp__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.bsp-sp__stock.is-in-stock {
  color: #16a34a;
}

.bsp-sp__stock.is-out-of-stock {
  color: #dc2626;
}

.bsp-sp__description {
  margin-bottom: 18px;
  color: var(--bsp-sp-text, #6b7280);
  font-size: 15px;
  line-height: 1.65;
}

.bsp-sp__description p {
  margin: 0;
}

.bsp-sp__highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.bsp-sp__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.bsp-sp__highlights svg {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__option {
  margin-bottom: 18px;
}

.bsp-sp__option-label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bsp-sp__size-btn {
  min-width: 64px;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 8px;
  background: #fff;
  color: var(--bsp-sp-title, #111827);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.bsp-sp__size-btn.is-active {
  border-color: var(--bsp-sp-accent, #f06292);
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 18px;
}

.bsp-sp__qty-control {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1.5px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.bsp-sp__qty-btn {
  width: 44px;
  height: 52px;
  border: 0;
  background: #fff;
  color: var(--bsp-sp-title, #111827);
  font-size: 18px;
  cursor: pointer;
}

.bsp-sp__qty-btn:hover {
  background: #fdf2f6;
}

.bsp-sp__qty-input {
  width: 52px;
  height: 52px;
  border: 0;
  border-left: 1.5px solid var(--bsp-sp-border, #e5e7eb);
  border-right: 1.5px solid var(--bsp-sp-border, #e5e7eb);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.bsp-sp__qty-input::-webkit-outer-spin-button,
.bsp-sp__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.bsp-sp__purchase .bsp-sp__add-cart {
  flex: 1;
  min-width: 160px;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--bsp-sp-accent, #f06292);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bsp-sp__add-cart:hover:not(:disabled):not(.is-disabled) {
  background: var(--bsp-sp-accent-dark, #e91e63);
}

.bsp-sp__add-cart:disabled,
.bsp-sp__add-cart.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bsp-sp__purchase .bsp-sp__wishlist {
  width: 52px;
  min-height: 52px;
  flex-shrink: 0;
  border: 1.5px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 8px;
  background: #fff;
  color: var(--bsp-sp-text, #6b7280);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bsp-sp__wishlist.is-active,
.bsp-sp__wishlist:hover {
  border-color: var(--bsp-sp-accent, #f06292);
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__wishlist.is-active svg path {
  fill: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__viewing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #fbcfe8;
  border-radius: 10px;
  background: #fff5f9;
}

.bsp-sp__viewing p {
  margin: 0;
  color: #be185d;
  font-size: 14px;
  font-weight: 600;
}

/* Bought Together */
.bsp-sp__bought-together {
  margin-bottom: 18px;
  padding: 20px;
  border: 1.5px solid var(--bsp-bt-border, #f8bbd0);
  border-radius: 10px;
  background: var(--bsp-bt-bg, #fff5f9);
}

.bsp-sp__bt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.bsp-sp__bt-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bsp-bt-title, #111827);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.bsp-sp__bt-icon {
  flex-shrink: 0;
  color: var(--bsp-bt-accent, #f06292);
}

.bsp-sp__bt-totals {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px 8px;
  text-align: right;
}

.bsp-sp__bt-total-label {
  color: var(--bsp-sp-text, #6b7280);
  font-size: 13px;
  font-weight: 500;
}

.bsp-sp__bt-total-original {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 13px;
  text-decoration: line-through;
}

.bsp-sp__bt-total-original.is-hidden {
  display: none;
}

.bsp-sp__bt-total-sale {
  color: var(--bsp-bt-accent, #f06292);
  font-size: 18px;
  font-weight: 700;
}

.bsp-sp__bt-products {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
}

.bsp-sp__bt-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bsp-bt-accent, #f06292);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.bsp-sp__bt-item {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 10px;
  padding: 5px;
  border-radius: 8px;
  background: var(--bsp-bt-card, #f3f4f6);
}

.bsp-sp__bt-thumb {
  display: block;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.bsp-sp__bt-thumb .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-sp__bt-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.bsp-sp__bt-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--bsp-bt-title, #111827);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.bsp-sp__bt-name:hover {
  color: var(--bsp-bt-accent, #f06292);
}

.bsp-sp__bt-size {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 12px;
}

.bsp-sp__bt-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  cursor: pointer;
}

.bsp-sp__bt-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bsp-sp__bt-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--bsp-bt-accent, #f06292);
  border-radius: 3px;
  background: #fff;
}

.bsp-sp__bt-check input:checked + .bsp-sp__bt-checkmark {
  background: var(--bsp-bt-accent, #f06292);
}

.bsp-sp__bt-check input:checked + .bsp-sp__bt-checkmark::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.bsp-sp__bt-price {
  color: var(--bsp-bt-title, #111827);
  font-size: 12px;
  font-weight: 700;
}

.bsp-sp__bt-add-all {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--bsp-bt-accent, #f06292);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.bsp-sp__bt-add-all:hover:not(:disabled) {
  background: var(--bsp-sp-accent-dark, #e91e63);
}

.bsp-sp__bt-add-all:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Multi Buy Discount */
.bsp-sp__multi-buy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.bsp-sp__mbd-tier {
  position: relative;
  display: block;
  cursor: pointer;
}

@media (min-width: 992px) {
  .bsp-sp__multi-buy {
    display: grid;
    gap: 8px;
  }

  .bsp-sp__mbd-tier {
    width: 100%;
  }
}

.bsp-sp__mbd-tier-body {
  display: block;
  border: 1px solid var(--bsp-mbd-border, #f8bbd0);
  border-radius: 8px;
  background: var(--bsp-mbd-bg, #fff5f9);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bsp-sp__mbd-tier.is-selected .bsp-sp__mbd-tier-body,
.bsp-sp__mbd-tier:has(.bsp-js-mbd-tier:checked) .bsp-sp__mbd-tier-body {
  border-color: var(--bsp-mbd-accent, #f06292);
  box-shadow: 0 0 0 1px var(--bsp-mbd-accent, #f06292);
}

.bsp-sp__mbd-tier.is-popular .bsp-sp__mbd-tier-body {
  border-width: 1.5px;
}

.bsp-sp__mbd-popular {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 2px 8px;
  border-radius: 0 6px 0 8px;
  background: var(--bsp-mbd-popular, #e53935);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bsp-sp__mbd-tier-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
}

.bsp-sp__mbd-tier.is-popular .bsp-sp__mbd-tier-main {
  padding: 16px 12px;
}

.bsp-sp__mbd-left {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0;
}

.bsp-sp__mbd-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 1.5px solid var(--bsp-mbd-accent, #f06292);
  border-radius: 50%;
  background: #fff;
}

.bsp-sp__mbd-tier:has(.bsp-js-mbd-tier:checked) .bsp-sp__mbd-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bsp-mbd-accent, #f06292);
}

.bsp-sp__mbd-label {
  color: var(--bsp-sp-title, #111827);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-sp__mbd-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--bsp-mbd-badge-bg, #fff3e0);
  color: var(--bsp-mbd-badge-text, #f57c00);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-sp__mbd-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
  text-align: right;
}

.bsp-sp__mbd-price {
  color: var(--bsp-sp-title, #111827);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-sp__mbd-price .woocommerce-Price-amount {
  font-size: inherit;
}

.bsp-sp__mbd-regular {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 11px;
  line-height: 1.2;
  text-decoration: line-through;
}

.bsp-sp__mbd-regular .woocommerce-Price-amount {
  font-size: inherit;
}

.bsp-sp__mbd-gift {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bsp-mbd-gift-bg, #f06292);
  color: #fff;
}

.bsp-sp__mbd-gift-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-sp__mbd-gift-left svg {
  width: 13px;
  height: 13px;
}

.bsp-sp__mbd-gift-value {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-sp__mbd-gift-value .woocommerce-Price-amount {
  font-size: inherit;
}

.bsp-sp__purchase--has-mbd .bsp-sp__qty-control {
  display: none;
}

.bsp-sp__purchase--has-mbd > .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Trust badges */
.bsp-sp__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
  padding: 22px 24px;
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 14px;
  background: var(--bsp-sp-card, #fff);
}

.bsp-sp__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bsp-sp__trust-icon {
  color: var(--bsp-sp-accent, #f06292);
  flex-shrink: 0;
}

.bsp-sp__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--bsp-sp-text, #6b7280);
}

.bsp-sp__trust-text strong {
  color: var(--bsp-sp-title, #111827);
  font-size: 13px;
}

/* Lower: tabs + related */
.bsp-sp__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
}

.bsp-sp__lower--tabs-only {
  grid-template-columns: 1fr;
}

.bsp-sp__tabs {
  background: var(--bsp-sp-card, #fff);
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
}

.bsp-sp__tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--bsp-sp-border, #e5e7eb);
  overflow-x: auto;
}

.bsp-sp__tab-btn {
  border: 0;
  background: transparent;
  color: var(--bsp-sp-text, #6b7280);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.bsp-sp__tab-btn.is-active {
  color: var(--bsp-sp-accent, #f06292);
  border-bottom-color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__tab-panels {
  padding: 24px;
}

.bsp-sp__tab-panel {
  color: var(--bsp-sp-text, #6b7280);
  font-size: 15px;
  line-height: 1.7;
}

.bsp-sp__tab-panel[hidden] {
  display: none;
}

.bsp-sp__benefit-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bsp-sp__benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 500;
}

.bsp-sp__steps-list,
.bsp-sp__shipping-list {
  margin: 0;
  padding-left: 20px;
}

.bsp-sp__steps-list li,
.bsp-sp__shipping-list li {
  margin-bottom: 8px;
}

/* Related */
.bsp-sp__related {
  background: var(--bsp-sp-card, #fff);
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 14px;
  padding: 20px 18px;
}

.bsp-sp__related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.bsp-sp__related-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__related-nav {
  display: flex;
  gap: 8px;
}

.bsp-sp__related-arrow,
.bsp-sp__reviews-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 50%;
  background: #fff;
  color: var(--bsp-sp-accent, #f06292);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bsp-sp__related-viewport,
.bsp-sp__reviews-viewport {
  overflow: hidden;
}

.bsp-sp__related-track,
.bsp-sp__reviews-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
}

.bsp-sp__related-card {
  flex: 0 0 calc(50% - 7px);
  min-width: 0;
}

.bsp-sp__related-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}

.bsp-sp__related-image .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-sp__related-name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.bsp-sp__related-name a {
  color: var(--bsp-sp-title, #111827);
  text-decoration: none;
}

.bsp-sp__related-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
  margin-bottom: 4px;
}

.bsp-sp__related-stars svg {
  color: #e5e7eb;
}

.bsp-sp__related-stars svg.is-filled {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__related-review-count {
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 12px;
}

/* Reviews section */
.bsp-sp__reviews {
  background: var(--bsp-sp-card, #fff);
  padding: 40px 20px 48px;
  margin-bottom: 0;
}

.bsp-sp__reviews-container,
.bsp-sp__newsletter-container {
  max-width: 1320px;
  margin: 0 auto;
}

.bsp-sp__reviews-title {
  margin: 0 0 24px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__reviews-summary {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.bsp-sp__reviews-score-stars svg {
  color: #e5e7eb;
}

.bsp-sp__reviews-score-stars svg.is-filled {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__reviews-average {
  margin: 8px 0 4px;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__reviews-based {
  margin: 0;
  color: var(--bsp-sp-muted, #9ca3af);
  font-size: 13px;
}

.bsp-sp__reviews-bar-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--bsp-sp-text, #6b7280);
}

.bsp-sp__reviews-bar-track {
  height: 8px;
  border-radius: 999px;
  background: #f3f4f6;
  overflow: hidden;
}

.bsp-sp__reviews-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__reviews-write {
  border: 1.5px solid var(--bsp-sp-accent, #f06292);
  border-radius: 8px;
  background: #fff;
  color: var(--bsp-sp-accent, #f06292);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 18px;
  cursor: pointer;
  white-space: nowrap;
}

.bsp-sp__reviews-write:hover {
  background: #fff5f9;
}

.bsp-sp__reviews-slider {
  position: relative;
  padding: 0 44px;
}

.bsp-sp__reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.bsp-sp__reviews-arrow--prev {
  left: 0;
}

.bsp-sp__reviews-arrow--next {
  right: 0;
}

.bsp-sp__review-card {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 280px;
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.bsp-sp__review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.bsp-sp__review-card-stars svg {
  color: #e5e7eb;
}

.bsp-sp__review-card-stars svg.is-filled {
  color: var(--bsp-sp-accent, #f06292);
}

.bsp-sp__review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
}

.bsp-sp__review-card-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__review-card-body {
  color: var(--bsp-sp-text, #6b7280);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.bsp-sp__review-card-body p {
  margin: 0;
}

.bsp-sp__review-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bsp-sp__review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.bsp-sp__review-author {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__review-date {
  margin: 0;
  font-size: 12px;
  color: var(--bsp-sp-muted, #9ca3af);
}

/* Newsletter */
.bsp-sp__newsletter {
  padding: 0 20px 40px;
  background: var(--bsp-sp-bg, #f9fafb);
}

.bsp-sp__newsletter-container {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f9 0%, #fff 55%);
  border: 1px solid #fbcfe8;
}

.bsp-sp__newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.bsp-sp__newsletter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.bsp-sp__newsletter-media--placeholder {
  min-height: 280px;
  background: linear-gradient(135deg, #fce7f3, #fdf2f6);
}

.bsp-sp__newsletter-content {
  padding: 32px 36px;
}

.bsp-sp__newsletter-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__newsletter-subtitle {
  margin: 0 0 20px;
  color: var(--bsp-sp-text, #6b7280);
}

.bsp-sp__newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.bsp-sp__newsletter-form input[type="email"] {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--bsp-sp-border, #e5e7eb);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
}

.bsp-sp__newsletter-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--bsp-sp-accent, #f06292);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 22px;
  cursor: pointer;
}

.bsp-sp__newsletter-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.bsp-sp__newsletter-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bsp-sp-text, #6b7280);
  font-size: 13px;
  font-weight: 500;
}

.bsp-sp__newsletter-feature-icon {
  color: var(--bsp-sp-accent, #f06292);
}

/* Zoom overlay */
.bsp-sp__zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 100080;
  background: rgba(17, 24, 39, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bsp-sp__zoom-overlay img {
  max-width: min(92vw, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.bsp-sp__zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* WooCommerce review form in tab */
.bsp-sp__tab-panel--reviews #review_form_wrapper {
  margin-top: 0;
}

.bsp-sp__tab-panel--reviews .comment-form-rating label,
.bsp-sp__tab-panel--reviews .comment-form-comment label {
  font-weight: 600;
  color: var(--bsp-sp-title, #111827);
}

.bsp-sp__tab-panel--reviews #respond .form-submit input {
  background: var(--bsp-sp-accent, #f06292);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
}

@media (max-width: 1199px) {
  .bsp-sp__lower {
    grid-template-columns: 1fr;
  }

  .bsp-sp__review-card {
    flex: 0 0 calc(50% - 7px);
  }
}

@media (max-width: 991px) {
  .bsp-sp__hero {
    grid-template-columns: 1fr;
  }

  .bsp-sp__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-sp__reviews-summary {
    grid-template-columns: 1fr;
  }

  .bsp-sp__newsletter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bsp-sp__bt-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bsp-sp__bt-totals {
    justify-content: flex-start;
    text-align: left;
  }

  .bsp-sp__bt-products {
    flex-direction: column;
    align-items: stretch;
  }

  .bsp-sp__bt-plus {
    align-self: center;
  }

  .bsp-sp__mbd-tier-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .bsp-sp__mbd-prices {
    align-items: flex-start;
    text-align: left;
  }

  .bsp-sp {
    padding-top: 16px;
  }

  .bsp-sp__gallery {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .bsp-sp__trust {
    grid-template-columns: 1fr;
  }

  .bsp-sp__related-card,
  .bsp-sp__review-card {
    flex: 0 0 78%;
  }

  .bsp-sp__newsletter-form {
    flex-direction: column;
  }

  .bsp-sp__reviews-slider {
    padding: 0 36px;
  }
}
