/* ════════════════════════════════════════════════════════
   GOKO Reviews Module — ReviewGuru-inspired
   ════════════════════════════════════════════════════════ */

/* ─── Star Ratings ─────────────────────────────────────── */
.goko-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.goko-star {
  font-size: 1.1rem;
  line-height: 1;
}
.goko-star-sm .goko-star {
  font-size: 0.9rem;
}
.goko-star-lg .goko-star {
  font-size: 1.6rem;
}
.goko-star-filled {
  color: #f59e0b;
}
.goko-star-half {
  color: #f59e0b;
  position: relative;
  display: inline-block;
}
.goko-star-empty {
  color: #d1d5db;
}

/* ─── Star Input (for form) ─────────────────────────────── */
.goko-star-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}
.goko-star-input input {
  display: none;
}
.goko-star-input label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}
.goko-star-input label:hover,
.goko-star-input label:hover ~ label,
.goko-star-input input:checked ~ label {
  color: #f59e0b;
}

/* ─── Rating Big Display ────────────────────────────────── */
.goko-rating-big {
  line-height: 1.2;
}

/* Rating bars */
.goko-rating-bar-bg {
  max-width: 200px;
}
.goko-rating-bar-fill {
  transition: width 0.4s ease;
}

/* ─── Review Items ──────────────────────────────────────── */
.goko-review-item:last-child {
  border-bottom: none !important;
}
.goko-review-text {
  line-height: 1.6;
  word-wrap: break-word;
}

/* ─── Review Avatar ─────────────────────────────────────── */
.goko-review-avatar {
  flex-shrink: 0;
}

/* ─── Business Reply ────────────────────────────────────── */
.goko-business-reply {
  font-size: 0.9rem;
}

/* ─── Helpful Button ────────────────────────────────────── */
.goko-helpful-btn {
  transition: all 0.2s;
}
.goko-helpful-btn.btn-success {
  background: #059669 !important;
  border-color: #059669 !important;
}

/* ─── Review Form ───────────────────────────────────────── */
.goko-review-form-wrapper {
  scroll-margin-top: 90px;
}
.goko-review-form .form-control:focus {
  border-color: var(--goko-primary);
  box-shadow: 0 0 0 0.2rem rgba(210, 71, 38, 0.15);
}

/* ─── Top Rated Cards ───────────────────────────────────── */
.goko-top-rated-section .card {
  transition: transform 0.15s, box-shadow 0.15s;
}
.goko-top-rated-section .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .goko-star-input label {
    font-size: 1.6rem;
  }
  .goko-rating-big .display-3 {
    font-size: 2.5rem;
  }
  .goko-rating-big .display-4 {
    font-size: 2rem;
  }
}
