.elementor-3062 .elementor-element.elementor-element-80f2ae9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6512417 */.payment-container {
  max-width: 500px; /* صغرت العرض الكلي شوية عشان يتناسب مع الشكل الجديد */
  margin: 20px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  font-family: 'Cairo', sans-serif;
  animation: fadeIn 0.8s ease forwards;
  direction: rtl;
}

.payment-container h2 {
  color: #003C71;
  text-align: center;
  margin-bottom: 15px;
  font-size: 22px; /* تصغير العنوان */
}

.payment-option {
  background: #f0faff;
  border: 1px solid #d0eaff;
  border-radius: 10px;
  padding: 10px 15px; /* تقليل الحشوة الداخلية لتقليل الارتفاع */
  margin: 10px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.payment-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 124, 199, 0.1);
}

.payment-option img {
  width: 35px; /* تصغير الأيقونة */
  height: 35px;
  object-fit: contain;
  border-radius: 6px;
}

.payment-option .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details h3 {
  margin: 0;
  font-size: 16px; /* تصغير خط العنوان الفرعي */
  color: #003C71;
  line-height: 1.2;
}

.details .sub-text {
  margin: 2px 0 0;
  font-size: 12px;
  color: #666;
}

.details .copy-text {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
}

.note {
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
  color: #aaa;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bank Details Compact */
#bank-details {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #eee;
  animation: fadeIn 0.5s ease forwards;
}

.bank-box p {
  margin: 4px 0; /* تقليل المسافات بين سطور البنك */
  color: #333;
  font-size: 13px;
}

.bank-box h4 {
  margin-bottom: 8px;
  font-size: 15px;
  color: #003C71;
  border-bottom: 1px solid #eee;
}

/* Whatsapp Box Compact */
.whatsapp-box {
  margin-top: 20px;
  padding: 15px;
  background: #e8fdf5;
  border: 1px solid #b3ecd7;
  border-radius: 12px;
  text-align: center;
}

.whatsapp-box h4 {
  color: #007f5f;
  margin-bottom: 5px;
  font-size: 16px;
}

.whatsapp-box p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.send-btn {
  background: #25D366;
  color: white;
  padding: 8px 20px; /* زرار أصغر */
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.send-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}/* End custom CSS */