/*************************************************
  ARTICLE VOTING & RATING
  Integrated with Design System
*************************************************/

/* ===============================
   Rating Container
   =============================== */
.tameecom-rating-box {
  max-width: 380px;
  margin: 30px auto 10px;
  padding: 18px 20px;

  background: var(--bg-soft-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);

  text-align: center;
  direction: rtl;
  font-family: var(--font-sans);

  box-shadow: var(--shadow-soft);
}

/* ===============================
   Score
   =============================== */
.tameecom-rating-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

/* ===============================
   Vote Count
   =============================== */
.tameecom-rating-count {
  font-size: 16px;
  font-weight: var(--weight-meta);
  color: var(--color-muted);
  margin-bottom: 12px;
}

/* ===============================
   Stars List
   =============================== */
ul.tameecom-rating-stars {
  margin: 0;
  padding: 0;
  list-style: none;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tameecom-rating-stars li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   Star Colors (SVG)
   =============================== */
.vote-star svg path {
  fill: #fbbf24; /* ذهبي هادئ */
}

.vote-star-half svg path {
  fill: #facc15;
}

.vote-star-empty svg path {
  fill: #d1d5db;
}

/* ===============================
   Hover (Soft)
   =============================== */
.tameecom-rating-stars li:hover svg path {
  filter: brightness(1.1);
}

/* ===============================
   Voting Form
   =============================== */
.content_vote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.content_vote select {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  min-width: 150px;
  max-width: 170px;
  text-align: center;
  white-space: nowrap;
}

.content_vote input[type="submit"] {
  font-size: 14px;
  padding: 6px 14px;
}

/* ===============================
   Mobile
   =============================== */
@media (max-width: 600px) {
  .tameecom-rating-box {
    padding: 16px;
  }
  .tameecom-rating-score {
  font-size: 18px;
  font-weight: 700;
  }
} 