/* Global helpers */
html, body { overflow-x: hidden; }

.site-back-to-product{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#111;
  font-weight:700;
  text-decoration:none;
  margin: 14px 0 18px 0;
}
.site-back-to-product:hover{ filter: brightness(.98); }

/* Store reply in reviews */
.store-reply{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(25, 83, 62, 0.06);
  border: 1px solid rgba(25, 83, 62, 0.15);
  font-size: 14px;
  line-height: 1.4;
}
.store-reply strong{ font-weight: 800; }

/* Reviews load-more spinner */
.reviews-load-more{
  position: relative;
}
.reviews-load-more .btn-spinner{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(246,184,0,.35); /* yellow base */
  border-top-color: #f6b800; /* yellow */
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  animation: siteSpin .8s linear infinite;
}
@keyframes siteSpin { to { transform: rotate(360deg); } }
