/* تحسينات صفحة الدفع للموبايل */
/* Checkout Page Mobile Optimizations */

@media (max-width: 768px) {
  /* تقليل المسافات العامة */
  .checkout-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* تحسين header الصفحة */
  .checkout-header {
    padding: 0.5rem !important;
    gap: 0.375rem !important;
    border-radius: 1rem !important;
  }

  /* تقليل padding حقول الإدخال */
  .checkout-input input,
  .checkout-input select,
  .checkout-input textarea {
    padding-left: 0.75rem !important;
    padding-right: 2.25rem !important;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    border-radius: 0.75rem !important;
  }

  /* تقليل المسافات بين الحقول */
  .checkout-form-grid {
    gap: 0.375rem !important;
  }

  .checkout-field-spacing {
    margin-top: 0.375rem !important;
  }

  /* تحسين الأزرار */
  .checkout-button {
    padding: 0.625rem 1rem !important;
    border-radius: 0.75rem !important;
  }

  /* تقليل focus ring */
  .checkout-input input:focus,
  .checkout-input select:focus,
  .checkout-input textarea:focus {
    ring-width: 2px !important;
  }

  /* تحسين عرض المنتجات */
  .checkout-product-item {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* تقليل الأيقونات */
  .checkout-icon-small {
    width: 1rem !important;
    height: 1rem !important;
  }

  /* تحسين summary box */
  .checkout-summary {
    padding: 0.75rem !important;
    gap: 0.5rem !important;
  }

  /* تقليل مسافات النصوص */
  .checkout-text-spacing {
    margin-top: 0.25rem !important;
  }

  /* تحسين العناصر المرنة */
  .checkout-flex-gap {
    gap: 0.375rem !important;
  }
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media (max-width: 375px) {
  .checkout-container {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .checkout-input input,
  .checkout-input select {
    font-size: 0.875rem !important;
  }

  .checkout-button {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
}
