.dk-product-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: iranyekan, yekan, sans-serif;
  direction: rtl;
  justify-content: flex-start;
}

.dk-product-stats div {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e2;
  border-radius: 10px;
  padding: 4px 10px;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: all 0.2s ease-in-out;
}

.dk-product-stats div:hover {
  background-color: #fff;
  border-color: #d32f2f;
  box-shadow: 0 2px 6px rgba(211,47,47,0.1);
}

.dk-product-stats svg {
  width: 18px;
  height: 18px;
  fill: #d32f2f;
}

.dk-product-stats .dk-count {
  font-size: 13px;
  font-weight: 600;
  color: #2b2b2b;
}

.dk-product-stats .dk-label {
  font-size: 12px;
  color: #777;
}

@media (max-width: 600px) {
  .dk-product-stats {
    gap: 8px;
    margin-top: 8px;
  }
  .dk-product-stats div {
    padding: 3px 8px;
  }
  .dk-product-stats .dk-count {
    font-size: 12px;
  }
}
