/* ============================================================
   CUSTOMER REVIEWS SECTION
   Append inside the <style> block in buy-instagram-followers.php
   ============================================================ */
.reviews-section { background: var(--snow); }
.reviews-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }

.review-form-card {
  background: var(--white); border: 1.5px solid var(--ghost);
  border-radius: var(--r-xl); padding: 26px;
  box-shadow: var(--shadow-md);
}
.review-form-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 18px; }
.rf-field { margin-bottom: 14px; }
.rf-field label { font-size: 12px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 6px; }
.rf-field input, .rf-field textarea {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--ghost);
  border-radius: var(--r-sm); font-size: 13.5px; font-family: inherit;
  color: var(--ink); background: var(--snow); transition: border-color var(--t);
  resize: vertical;
}
.rf-field input:focus, .rf-field textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.rf-field textarea { min-height: 100px; }

.rf-stars { display: flex; gap: 6px; }
.rf-star {
  font-size: 26px; line-height: 1; cursor: pointer; color: var(--ghost);
  transition: color var(--t), transform var(--t);
  background: none; border: none; padding: 0;
}
.rf-star:hover, .rf-star.active { color: #F59E0B; transform: scale(1.08); }

.rf-submit {
  width: 100%; padding: 12px; border: none; border-radius: var(--r-sm);
  background: #5046E5;
  color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: all var(--t) var(--ease);
}
.rf-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(234,88,12,0.35); }
.rf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.rf-msg { margin-top: 12px; font-size: 12.5px; font-weight: 600; border-radius: var(--r-sm); padding: 10px 12px; display: none; }
.rf-msg.show { display: block; }
.rf-msg.ok { background: var(--emerald-light); color: #065F46; }
.rf-msg.err { background: #FEE2E2; color: #991B1B; }

.reviews-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.reviews-summary-score { font-size: 34px; font-weight: 800; color: var(--ink); font-family: 'Fraunces', serif; line-height: 1; }
.reviews-summary-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.reviews-summary-count { font-size: 12.5px; color: var(--muted); }

.review-card {
  background: var(--white); border: 1px solid var(--ghost); border-radius: var(--r-md);
  padding: 16px 18px; margin-bottom: 12px; transition: border-color var(--t);
}
.review-card:hover { border-color: rgba(80,70,229,0.2); }
.review-card.hidden-review { display: none; }
.review-stars-row { color: #F59E0B; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 8px; }
.review-text { font-size: 13.5px; color: var(--slate); line-height: 1.65; margin-bottom: 10px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); }
.review-name { font-weight: 700; color: var(--ink); }

.reviews-show-all {
  display: block; width: 100%; text-align: center; padding: 11px;
  border-radius: var(--r-full); background: var(--ghost); color: var(--slate);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--t);
}
.reviews-show-all:hover { background: var(--primary-light); color: var(--primary); }

@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; }
}
