/* SPINEXA — zobrazení hodnocení obchodu v hlavičce produktu */
.spx-store-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  min-height: 42px;
  margin: 10px 0 18px;
  padding: 9px 15px;
  border: 1px solid #e3e8ec;
  border-radius: 999px;
  background: #fff;
  color: #10283f !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(16, 40, 63, 0.05);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.spx-store-rating:hover {
  border-color: #cfb17a;
  box-shadow: 0 9px 24px rgba(16, 40, 63, 0.09);
  transform: translateY(-1px);
}

.spx-store-rating__stars {
  display: inline-flex;
  gap: 2px;
  color: #c99a42;
  font-size: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.spx-store-rating__summary {
  color: #10283f !important;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.spx-store-rating__label {
  color: #6b7883 !important;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Skryje pouze nativní nulové hodnocení produktu. Skutečné produktové recenze zůstávají viditelné. */
.spx-product-rating-empty-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .spx-store-rating {
    gap: 7px;
    margin-top: 8px;
    padding: 9px 13px;
  }

  .spx-store-rating__stars {
    font-size: 16px;
  }

  .spx-store-rating__summary,
  .spx-store-rating__label {
    font-size: 12px;
  }
}
