/* ===========================
   TWINGITAL REVIEWS STYLES
   =========================== */

.twingital-reviews-section {
  max-width: 800px;
    
    margin: 40px auto;
    padding: 30px;
    background: #c0bebe;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    font-family: Arial, sans-serif;
    border-color: #005177;
    border-width: 2px;
    margin-bottom: 20px;
}

/* ----- Lista de reseñas ----- */
.twingital-reviews-list h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 1.3em;
}

.twingital-review {
  background: #fff;
  padding: 15px 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.twingital-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.review-stars {
  color: #ffb400;
  font-size: 1.1em;
}

.review-date {
  color: #888;
  font-size: 0.9em;
}

/* ----- Formulario ----- */
.twingital-review-form {
  margin-top: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.twingital-review-form h3 {
  margin-bottom: 15px;
  color: #005177;
  text-align: left;
}

.twingital-review-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.twingital-review-form input,
.twingital-review-form textarea,
.twingital-review-form select {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #000;
}

.twingital-review-form textarea {
  resize: vertical;
}

.twingital-review-form button {
  background: #d07308;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.twingital-review-form button:hover {
  background: #005177;
}
/* ===========================
   RATING SUMMARY (promedio)
   =========================== */

.twingital-rating-summary {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 20px;
  font-size: 14px;
  color: #333;
}

.rating-stars {
  display: flex;
  align-items: center;
}

.rating-stars .star {
  font-size: 18px;
  margin-right: 2px;
  color: #474747;
}

.rating-stars .star.full {
  color: #ffb400;
}

.rating-stars .star.half {
  background: linear-gradient(90deg, #ffb400 50%, #3d3d3d 50%);
  -webkit-background-clip: text;
  background-clip: text; /* versión estándar */
  -webkit-text-fill-color: transparent;
}

.rating-number {
  font-weight: 600;
  color: #111;
}

.rating-count {
  color: #000000;
  font-size: 13px;
  text-align: center;
}
