@charset "utf-8";
/* CSS Document */
@import url('fonts/fontawesome-all.min.css');

    html, body {
      margin: 0; padding: 0; height: 100%;
	  font-family: bein !important;
      background-color: #f0f2f5;
      direction: rtl;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
	
	
	@font-face {
	    font-family: bein;src: url(fonts/font-awesome/fonts/bein-ar-normal.ttf);
		
	}
	
    container {
	  padding-top: 5px;
	  font-family: bein !important;
    }

    main {
      flex: 1 0 auto;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding-bottom: 20px;
    }

    .app-header {
      background-color: #006994;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      font-size: 20px;
      font-weight: bold;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }

    .app-header a {
      color: #ffffff;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
      transition: color 0.3s ease;
    }


@keyframes glow {
  0% {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #0095c2,
                 0 0 15px #0095c2;
  }
  50% {
    text-shadow: 0 0 10px #fff,
                 0 0 20px #00c3ff,
                 0 0 30px #00c3ff;
  }
  100% {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #0095c2,
                 0 0 15px #0095c2;
  }
}

.app-header .logo {
  flex: 1;
  text-align: right;
  animation: glow 2s ease-in-out infinite;
  color: white;
}


    @media (max-width: 768px) {
      .app-header .logo {
        text-align: center;
      }
    }

    #cart-icon {
      position: relative;
      cursor: pointer;
    }

    #cart-icon i {
      font-size: 20px;
      color: white;
    }

    #cart-count {
      background: red;
      color: white;
      border-radius: 50%;
      padding: 2px 7px;
      font-weight: bold;
      margin-left: 5px;
      position: absolute;
      top: -8px;
      right: -10px;
      font-size: 12px;
    }


    #products {
      text-align: center;
      margin: 30px 0 10px;
      font-size: 26px;
      color: #006994;
    }


    .product-list {
      display: grid;
      flex-wrap: wrap;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 0 20px 20px;
      background: #f8f9fa;
    }

    .product-card {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s;
      opacity: 0;
      transform: translateY(30px);
      animation: slideFade 0.8s forwards;
    }

    .product-card:nth-child(1) { animation-delay: 0.2s; }
    .product-card:nth-child(2) { animation-delay: 0.4s; }
    .product-card:nth-child(3) { animation-delay: 0.6s; }
    .product-card:nth-child(4) { animation-delay: 0.8s; }
    .product-card:nth-child(5) { animation-delay: 0.10s; }
    .product-card:nth-child(6) { animation-delay: 0.12s; }
    .product-card:nth-child(7) { animation-delay: 0.14s; }
    .product-card:nth-child(8) { animation-delay: 0.16s; }
    .product-card:nth-child(9) { animation-delay: 0.18s; }
    .product-card:nth-child(10) { animation-delay: 0.20s; }
    .product-card:nth-child(11) { animation-delay: 0.22s; }
    .product-card:nth-child(12) { animation-delay: 0.24s; }

    @keyframes slideFade {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .product-card:hover {
      transform: scale(1.03);
    }

    .product-card img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 50%;
      margin-top: 15px;
      box-shadow: 0 0 15px rgba(0, 105, 148, 0.6);
      transition: transform 0.3s ease, box-shadow 0.4s ease;
    }

    .product-card:hover img {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(0, 105, 148, 0.9);
    }

    .product-card .info {
      padding: 10px 15px 20px;
    }

    .product-card .info h4 {
      margin: 10px 0 5px;
      font-size: 18px;
    }

    .product-card .info p {
      margin: 0;
      color: #555;
      font-size: 14px;
    }

    .product-card .info button {
      margin-top: 12px;
      padding: 8px 12px;
      width: 100%;
      border: none;
      background-color: #006994;
      color: white;
      border-radius: 25px;
      font-size: 14px;
	  font-family: bein !important;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .product-card .info button:hover {
      background-color: #0086b3;
    }


    .bottom-nav {
      position: fixed;
      bottom: 0;
      right: 0;
      left: 0;
      background-color: #ffffff;
      border-top: 1px solid #ccc;
      display: none;
      justify-content: space-around;
      align-items: center;
      height: 55px;
      box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
      z-index: 200;
    }

    .bottom-nav a {
      text-decoration: none;
      font-size: 12px;
      color: #006994;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-grow: 1;
      padding: 5px 0;
      transition: all 0.3s ease;
    }

    .bottom-nav a.active,
    .bottom-nav a:focus,
    .bottom-nav a:active {
      color: white;
      background-color: #006994;
      border-radius: 8px;
    }

    .bottom-nav a.active i {
      animation: pulse 1.5s infinite;
      color: white;
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.8),
                   0 0 15px rgba(0, 105, 148, 0.8);
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
      }
      50% {
        transform: scale(1.2);
        text-shadow: 0 0 15px rgba(0, 105, 148, 1);
      }
    }

    .bottom-nav a i {
      font-size: 18px;
      margin-bottom: 3px;
    }

    @media (max-width: 768px) {
      .bottom-nav {
        display: flex;
      }

      .product-list {
        grid-template-columns: 1fr;
        padding: 0 10px 20px;
      }

      .product-card {
        width: 90%;
        margin: auto;
      }
    }

    .page-footer {
      background-color: #006994;
      color: white;
      text-align: center;
      padding: 20px 10px;
      font-size: 14px;
      flex-shrink: 0;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      max-width: auto;
      margin: 0 auto;
      width: 100%;
    }

    .page-footer .footer-section {
      min-width: 150px;
    }

    .page-footer h4 {
      margin-bottom: 8px;
      font-weight: 700;
      font-size: 16px;
      color: #cce6ff;
	  text-align:right;
    }

.page-footer a {
  color: #a8d1ff;
  text-decoration: none;
  text-align: right;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  position: relative; /* مهم لوضع الأيقونة */
  padding-right: 18px; /* مساحة للأيقونة */
}

/* إضافة سهم أو مربع أمام الرابط */
.page-footer a::before {
  content: "›"; /* يمكنك استبدالها بـ "■" أو أي رمز آخر */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b6b; /* لون الأيقونة */
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* تأثير عند المرور على الرابط */
.page-footer a:hover::before {
  transform: translateY(-50%) translateX(3px); /* حركة صغيرة للأيقونة */
  color: #fff; /* يمكن تغيير لون الأيقونة عند المرور */
}

.page-footer a:hover {
  color: #fff;
}

    .page-footer a:hover {
      color: white;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .page-footer {
        display: none;
      }
    }


    .page-copy {
      background-color: #339966;
      color: white;
      text-align: center;
      padding: 20px 10px;
      font-size: 14px;
      flex-shrink: 0;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      max-width: auto;
      margin: 0 auto;
      width: 100%;
    }

    .page-copy .copy-section {
      min-width: 150px;
    }

    .page-copy h4 {
      margin-bottom: 8px;
      font-weight: 700;
      font-size: 16px;
      color: #cce6ff;
	  text-align:right;
    }

    .page-copy a {
      color: #a8d1ff;
      text-decoration: none;
	  text-align:right;
      font-size: 14px;
      display: block;
      margin-bottom: 6px;
      transition: color 0.3s ease;
    }

    .page-copy a:hover {
      color: white;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .page-copy {
        display: none;
      }
    }


    .swiper {
      width: 95%;
      max-width: 1000px;
      margin: auto;
    }

    .swiper-slide {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 380px;
    }

    .swiper-slide img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .product-name {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .product-price {
      color: green;
      margin-bottom: 15px;
      font-size: 18px;
    }

    .buy-btn {
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 10px;
      width: 90%;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .buy-btn:hover {
      background-color: #0056b3;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #000;
    }

    .swiper-pagination-bullet {
      background-color: #999;
    }

    .swiper-pagination-bullet-active {
      background-color: #007bff;
    }


/*slideshow-container */

/* الهيكل العام */
body {
  margin: 0;
  font-family: "bein", sans-serif !important;
  background-color: #f8f9fa;
}

/* لضمان أن السلايد شو تحت الهيدر */
main {
  flex: 1 0 auto;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px 40px;
  margin-top: 190px; /* ✨ غيّر القيمة حسب ارتفاع الهيدر وشريط الأخبار */
}

/* حاوية السلايد شو */
.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  background: #000;
}

/* الشرائح */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
}

/* الكابتشن */
.slide-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  text-align: right;
}

.slide-caption img.icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* نص الكابتشن */
.slide-caption .text {
  flex: 1;
  animation: fadeInUp 1s ease forwards;
}

.slide-caption h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.slide-caption p {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
}

/* زر المزيد */
.slide-caption a.button {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.slide-caption a.button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* أزرار التنقل */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev { left: 15px; }
.next { right: 15px; }

/* حركات */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تجاوب الهواتف */
@media (max-width: 768px) {
  .slide-caption {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 20px;
  }

  .slide-caption img.icon {
    width: 50px;
    height: 50px;
  }

  .slide-caption h2 {
    font-size: 20px;
  }

  .slide-caption p {
    font-size: 14px;
  }

  .slide-caption a.button {
    padding: 8px 18px;
    font-size: 14px;
  }
}



/* قسم التصنيفات */
.categories-section {
  background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* عنوان القسم */
.categories-section .section-title {
  font-family: 'bein', sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.categories-section .section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* بطاقة التصنيف */
.category-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  cursor: pointer;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* صورة التصنيف */
.category-card .category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

/* الشارة (عدد المنتجات) */
.badge-custom {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease;
}

/* النصوص داخل البطاقة */
.category-card .card-body {
  padding: 20px 15px;
  background: #fff;
}

.category-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.category-card:hover .card-title {
  color: #007bff;
}

.category-card p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

/* الزر */
.category-card .btn {
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-card .btn:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.05);
}

/* حركة الظهور التدريجية */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* عند التمرير */
.category-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeUp 0.8s forwards;
}

@keyframes cardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .category-card .category-image {
    height: 180px;
  }

  .categories-section .section-title {
    font-size: 1.6rem;
  }
}


/* قسم الهيرو */
.hero-section {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background: linear-gradient(to right, #007bff, #00b4d8);
  color: #fff;
  overflow: hidden;
}

/* تأثير زخرفي خلفي بسيط */
.hero-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite alternate-reverse;
}

/* النصوص */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: 'bein', sans-serif !important;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #FFFF00;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero-section p {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease forwards;
}

/* الزر */
.hero-section .btn {
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #007bff;
  background-color: #fff;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease forwards;
}

.hero-section .btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* صورة الهيرو */
.hero-image {
  max-width: 90%;
  animation: floatImage 5s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}

/* الحركات */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* تجاوب الجوال */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding: 80px 0 60px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .btn {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 40px;
    max-width: 100%;
  }
}

/* قسم العلامات التجارية */
.brands-section {
  background: #f8f9fa;
  padding: 70px 0;
}

/* العنوان */
.brands-section .section-title {
  font-family: 'bein', sans-serif !important;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.brands-section .section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #dc3545;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* 🔹 شريط التبويبات (nav-pills) */
.brands-section .nav {
  display: flex;
  flex-wrap: nowrap;        /* يمنع النزول لسطر جديد */
  overflow-x: auto;         /* يسمح بالتمرير */
  -webkit-overflow-scrolling: touch; /* تمرير ناعم بالجوال */
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding-bottom: 8px;
}

.brands-section .nav::-webkit-scrollbar {
  height: 6px;
}
.brands-section .nav::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.brands-section .nav-link {
  border-radius: 30px;
  background-color: #fff;
  color: #333;
  font-weight: 600;
  padding: 10px 25px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.brands-section .nav-link:hover {
  background-color: #007bff;
  color: #fff;
}

.brands-section .nav-link.active {
  background-color: #dc3545;
  color: #fff;
  border-color: #dc3545;
  box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

/* بطاقات البراند */
.brand-card {
  border: none;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* شعار البراند */
.brand-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: grayscale(100%);
}

.brand-card:hover .brand-logo {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* نصوص البطاقة */
.brand-card .card-body {
  padding: 10px 0;
}

.brand-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.brand-card small {
  color: #777;
}

/* الزر */
.brand-card .btn {
  margin-top: 8px;
  border-radius: 25px;
  font-size: 0.9rem;
  padding: 6px 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.brand-card .btn-danger {
  background-color: #dc3545;
  border: none;
}

.brand-card .btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
}

.brand-card .btn-light {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
}

.brand-card .btn-light:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

/* مؤثر الظهور التدريجي */
.brand-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* تجاوب الهواتف */
@media (max-width: 768px) {
  .brand-logo {
    height: 90px;
  }

  .brands-section .section-title {
    font-size: 1.6rem;
  }

  .brands-section .nav {
    gap: 8px;
  }

  .brands-section .nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* ===== استايلات التمرير والتبويبات ===== */
.brands-tabs-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.brands-tabs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  margin: 0;
}

.brands-tabs .nav-item {
  flex: 0 0 auto;
  margin-right: 10px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 3px;
}

.scroll-left { left: 0; }
.scroll-right { right: 0; }

.brands-tabs::-webkit-scrollbar { display: none; }

.brand-card { transition: transform 0.3s ease; }
.brand-card:hover { transform: translateY(-5px); }

/* زر تسوق الآن باللون الأحمر */
.btn-red {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-red:hover {
    background-color: #b71c1c;
}

/* قسم العروض */

.swiper-3d-section {
    background: linear-gradient(135deg, #ff3d00, #ff7043);
    padding: 60px 0;
}

.swiper-3d-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.offer-card img {
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.swiper-slide-active .offer-card img {
    transform: scale(1.15);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.product-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1rem;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 12px;
}

.buy-btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.buy-btn:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* أزرار التنقل */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: rgba(0,0,0,0.35);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0,0,0,0.6);
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* قسم التواصل وخريطة جوجل */

.contact-section {
    background: #f9f9f9;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d32f2f;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-address {
    font-weight: bold;
    color: #555;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-methods {
    margin-top: 30px;
}

.method-card {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card i {
    color: #d32f2f;
    font-size: 1.3rem;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}



/* client */

        .client-card {
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.15);
        }
        .client-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #0d6efd;
            margin-bottom: 1rem;
        }
