
/* Box sizing موحد */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  display: block;
}
/* متغيرات عامة */
:root {
  --primary-color: #0056b3;
  --accent-color: #ffc107;
  --dark-bg: #333;
  --white: #ffffff;
}

/* إعدادات الجسم */
body {
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
    font-display: swap;

}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* تخطيط علوي */
.top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================================
   NAV PANEL
================================ */
.nav-panel {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo h1 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: var(--accent-color);
}

.logo p {
  font-size: 12px;
  color: #666;
}

/* SEARCH */
.search-box {
  display: flex;
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search-box button {
  padding: 10px 15px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* MENU */
.menu a {
  position: relative;
  text-decoration: none;
  color: #333;
  margin-left: 15px;
  font-weight: 600;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--primary-color);
}

.menu a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.btn-order {
  background: var(--accent-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: #000;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.btn-order:hover {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ================================
   HERO CONTENT
================================ */

.hero-content {
  text-align: center;
  color: #fff;
  margin-top: 100px;
}

/* Animation مع احترام accessibility */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: fadeInUp 0.8s ease-out;
  }
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* CTA */
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .nav-panel {
    flex-direction: column;
    text-align: center;
  }

  .search-box {
    margin: 10px 0;
    max-width: 100%;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .menu a {
    margin: 0;
    font-size: 14px;
  }

  .hero-content h2 {
    font-size: 28px;
  }
}

/* ================================
   Categories Explorer – Optimized
================================ */

/* SECTION */
.categories-section {
  background: #ffffff;
  padding: 0px 0;
}
.main-slider {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* استبدل 30% بـ 30vh لضمان ظهور الارتفاع بشكل صحيح على الشاشات */
  height: 400px;
  margin: 0 auto;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden; /* يمنع الضغط على أزرار الشرائح المخفية */
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s linear;
}

/* تأثير الزوم عند التفعيل */
.slide.active img {
  transform: scale(1.1);
}

.main-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7));
  z-index: 2;
  pointer-events: none;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 20px;
  text-align: center;
  color: white;
  z-index: 3;
}

.slide-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px); /* يبدأ من أسفل أكثر قليلاً لتأثير أقوى */
}

.slide-content .btn-order {
  display: inline-block;
  padding: 12px 30px;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(30px);
  transition:
    background 0.3s,
    transform 0.2s;
}

.btn-order:hover {
  background: #e64a19;
  transform: scale(1.05) translateY(0); /* تفاعل عند التمرير */
}

/* حركات الانبثاق */
.slide.active h2 {
  animation: fadeInUp 0.7s forwards 0.3s;
}

.slide.active .btn-order {
  animation: fadeInUp 0.7s forwards 0.6s;
}
/* تنسيق طبقة النصوص */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%); /* يبدأ من أسفل قليلاً */
  text-align: center;
  width: 80%;
  opacity: 0;
  transition: all 0.7s ease-out;
  z-index: 2;
}

/* حالة تفعيل الحركة من JS */
.slide-overlay.active-animation {
  opacity: 1;
  transform: translate(-50%, -50%); /* يعود لمركزه الأصلي */
}

.slide-overlay h2 {
  font-family: "Cairo", sans-serif;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
}
#imageSubtitle {
  font-size: 16px;
  color: #f2f2f2;
  width: 100%;
  text-align: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* تنسيق الزر */
.slider-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e67e22; /* لون برتقالي يناسب مواد البناء */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

.slider-button:hover {
  background-color: #d35400;
  transform: scale(1.05);
}

/* جعل الأزرار فوق كل شيء */
.arrow {
  z-index: 10;
}
/* أضف هذه الأسطر لتكملة كودك */
.slide-content h2,
.slide-content .btn-order {
  opacity: 0; /* ضروري لكي تعمل الـ animation */
  pointer-events: none;
}

.slide.active .btn-order {
  pointer-events: auto; /* تمكين الضغط على الزر فقط عند ظهوره */
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Explorer nos univers produits









================================ */

.univers-section {
  background: #ffffff;
  padding: 0px 0;
}

.univers-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.univers-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 15px;
}

/* لمنع العناصر من الانكماش للحفاظ على حجم الأيقونة */
.univers-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* إخفاء شريط التمرير (Scrollbar) لمنظر أنظف */
.univers-grid::-webkit-scrollbar {
  display: none;
}
.univers-grid {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.univers-item {
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  width: 120px;
}

.univers-item:hover {
  transform: translateY(-6px);
}

.univers-icon {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.univers-icon img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.univers-item span {
  font-size: 14px;
  font-weight: 600;
  color: #292626;
  font-style: normal;
}
/* قسم اختيار المنتجات */
.product-selection {
  padding: 40px 0;
}

.selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.selection-tabs a {
  text-decoration: none;
  color: #555;
  margin-left: 20px;
  font-weight: 600;
  font-size: 15px;
}

.selection-tabs a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.selection-content {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 42px;
  align-items: start;
  padding: 20px;
}

/* ================================
   Product Grid – Optimized
================================ */
/* 1. تعديل الشبكة لتكون أكثر مرونة في الجوال */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* 2. تعديل الكارت وإضافة relative وتنسيق الارتفاع */
.product-card {
  border: 1px solid #eee;
  box-shadow: none;
}

.product-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* 3. توحيد حاوية الصورة */
.product-img-container {
  position: relative;
  width: 100%;
  height: 200px; /* ارتفاع ثابت وموحد لكل المنتجات */
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 12px;
}

.product-img-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain; /* يحافظ على شكل المنتج بدون قص */
}

/* 4. إصلاح الـ Overlay ليظهر عند التمرير فقط */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* تعتيم بسيط */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* مخفي افتراضياً */
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 1; /* يظهر فقط عند تمرير الماوس */
}

/* 5. تنسيق العناصر النصية لضمان التساوي */
.p-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  min-height: 44px; /* يضمن مساحة لسطرين حتى لو كان الاسم قصيراً */
}

.p-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

/* 6. تحسين زر الاستكشاف/الطلب */
.btn-explore {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: block;
}

/* 7. تعديل الجوال */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* كارتين في كل سطر للجوال */
    gap: 10px;
  }
  .product-img-container {
    height: 150px; /* تصغير الصورة قليلاً في الجوال */
  }
}

/* ================================
   PROMO SIDEBAR
================================ */

.promo-sidebar {
  max-width: 300px;
  width: 100%;
}

.promo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 360px;
}

/* image */
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover img {
  transform: scale(1.06);
}

/* overlay */
.promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

.promo-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.promo-btn {
  background: #fff;
  color: #111;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.promo-btn:hover {
  background: #1f5fae;
  color: #fff;
}
.promo-btn:hover {
  background: #1f5fae;
  color: #fff;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* كارتين في السطر للجوال */
    gap: 10px; /* تقليل المسافات لتوفير مساحة */
  }
  .product-card {
    padding: 10px; /* تقليل الحشو الداخلي */
  }
}

/* ================================
   Tabs – Optimized
================================ */

/* محتوى التبويبات */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* التبويب النشط */
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;

  opacity: 1;
  transform: translateY(0);
}

/* روابط التبويبات */
.tab-link {
  text-decoration: none;
  color: #666;
  padding: 6px 16px;
  font-weight: 600;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}

.tab-link:hover {
  color: var(--primary-color);
}

.tab-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Accessibilité */
.tab-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}
/* ================================
   Trust Bar – Enhanced
================================ */

.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid #ffc107;
  border-bottom: 1px solid #ffc107;
  margin-top: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 26px;
  background: #ffffff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
}

.trust-text h4 {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.trust-text p {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-item {
    flex-direction: column;
    text-align: center;
  }
}

/*



/* ================================
   Promo Banners
================================ */

.promo-banners {
  margin: 40px auto;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banner-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease;
}

.banner-item:hover {
  transform: translateY(-5px);
}

/* Overlay */
.banner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.banner-text {
  position: relative;
  z-index: 1;
}

.banner-text span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.banner-text h3 {
  font-size: 24px;
  margin: 10px 0 20px;
  max-width: 260px;
  line-height: 1.3;
}

.btn-shop {
  background: #fff;
  color: #333;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.btn-shop:hover {
  background: var(--accent-color);
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Brands
================================ */

.brands-section {
  padding: 50px 0;
  text-align: center;
}

.brands-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.6;
}

.brands-flex img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.brands-flex img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-float img {
  width: 32px;
}

*/ .inspiration-section {
  margin: 60px auto;
}
.inspiration-card {
  display: flex;
  background: #f4f7f6;
  border-radius: 30px;
  overflow: hidden;
  align-items: center;
}
.ins-content {
  flex: 1;
  padding: 60px;
}
.ins-content .tag {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ins-content h2 {
  font-size: 32px;
  margin: 15px 0;
  color: #333;
}
.ins-image {
  flex: 1;
  height: 400px;
}
.ins-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .inspiration-card {
    flex-direction: column;
    text-align: center;
  }
  .ins-content {
    padding: 30px;
  }
}

/* تنسيق شريط التصنيفات */
.category-bar {
  background-color: #0056b3; /* لون أزرق قوي */
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* لجعلها متجاوبة مع الشاشات الصغيرة */
}

.category-list li {
  margin: 0 15px;
}

.category-list li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px; /* مسافة بين الأيقونة والنص */
}

.category-list li a:hover {
  color: #ffd700; /* تغيير اللون عند تمرير الماوس (ذهبي مثلاً) */
  transform: translateY(-2px);
}

/* تحسين المظهر للهواتف */
@media (max-width: 768px) {
  .category-list {
    gap: 10px;
  }
  .category-list li {
    margin: 5px;
  }
}
.product-img img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* للحفاظ على أبعاد الصنبور دون قصه */
  background-color: #f9f9f9;
}
/* تعديل حاوية الميجا منيو لتناسب الصور 


*/
/* تعديل حاوية الميجا منيو لتناسب الصور */
/* الكود الذي أرسلته مع إضافة التفعيل */
.has-mega:hover .mega-content {
  display: grid; /* لضمان عمل التوزيع التلقائي للأعمدة */
}

.mega-content {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-bottom: 5px solid #004a99; /* استبدلت المتغير بقيمة مباشرة للضمان */
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  box-sizing: border-box;
  z-index: 9999;
}

.mega-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 15px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mega-column:hover {
  background-color: #f5f5f5;
}

.mega-visual-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mega-visual-wrapper img {
  width: 80%; /* تصغير بسيط لترك مساحة جمالية */
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mega-column:hover img {
  transform: scale(1.1);
}

.mega-column h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111 !important;
  text-align: center;
  margin: 0 !important;
  border: none !important;
}
/* ================================
   FOOTER – Optimized
================================ */

.main-footer {
  background: #161616;
  color: #e6e6e6;
  padding: 50px 0 20px;
  margin-top: 60px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

/* Titles */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col h3 span {
  color: var(--accent-color);
}

.footer-col h4 {
  font-size: 17px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 6px;
}

/* Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #cccccc;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2c2c2c;
  aspect-ratio: 16 / 9;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2b2b2b;
  color: #ffffff;
  border-radius: 50%;
  margin: 12px 8px 0 0;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #2a2a2a;
  font-size: 13px;
  color: #999;
}

/* Mobile */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 15px;
  }

  .footer-grid {
    text-align: center;
    gap: 25px;
  }

  .footer-col h4 {
    margin: 0 auto 16px;
  }
}
/*سلللللللللللللللللللللللللللللللللللة*/

.cart {
  position: relative;
  margin-left: auto; /* لجعلها على اليمين */
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-commande {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0056b3; /* أزرق جذاب */
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.p-commande:hover {
  background-color: #004494;
  transform: scale(1.05);
}
/* 🔧 إصلاح layout في الهاتف */
@media (max-width: 768px) {
  .selection-content {
    grid-template-columns: 1fr; /* عمود واحد */
    gap: 15px;
    padding: 10px;
    display: block;
  }

  /* اجعل المنتجات تأخذ العرض الكامل */
  .product-container-wrapper {
    width: 100%;
  }

  /* اخفاء sidebar في الهاتف */
  .promo-sidebar {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
}
.seo-text p {
text-align: center;
  padding: 5px 0;
  font-size: 0.85rem; /* تصغير الخط */
  color: #777; /* لون رمادي خفيف */
  line-height: 1.6;
}
