.product-page {
  padding-bottom: 48px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 300px;
  gap: 32px;
  margin-bottom: 32px;
}

.product-gallery {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.product-gallery__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.product-gallery__thumbs-viewport {
  height: 288px;
  overflow: hidden;
  width: 64px;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s ease;
}

.product-gallery__nav {
  width: 32px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  background: var(--color-bg-gray);
  flex-shrink: 0;
}

.product-gallery__nav:hover:not(:disabled) {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.product-gallery__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-gallery__thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--color-bg-card);
}

.product-gallery__thumb--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__main {
  flex: 1;
  position: relative;
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  cursor: zoom-in;
  width: 100%;
  text-align: left;
}

.product-gallery__main:hover .product-gallery__zoom {
  opacity: 1;
}

.product-gallery__main img {
  max-height: 360px;
  object-fit: contain;
  pointer-events: none;
}

.product-gallery__zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.product-gallery__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  pointer-events: none;
}

/* —— Полноэкранная галерея —— */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  background: rgba(17, 17, 17, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.product-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #fff;
  flex-shrink: 0;
}

.product-lightbox__counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.product-lightbox__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.product-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 0 64px;
  cursor: zoom-out;
}

.product-lightbox__img {
  cursor: default;
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
}

.product-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.product-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.product-lightbox__arrow--prev {
  left: 16px;
}

.product-lightbox__arrow--next {
  right: 16px;
}

.product-lightbox__thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 24px 24px;
  overflow-x: auto;
  flex-shrink: 0;
}

.product-lightbox__thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.6;
  cursor: pointer;
}

.product-lightbox__thumb--active {
  border-color: var(--color-primary);
  opacity: 1;
}

.product-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.product-lightbox-open {
  overflow: hidden;
}

.product-info__badge {
  margin-bottom: 8px;
}

.product-info__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.product-info__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.product-info__meta-link,
.product-info__link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-primary);
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
}

.product-info__meta a:hover,
.product-info__meta-link:hover,
.product-info__link:hover {
  text-decoration: underline;
}

.product-info__rating-value {
  font-weight: 600;
  color: var(--color-text);
}

.product-info__code {
  margin-left: auto;
  color: var(--color-text-muted);
}

.product-questions__empty {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.product-question-form {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
}

.product-question-form__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.product-question-form__field {
  display: block;
  margin-bottom: 14px;
}

.product-question-form__field > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}

.product-question-form__field .input {
  width: 100%;
}

.product-question-form__error {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--color-danger);
}

.product-question__pending {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

.product-questions__list {
  display: flex;
  flex-direction: column;
}

.product-question-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-question-modal[hidden] {
  display: none !important;
}

.product-question-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.product-question-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.product-question-modal__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.product-question-modal__text {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.product-option {
  margin-bottom: 20px;
}

.product-option__label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-option__label span {
  font-weight: 400;
  color: var(--color-text-muted);
}

.product-colors {
  display: flex;
  gap: 8px;
}

.product-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.product-color:hover {
  border-color: var(--color-text-muted);
}

.product-color--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-primary);
}

.product-memory {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-memory__btn {
  padding: 10px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  background: var(--color-bg-card);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.product-memory__btn:hover:not(:disabled) {
  border-color: var(--color-primary);
}

.product-memory__btn--active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.product-specs {
  margin-top: 24px;
}

.product-specs__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.product-specs__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.product-specs__label {
  color: var(--color-text-muted);
}

.product-specs__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
}

.product-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  background: var(--color-bg-gray);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--color-text-secondary);
}

.product-buy {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 16px;
}

.product-buy__price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}

.product-buy__old {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-buy__old-price {
  font-size: 16px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-buy__bonus {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.product-buy__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-buy__delivery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.product-buy__delivery-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.product-buy__delivery-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-buy__delivery-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.product-buy__delivery-text {
  color: var(--color-text-muted);
  font-size: 12px;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 32px;
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.product-trust__icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.product-tabs__item {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  white-space: nowrap;
}

.product-tabs__item:hover {
  color: var(--color-primary);
}

.product-tabs__item--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.product-tabs__count {
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-tabs__item--active .product-tabs__count {
  color: var(--color-primary);
  opacity: 0.8;
}

.product-tab-panels {
  margin-bottom: 48px;
}

.product-tab-panel[hidden] {
  display: none;
}

/* WooCommerce tabs → product-tabs layout */
.gostore-single-product .woocommerce-tabs {
  margin-top: 0;
}

.gostore-single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.gostore-single-product .woocommerce-tabs ul.tabs::before,
.gostore-single-product .woocommerce-tabs ul.tabs::after {
  display: none;
  content: none;
}

.gostore-single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  float: none;
}

.gostore-single-product .woocommerce-tabs ul.tabs li::before,
.gostore-single-product .woocommerce-tabs ul.tabs li::after {
  display: none;
  content: none;
}

.gostore-single-product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}

.gostore-single-product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--color-primary);
}

.gostore-single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.gostore-single-product .product-tab-panels {
  margin-bottom: 48px;
}

.gostore-single-product .woocommerce-Tabs-panel {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.gostore-single-product .woocommerce-Tabs-panel--description {
  color: var(--color-text-secondary);
}

.gostore-single-product .woocommerce-Tabs-panel--description > h2 {
  display: none;
}

.gostore-single-product .woocommerce-Tabs-panel--description p {
  margin-bottom: 16px;
}

.gostore-single-product .woocommerce-Tabs-panel--description ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.gostore-single-product .woocommerce-Tabs-panel--description ul li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 8px;
}

/* Характеристики (additional_information) */
.gostore-single-product .woocommerce-Tabs-panel--additional_information > h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--color-text);
}

.gostore-single-product .woocommerce-product-attributes.shop_attributes {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  width: 100%;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: separate;
  margin: 0;
}

.gostore-single-product .woocommerce-product-attributes.shop_attributes th,
.gostore-single-product .woocommerce-product-attributes.shop_attributes td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

.gostore-single-product .woocommerce-product-attributes.shop_attributes th {
  background: var(--color-bg-gray);
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: left;
  width: auto;
}

.gostore-single-product .woocommerce-product-attributes.shop_attributes td {
  color: var(--color-text);
  background: #fff;
}

.gostore-single-product .woocommerce-product-attributes.shop_attributes tr:last-child th,
.gostore-single-product .woocommerce-product-attributes.shop_attributes tr:last-child td {
  border-bottom: none;
}

/* Отзывы */
.gostore-single-product #reviews.woocommerce-Reviews {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.gostore-single-product #reviews .product-reviews-page__summary {
  grid-column: 1;
  grid-row: 1;
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.gostore-single-product #reviews .product-reviews-page__list,
.gostore-single-product #reviews #comments {
  grid-column: 2;
  grid-row: 1;
}

.gostore-single-product #reviews .woocommerce-Reviews-title {
  grid-column: 1 / -1;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
}

.gostore-single-product #reviews #review_form_wrapper {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.gostore-single-product #reviews .woocommerce-noreviews {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.gostore-single-product #reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gostore-single-product #reviews .commentlist .comment {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 12px;
}

.gostore-single-product #reviews .commentlist .comment .comment-text {
  margin: 0;
}

.gostore-single-product #reviews .commentlist .meta {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.gostore-single-product #reviews .commentlist .meta strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.gostore-single-product #reviews .commentlist .description p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.gostore-single-product #reviews .star-rating {
  margin-bottom: 8px;
}

.gostore-single-product #review_form #respond .comment-reply-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text);
}

.gostore-single-product #review_form #respond .comment-reply-title small {
  font-size: 13px;
  font-weight: 400;
}

.gostore-single-product #review_form .comment-form {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.gostore-single-product #review_form .comment-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.gostore-single-product #review_form .comment-form .required {
  color: var(--color-primary);
}

.gostore-single-product #review_form .comment-form textarea,
.gostore-single-product #review_form .comment-form input[type="text"],
.gostore-single-product #review_form .comment-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.gostore-single-product #review_form .comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.gostore-single-product #review_form .comment-form textarea:focus,
.gostore-single-product #review_form .comment-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.12);
}

.gostore-single-product #review_form .comment-form-rating {
  margin: 0;
}

.gostore-single-product #review_form .comment-form-rating select {
  width: 100%;
  max-width: 280px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.gostore-single-product #review_form p.stars {
  margin: 0;
  line-height: 1;
}

.gostore-single-product #review_form p.stars a {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 2px;
  text-indent: -9999px;
  overflow: hidden;
  color: transparent;
}

.gostore-single-product #review_form p.stars a::before {
  content: "★";
  position: absolute;
  inset: 0;
  text-indent: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--color-border);
  transition: color var(--transition), transform var(--transition);
}

.gostore-single-product #review_form p.stars:hover a::before,
.gostore-single-product #review_form p.stars.selected a.active::before,
.gostore-single-product #review_form p.stars.selected a::before {
  color: #f59e0b;
}

.gostore-single-product #review_form p.stars:hover a:hover ~ a::before,
.gostore-single-product #review_form p.stars.selected a.active ~ a::before {
  color: var(--color-border);
}

.gostore-single-product #review_form p.stars:hover a::before {
  color: #f59e0b;
}

.gostore-single-product #review_form .form-submit {
  margin: 0;
}

.gostore-single-product #review_form .comment-form-author,
.gostore-single-product #review_form .comment-form-email {
  margin: 0;
}

.gostore-single-product #review_form .comment-form-cookies-consent {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.gostore-single-product #review_form .comment-form-cookies-consent label {
  display: inline;
  font-weight: 400;
}

.gostore-single-product #review_form .form-submit input[type="submit"],
.gostore-single-product #review_form .form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.gostore-single-product #review_form .form-submit input[type="submit"]:hover,
.gostore-single-product #review_form .form-submit button:hover {
  background: var(--color-primary-hover, #c41920);
}

.gostore-single-product .star-rating {
  overflow: hidden;
  position: relative;
  height: 1.2em;
  line-height: 1.2;
  font-size: 14px;
  width: 5.6em;
  font-family: Arial, sans-serif;
}

.gostore-single-product .star-rating::before {
  content: "★★★★★";
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  color: var(--color-border);
  letter-spacing: 0.08em;
}

.gostore-single-product .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.gostore-single-product .star-rating span::before {
  content: "★★★★★";
  top: 0;
  position: absolute;
  left: 0;
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.product-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.product-desc__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-desc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.product-desc__list li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 8px;
}

.product-reviews-summary {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.product-reviews-summary__score {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.product-reviews-summary__bars {
  margin: 16px 0;
}

.product-reviews-summary__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 4px;
}

.product-reviews-summary__bar-fill {
  flex: 1;
  height: 6px;
  background: var(--color-border-light);
  border-radius: 3px;
  overflow: hidden;
}

.product-reviews-summary__bar-fill span {
  display: block;
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}

.product-review-card {
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
}

.product-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.product-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.product-review-card__name {
  font-weight: 600;
  font-size: 13px;
}

.product-review-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.product-recommend {
  margin-bottom: 48px;
}

.product-recommend__slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* —— Вкладка «Характеристики» —— */
.product-specs-full__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.product-specs-full__group {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-specs-full__group dt,
.product-specs-full__group dd {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
}

.product-specs-full__group dt {
  background: var(--color-bg-gray);
  color: var(--color-text-muted);
  font-weight: 500;
}

.product-specs-full__group dd {
  margin: 0;
  color: var(--color-text);
}

.product-specs-full__group dt:last-of-type,
.product-specs-full__group dd:last-of-type {
  border-bottom: none;
}

/* —— Вкладка «Отзывы» —— */
.product-reviews-page {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.product-reviews-page__summary {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.product-reviews-page__count {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 8px 0 16px;
}

.product-review-card--full {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 12px;
}

.product-review-card--full p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 8px;
}

/* —— Вкладка «Вопросы» —— */
.product-questions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-questions__count {
  font-size: 16px;
  font-weight: 600;
}

.product-question {
  padding: 20px 0;
  border-top: 1px solid var(--color-border-light);
}

.product-question:first-of-type {
  border-top: none;
  padding-top: 0;
}

.product-question__author {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.product-question__text {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-question__answer {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding: 16px;
  background: var(--color-bg-gray);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.product-question__answer strong {
  color: var(--color-text);
}

/* —— Вкладка «Аксессуары» —— */
.product-accessories__lead {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

/* —— Вкладка «Наличие в магазинах» —— */
.product-stores__lead {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.product-store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.product-store__name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-store__address,
.product-store__hours {
  font-size: 13px;
  color: var(--color-text-muted);
}

.product-store__status {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.product-store__status--in {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.product-store__status--low {
  background: #FFF7ED;
  color: #EA580C;
}

.product-store__status--out {
  background: var(--color-bg-gray);
  color: var(--color-text-muted);
}
