 h2.custom-heading {
    font-family: "Lalezar", sans-serif;
    font-style: normal;
    font-size: 50px; /* أو أي حجم تريده */

}

  .visitor-counter h6 {
    margin: 0;
    font-size: 14px;
    color: #555;
  }
  .visitor-counter .count {
    font-size: 24px;
    font-weight: bold;
    color: #0d6efd;
    margin-top: 0px;
  }
  
  
      /* ... الأنماط كما في كودك الأصلي ... */
    .floating-cart {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 9999;
    }
    .card {
      width: 100%;
      max-width: 250px;
      margin: auto;
    }
    .card-img-top {
     float: left;
      width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 150px;
    }
    .card-body {
      padding: 10px;
    }
    .card-title {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    .card-text {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .card .btn {
      padding: 4px 8px;
      font-size: 0.85rem;
    }
    .btn-remove-custom {
      background-color: #dc3545 !important;
      color: white !important;
      border: none;
    }
    .btn-added {
      background-color: #28a745 !important;
      border-color: #28a745 !important;
      color: white !important;
    }
    /* نمط القائمة المنسدلة */
    #categoryFilter {
      max-width: 250px;
      margin: 15px auto;
    }

 .visitor-counter {
    position: fixed;
    bottom: 15px;
    right: 15px; /* يمكنك تغييره إلى right: 15px لو تفضل */
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 15px;
    border-radius: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }

  .visitor-counter .eye-icon {
    font-size: 18px;
  }




.category-bar {
  display: flex;
  overflow-x: auto;
  background-color: #f8f8f8;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  gap: 15px;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.category-item {
  text-align: center;
  color: #333;
  text-decoration: none;
  min-width: 70px;
  flex-shrink: 0;
}

.category-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.category-item span {
  font-size: 14px;
  display: block;
}




  @media (max-width: 576px) {
   .card-text  {
       font-size: 10px !important;

   }
  .card-title {
    font-size: 12px;
  }
    
     .visitor-counter {
    font-size: 13px;
    padding: 6px 10px;
    bottom: 19px;
    right: 10px;
    max-width: 180px; /* ✅ هذا يقلل عرضه */
    white-space: nowrap; /* تمنع انقسام السطر */
    overflow: hidden;
    text-overflow: ellipsis;
    }
    
  }
  
  
  
  
  
  
  
    .categories-bar {
    display: flex;
    overflow-x: auto;
    padding: 12px 20px;
    gap: 20px;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
    border: 2px solid #007bff; /* حد بارز باللون الأزرق */
    border-radius: 1px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25); /* ظل ناعم أزرق */
    width: 95%;       /* أقل من عرض الشاشة */
  max-width: 1200px; /* خيار جميل لعدم كبر العرض على الشاشات الكبيرة */
  margin: 0 auto;   /* لتوسيط الشريط */
  
  }
  .categories-bar::-webkit-scrollbar {
    height: 6px;
  }
  .categories-bar::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 1px;
  }
  .category-item {
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1px;
    padding: 8px 12px;
    background: #f7f9fc;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
    min-width: 80px;
  }
  .category-item:hover {
    background: #007bff;
    color: #fff !important;
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0,123,255,0.3);
  }
  .category-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 2%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: filter 0.3s ease;
  }
  .category-item:hover img {
    filter: brightness(0) invert(1);
  }
  .category-item span {
    display: block;
    font-size: 15px;
    font-weight: 600;
  }
  
    .custom-card {
    width: 100%;          /* العرض الذي تريده */
    margin: auto;        /* لتوسيط البطاقة */
    max-width: 500px;    /* الحد الأقصى للعرض */
  }

