/* File: /wp-content/themes/pandora-custom/assets/css/09-ratings.css */
/* Ratings / Recensioni */

.pandora-review-form-container{
  background: #110924;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #8300fe;
  margin-bottom: 20px;
  color: #fff;
}
.pandora-criteria-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pandora-rate-group{
  display: inline-flex;
  direction: rtl;
  font-size: 22px;
}
.pandora-rate-group input{
  display: none;
}
.pandora-rate-group label{
  cursor: pointer;
  color: #444;
  transition: color .2s;
  padding: 0 2px;
}
.pandora-rate-group label:before{
  content: '★';
}
.pandora-rate-group input:checked ~ label,
.pandora-rate-group label:hover,
.pandora-rate-group label:hover ~ label{
  color: #ffb400;
}

.pandora-text-field-row{
  margin-top: 15px;
}
.pandora-text-field-row input,
.pandora-text-field-row textarea{
  width: 100%;
  background: #05020a;
  border: 1px solid #8300fe;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

.pandora-pro-contra{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.pandora-stars-display{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(131,0,254,0.1);
  border-radius: 8px;
  width: fit-content;
}
.pandora-stars-filled{
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
}

.comment-review-details{
  margin-top: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid #ffb400;
  border-radius: 4px;
}
.comment-review-title{
  font-weight: bold;
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 5px;
}
.badge-pro{
  color: #2ecc71;
  font-weight: bold;
}
.badge-contra{
  color: #e74c3c;
  font-weight: bold;
}
