

/* إعداد الخط الافتراضي */
body {
    font-family: 'Roboto', sans-serif;
  }
  /*-------------------------------------------------------------------------------------------*/
  /* تخصيص الناف بار */
  .navbar-brand img {
    width: 130px; /* حجم أكبر للشعار */
    height: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem; /* إضافة مسافات لعناصر الناف بار */
  }
  
  .form-control.bd {
    border: 2px solid #dc3545; /* لون أحمر للإطار */
    border-radius: 20px; /* زوايا دائرية */
  }
  
  .btn-outline-danger {
    border-radius: 20px; /* زوايا دائرية للزر */
  }
  /*--------------------------------------------------------------------------------------------*/
  /*  تنسيق خاص بأول عنصر في صفحه المستعمل pre-owaned */
/* تنسيق الحاوية الأساسية */



/* تصميم الكارت */
.card-custom {
    border: none; /* إزالة الحدود */
    border-radius: 15px; /* زوايا دائرية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* الظل */
    overflow: hidden; /* إخفاء المحتوى الخارج */
    height: 100%; /* ملء الطول */
    display: flex;
    flex-direction: column;
  }
  
  /* تنسيق الصور */
  .card-custom img {
    width: 100%; /* عرض الصورة مطابق للكارت */
    height: auto; /* الحفاظ على نسبة الأبعاد */
    object-fit: contain; /* الصورة تتكيف مع المساحة */
    background-color: #f9f9f9; /* خلفية لتوضيح الصورة */
  }
  
  /* تنسيق محتوى الكارت */
  .card-custom .card-body {
    padding: 15px; /* مسافة داخلية */
    text-align: left; /* النص يبدأ من اليسار */
  }
  
  /* تصنيف الفئة */
  .card-custom .category {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  /* عنوان الكارت */
  .card-custom h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* النص أسفل العنوان */
  .card-custom p {
    margin-bottom: 0;
    color: gray;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  

  /*---------------------------------------------------------------------------------------------*/
  






  /*-------------------------------------------------------------------------------------------*/
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------------------------------------*/
  
  /* تخصيص الفوتر */
  .footer {
    background-color: #212529; /* لون داكن للخلفية */
    color: #ffffff; /* لون النص أبيض */
    padding: 60px 0;
    width: 100%; /* ضمان تغطية العرض الكامل */
  }
  
  .footer h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f8f9fa; /* لون العناوين */
  }
  
  .footer p, .footer a {
    color: #adb5bd; /* لون النص */
    font-size: 14px;
  }
  
  .footer a:hover {
    color: #f8f9fa;
    text-decoration: none; /* إزالة الخط السفلي */
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-social span {
    margin-right: 10px;
  }
  
  .footer-social span a {
    color: #adb5bd;
    font-size: 18px;
  }
  
  .footer-bottom {
    background-color: #181a1d; /* لون أغمق للجزء السفلي */
    color: #adb5bd;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer .icon {
    color: rgb(236, 61, 61); /* لون مميز للأيقونات */
  }
  
  .footer-widget-item img {
    width: 150px; /* حجم شعار الفوتر */
  }
  
  
  /*------------------------------------------------------------------------------------------------------*/