@font-face {
  font-family: "YekanBakh";
  src: url("/fonts/YekanBakh-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

.mifa-rating,
.mifa-rating * {
  font-family: "YekanBakh", sans-serif;
}

.mifa-rating {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  user-select: none;
}

.mifa-rating__stars {
  display: inline-flex;
  gap: 6px;
  direction: ltr;
}

/* پایه ستاره */
.mifa-star {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  opacity: .35;
  transition: all .15s ease;
  font-size: 0;
}

/* ⭐ ستاره خالی */
.mifa-star::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://blog.dafiiran.com/wp-content/uploads/2026/01/star-1.png") no-repeat center;
  background-size: contain;
}

/* ⭐ ستاره پر */
.mifa-star.is-active::before {
  background: url("https://blog.dafiiran.com/wp-content/uploads/2026/01/star.png") no-repeat center;
  background-size: contain;
  opacity: 1;
}

/* ⭐ نیم ستاره */
.mifa-star.is-half::before {
  background: url("https://blog.dafiiran.com/wp-content/uploads/2026/01/star.png") no-repeat center;
  background-size: contain;
  clip-path: inset(0 50% 0 0);
  opacity: 1;
}

/* hover */
.mifa-star:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* حالت فقط خواندنی */
.mifa-rating[data-readonly="1"] .mifa-star {
  cursor: not-allowed;
  opacity: .3;
}

.mifa-rating__meta {
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.mifa-rating__msg {
  font-size: 13px;
  min-height: 18px;
}
