/* ─── تایمر اعتبار قیمت نقره در سبد خرید ─── */
.gsp-cart-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: YekanBakh, Vazirmatn, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2557e0;
  background: rgba(56, 106, 246, 0.08);
  border: 1px solid rgba(56, 106, 246, 0.22);
  direction: rtl;
}

.gsp-cart-timer-icon {
  font-size: 14px;
  line-height: 1;
  display: none;
}

.gsp-cart-timer-val {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  min-width: 42px;
  text-align: center;
}

/* کمتر از ۱ دقیقه → قرمز چشمک‌زن */
.gsp-cart-timer-urgent {
  color: #e84545;
  background: rgba(232, 69, 69, 0.08);
  border-color: rgba(232, 69, 69, 0.25);
  animation: gsp-cart-blink 0.9s infinite;
}

/* منقضی → در حال بروزرسانی */
.gsp-cart-timer-expired {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  animation: none;
}

@keyframes gsp-cart-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ─── باکس نکات مهم قبل از پرداخت ─── */
.gsp-pay-notes {
  direction: rtl;
  font-family: YekanBakh, Vazirmatn, sans-serif;
  margin-bottom: 16px;
  text-align: right;
}

.gsp-pay-notes-title {
  font-size: 14px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.gsp-pay-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gsp-pay-notes li {
  position: relative;
  padding-right: 16px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: #4b5563;
}

.gsp-pay-notes li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: -1px;
  color: #2557e0;
  font-weight: 800;
}

/* ─── باکس جمع کل: حذف جمع جزء و نمایش وزن کل نقره ─── */
.cart_totals .cart-subtotal {
  display: none;
}

.cart_totals .gsp-cart-weight th,
.cart_totals .gsp-cart-weight td {
  font-family: YekanBakh, Vazirmatn, sans-serif;
}

.cart_totals .gsp-cart-weight td strong {
  font-variant-numeric: tabular-nums;
}

/* ─── فرم پرداخت داخل باکس جمع کل سبد ─── */
.gsp-pay-form {
  direction: rtl;
  font-family: YekanBakh, Vazirmatn, sans-serif;
  margin-top: 6px;
}

.gsp-pay-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.gsp-pay-terms input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #2557e0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.gsp-pay-terms span {
  line-height: 1.4;
}

.gsp-pay-terms a {
  color: #2557e0;
  font-weight: 700;
  text-decoration: underline;
}

.gsp-pay-terms a:hover {
  color: #1a3fb0;
}

.gsp-pay-btn {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #386af6, #2557e0);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.2s, transform 0.05s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 87, 224, 0.28);
}

.gsp-pay-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(37, 87, 224, 0.36);
}

.gsp-pay-btn:active {
  transform: translateY(1px);
}

.gsp-pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
