
/* إعداد الخط الافتراضي */
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; /* زوايا دائرية للزر */
  }
  
  /* تخصيص بطاقات المنتجات */
  .product-card {
    border-radius: 10px; /* زوايا دائرية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل خفيف */
    overflow: hidden; /* إخفاء العناصر الزائدة */
    transition: transform 0.3s ease; /* تأثير عند التمرير */
  }
  
  .product-card:hover {
    transform: translateY(-10px); /* تحريك البطاقة للأعلى عند التمرير */
  }
  
  .product-card img {
    width: 100%;
    height: 250px; /* ارتفاع ثابت */
    object-fit: contain; /* احتواء الصورة بالكامل */
    background-color: #f8f9fa; /* خلفية رمادية */
  }
  
  .product-title {
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
  }
  
  /* تخصيص الفوتر */
  .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; /* حجم شعار الفوتر */
  }