/* نقره ناصری - استایل انتخاب وزن ساچمه */

.naseri-weight-selector {
  font-family: 'YekanBakh', 'Yekan Bakh', 'IRANYekanX', Tahoma, sans-serif;
  direction: rtl;
  text-align: right;
  margin: 20px 0 24px;
  padding: 18px 20px 20px;
  background: #f7f8fa;
  border: 1px solid #e3e5e9;
  border-radius: 14px;
}

.naseri-weight-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1c2230;
  margin-bottom: 12px;
}

/* دکمه‌های پیش‌فرض وزن */
.naseri-preset-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.naseri-preset-btn {
  font-family: inherit;
  flex: 1 1 auto;
  min-width: 72px;
  padding: 12px 10px;
  border: 1.5px solid #232a38;
  border-radius: 10px;
  background: #232a38;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.naseri-preset-btn:hover {
  background: #313b4d;
  border-color: #313b4d;
}

.naseri-preset-btn.active {
  background: #1a6dd8;
  border-color: #1a6dd8;
  box-shadow: 0 0 0 3px rgba(26, 109, 216, 0.18);
}

/* ورودی وزن دلخواه */
.naseri-weight-input {
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1.5px solid #d4d7dd;
  border-radius: 10px;
  font-size: 15px;
  color: #1c2230;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.naseri-weight-input:focus {
  outline: none;
  border-color: #1a6dd8;
  box-shadow: 0 0 0 3px rgba(26, 109, 216, 0.12);
}

.naseri-weight-input::placeholder {
  color: #9aa0ab;
  font-size: 13px;
}

/* جدول محاسبه قیمت */
.naseri-price-breakdown {
  margin-top: 16px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e3e5e9;
  border-radius: 10px;
}

.naseri-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: #4a5162;
}

.naseri-price-row .naseri-price-value {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #1c2230;
  direction: ltr;
  unicode-bidi: plaintext;
}

.naseri-price-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed #d4d7dd;
}

.naseri-price-total .naseri-price-label,
.naseri-price-total .naseri-price-value {
  font-size: 17px;
  font-weight: 800;
  color: #0f5fce;
}

/* پیام خطا */
.naseri-price-error {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecea;
  border: 1px solid #f3c2bd;
  border-radius: 8px;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .naseri-preset-btn {
    min-width: 60px;
    padding: 10px 6px;
    font-size: 13px;
  }
}
