/* استایل‌های صفحه پرداخت */

/* بخش اطلاعات پرداخت */
.payment-cards {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  max-width: 800px;
}

.payment-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  transition: transform 0.3s ease;
}

.bank-card {
  border-top: 4px solid #007a3d; /* رنگ سبز بانک ملی */
}

.bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bank-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.bank-logo h3 {
  color: var(--dark-text);
  font-size: 1.3rem;
  margin: 0;
}

.payment-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.payment-label {
  color: var(--medium-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.payment-value {
  color: var(--dark-text);
  font-size: 1.1rem;
  font-weight: bold;
  direction: ltr;
  text-align: center;
}

.copy-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--light-gray);
  padding: 0.8rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s;
  padding: 0.5rem;
}

.copy-btn:hover {
  color: var(--secondary-blue);
  transform: scale(1.1);
}

.payment-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--light-orange);
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 2rem auto;
}

.payment-notice i {
  color: var(--primary-orange);
  font-size: 1.5rem;
}

.payment-notice p {
  color: var(--dark-text);
  margin: 0;
  text-align: right;
}

/* بخش ارسال رسید */
.receipt-section {
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
}

.receipt-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.receipt-method {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid transparent;
}

.receipt-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.whatsapp .method-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.eitaa .method-icon {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}
.bale .method-icon {
  background: rgba(0, 175, 240, 0.1);
  color: #00AFF0;
}

.receipt-method h3 {
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.receipt-method p {
  color: var(--medium-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.whatsapp .method-btn {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.eitaa .method-btn {
  background: #0088cc;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}
.bale .method-btn {
  background: #00AFF0;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
}

.method-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* رسپانسیو */
@media (max-width: 768px) {
  .payment-cards,
  .receipt-methods {
    grid-template-columns: 1fr;
  }
  
  .payment-card,
  .receipt-method {
    padding: 1.5rem;
  }
  
  .bank-logo {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .payment-value {
    font-size: 1rem;
  }
  
  .method-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}
