/* Load More Button */
.crn-load-btn {
    margin-top: 20px;
    padding: 10px 22px;
    background: #173f64;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* Modal Backdrop */
.reviews-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Box */
.reviews-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 10px;
    position: relative;
}

/* Close Button */
.reviews-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Review Card Inside Modal */
.modal-review {
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

.modal-review:last-child {
    border-bottom: none;
}

.modal-review-name {
    font-weight: 600;
}

.modal-review-date {
    font-size: 13px;
    color: #6b7280;
}

.modal-review-text {
    margin: 8px 0;
}

.modal-review-stars {
    color: #f59e0b;
}


.load-more-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  background: #03b9e2;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.load-more-btn:hover {
  background: #174064;
}
