/* ======================================================
   POPSHOP™ REVIEWS RUNTIME — STYLES
   File: shop/reviews-runtime.css
   Pass: PASS 10 — PS-4011
====================================================== */

/* ── Submit form ─────────────────────────────────────── */
.psrev-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0 8px;
}

/* ── Star selector ────────────────────────────────────── */
.psrev-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.psrev-star {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  line-height: 1;
  padding: 2px;
  transition: color 0.12s, transform 0.1s;
}
.psrev-star.filled { color: #f59e0b; }
.psrev-star:hover  { transform: scale(1.15); }

.psrev-rating-label {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: -4px;
}

/* ── Fields ──────────────────────────────────────────── */
.psrev-field { display: flex; flex-direction: column; gap: 4px; }
.psrev-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.psrev-opt { font-weight: 400; color: #aaa; text-transform: none; }
.psrev-input,
.psrev-textarea {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
}
.psrev-input:focus,
.psrev-textarea:focus { border-color: var(--ps-primary, #7c3aed); }

.psrev-char-count {
  text-align: right;
  font-size: 11px;
  color: #bbb;
  margin-top: -8px;
}

.psrev-submit-btn {
  padding: 11px;
  border-radius: 8px;
  background: var(--ps-primary, #7c3aed);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.psrev-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Inline rating summary ────────────────────────────── */
.psrev-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.psrev-avg-stars { display: flex; gap: 2px; }
.psrev-s         { font-size: 16px; color: #ccc; }
.psrev-s.filled  { color: #f59e0b; }
.psrev-s.half    { color: #f59e0b; opacity: 0.55; }

.psrev-avg-num {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.psrev-count {
  font-size: 12px;
  color: #888;
}

.psrev-write-btn {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f0ebff;
  color: var(--ps-primary, #7c3aed);
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.psrev-write-btn:hover { background: #e0d5ff; }

.psrev-na   { color: #ccc; font-size: 13px; }
.psrev-none { gap: 0; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 480px) {
  .psrev-star { font-size: 28px; }
}
