
/* ================= Global ================= */
/* تعديل لتجنب إخفاء التمرير الأفقي */
html, body {
  width: 100%;
  min-height: 100vh; /* تأكد من أن الـ body يشغل كامل الشاشة */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #E0CCC9;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


img, .hero-container img, .cat img, .banner-right img {
  max-width: 100%;
  height: auto;
}


.d-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


/* ================= Header ================= */
.header {
  background-color: #E0CCC9;
  padding: 15px 0;
}

.top-nav {
  background-color: #ffffff;

  font-size: 14px;
  color: #444;
  justify-content: center;

}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo {
  display: flex; /* تفعيل الفليكس بوكس */
  justify-content: center; /* توسيط الصورة أفقياً */
  align-items: center; /* توسيط الصورة عمودياً */
  height: 20px; /* تحديد ارتفاع العنصر */
}

.logo img {
  max-width: 80%; /* السماح للصورة بأن تملأ العرض ولكن مع الحفاظ على النسب */
  height: auto; /* الحفاظ على النسب الأصلية للطول */
  object-fit: contain; /* الحفاظ على الصورة كاملة داخل العنصر بدون قص */
  transform: translateY(-10px); /* رفع الصورة قليلاً إلى الأعلى */

}


.icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.icon {
  margin-left: 15px;
  font-size: 20px;
  position: relative;
}

.icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 5px 8px;
  font-size: 12px;
}

/* أيقونة القائمة الجانبية */
.menu-icon {
  display: block;
  font-size: 30px;
  cursor: pointer;
}

/* Liste latérale */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px; /* Masquée initialement */
  width: 250px;
  height: 100%;
  background-color: #E0CCC9;
  color: #444;
  transition: left 0.3s ease; /* Animation d'ouverture */
  padding-top: 60px; /* Marge pour les éléments */
  z-index: 9999; /* Assurez-vous que le menu est au-dessus des autres éléments */
}
/* زر الإغلاق (X) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #444;
}

.close-btn:hover {
  color: #e0ccc9;
}


.side-menu.open {
  left: 0; /* Affiche la barre latérale quand "open" est ajouté */
}

/* Autres éléments restent à leur place */

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  padding: 15px;
  text-align: center;
}

.nav-link {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

.nav-link:hover {
  color: #e0ccc9;
}

/* عند الشاشات الصغيرة */
@media (max-width: 768px) {
  .icons {
    display: none; /* إخفاء الأيقونات في الشاشات الصغيرة */
  }
}



/* ================= Hero / Slider ================= */
.hero {
  padding: 0;
  display: flex;
  justify-content: center;
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Limiter la largeur */
}

.hero-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.hero-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 30px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #121212;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .hero-btn {
    padding: 10px 20px;
  }
}

/* ================= Categories ================= */

.cat-center {
  display: grid; /* تحويل إلى grid */
  grid-template-columns: 1fr 1fr; /* عرض منتجين في كل سطر */
  gap: 15px; /* المسافة بين المنتجات */
  padding: 50px 0;
}

.cat {
  position: relative;
  overflow: hidden;
  border-radius: 150px;
}

.cat img {
  width: 100%;
  display: block;
}
.cat div {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #E0CCC9;
  color: #333;
  border-radius: 5px;
}
.cat-text {
  padding: 10px;
  text-align: center;
  background-color: #E0CCC9;
  color: #333;
  border-radius: 5px;
  margin-top: 10px; /* يبعد النص عن الصورة */
}


/* ================= Products ================= */
.product-center {
  display: grid;
  grid-template-columns: 1fr 1fr; /* عرض منتجين في كل سطر */
  gap: 15px; /* المسافة بين المنتجات */
  margin: 3rem auto; /* center the grid horizontally */
  justify-content: center; /* center the items in the grid */
  max-width: 1200px; /* الحد من العرض */
  padding: 50px 0;
}


.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.product-item:hover {
  transform: translateY(-8px);
}

.overlay img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.product-info {
  padding: 1rem;
  text-align: center;
}
.product-info span {
  color: #888;
  font-size: 13px;
}
.product-info a {
  display: block;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
  text-decoration: none;
}
.product-info h4 {
  color: #000000;
  margin-top: 8px;
}

/* Icônes */
.icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: 0.3s;
}
.product-item:hover .icons {
  opacity: 1;
}

.icons i {
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  cursor: pointer;
  color: #c71585;
  transition: 0.3s;
}
.icons i:hover {
  background: #c71585;
  color: white;
}

.add-to-cart {
  background: #c71585;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}
.new-arrival .title {
  text-align: center;
  margin-bottom: 2rem;
}

.new-arrival .title h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.new-arrival .title p {
  color: #555;
  font-size: 1rem;
}
a {
  text-decoration: none !important;
}

/* ================= Marques ================= */
.mrq-center {
  display: flex; /* استخدام flexbox لعرض العناصر في نفس السطر */
  overflow-x: auto; /* تمكين التمرير الأفقي */
  gap: 15px; /* المسافة بين البطاقات */
  padding: 10px 0;
  scroll-snap-type: x mandatory; /* إضافة تأثير التمرير الانسيابي */
}

.mrq {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  min-width: 250px; /* عرض البطاقة */
  scroll-snap-align: start; /* تحديد مكان البطاقة أثناء التمرير */
}

.mrq img {
  width: 100%;
  display: block;
}

.mrq div {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #333;
  border-radius: 5px;
}

.mrq-text {
  padding: 10px;
  text-align: center;
  background-color: #E0CCC9;
  color: #333;
  border-radius: 5px;
  margin-top: 10px; /* يبعد النص عن الصورة */
}

/* ================= Banner ================= */

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #e0ccc9;
  gap: 20px;
}

.banner-left {
  flex: 1 1 400px;
  padding: 20px;
}

.banner-left span {
  font-size: 1.2rem;
  color: #121212;
  font-weight: 600;
}

.banner-left h1 {
  font-size: 2.8rem;
  margin: 10px 0;
  color: #121212;
}

.banner-left p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #121212;
}

.banner-left .color {
  color: #c71585;
  font-weight: bold;
}

.banner-left .btn-1 {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background-color: #121212;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-left .btn-1:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Partie image */
.banner-right {
  flex: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-right img {
  width: 100%; /* prend toute la largeur disponible */
  height: 100%; /* garde les proportions de l'image */
  max-height: 100px; /* limite la hauteur (ajustable) */
  object-fit: contain; /* affiche toute l'image sans zoom */
  display: block;
}



/* ================= Promo Banner ================= */
.promo-banner {
  background-image: url("images/skinn.png"); /* 🖼️ ton image ici */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}



.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.55); /* léger voile sombre */
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.promo-content p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.promo-content strong {
  color: #e0ccc9; /* couleur douce assortie à ta palette */
}

.promo-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background-color: #121212;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background-color: #ffffff;
  color: #121212;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* ================= image2 Banner ================= */
.image2-banner {
  background-image: url("images/shop.png"); /* 🔁 remplace par ton image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh; /* pleine hauteur de l'écran */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.image2-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.image2-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.image2-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.image2-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.image2-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background-color: #c71585; /* ta couleur principale */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.image2-btn:hover {
  background-color: #fff;
  color: #c71585;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.view-products {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background-color: #fff; /* ta couleur principale */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-products:hover {
  background-color: #fff;
  color: transparent;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}




/* ================= image3 Banner ================= */
.image3-banner {
  background-image: url("images/teest.png"); /* 🔁 remplace par ton image */
  background-size: contain;
  background-position: top center; /* تحديد تموضع الصورة من الأعلى */
  background-repeat: no-repeat; /* لا تكرار للصورة */
  height: 25vh; /* تقليل الارتفاع لتناسب الحجم */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;

}
  

.image3-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.image3-content {
  position: relative;
  z-index: 2;
  max-width: 200px;
  padding: 0 20px;
}

.image3-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.image3-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.image3-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background-color: #c71585; /* ta couleur principale */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.image3-btn:hover {
  background-color: #fff;
  color: #c71585;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* ================= featured ================= */

.featured .title {
  text-align: center;
  margin-bottom: 2rem;
}

.featured .title h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.featured .title p {
  color: #555;
  font-size: 1rem;
}

/* ================= Promo Banner1 ================= */
.promo-banner1 {

  background-image: url("images/women.jpeg"); /* 🖼️ ton image ici */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  
  }

  .promo-content1 {
    max-width: 850px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
  }
  
.promo-content1 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffe5ec;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-content1 p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f9f9f9;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Bouton promo */
.promo-btn {
  background-color: #c71585;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.promo-btn:hover {
  background-color: #e48cb4;
  transform: translateY(-3px);
}

/* Animation douce */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ================= Banner avec effet ambient ================= */
.banner-ambient {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url("images/bannerambient.png"); /* mets ton image ici */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Contenu centré */
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* Texte */
.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Bouton */
.banner-btn {
  display: inline-block;
  background-color: #c71585;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: #fff;
  color: #c71585;
  transform: scale(1.05);
}

/* Section du bouton sous le banner */
.banner-bottom {
  text-align: center; /* ✅ centre horizontalement */
  margin-top: -40px; /* ✅ remonte légèrement sous le banner */
  margin-bottom: 60px;
  position: relative;
  z-index: 5; /* ✅ reste au-dessus du fond */
}

/* Bouton "Contacter-Nous" */
.image3-btn {
  display: inline-block;
  border: 1px solid #121212; /* ✅ contour noir */
  color: #121212;
  background: transparent; /* ✅ fond transparent */
  padding: 12px 35px;
  border-radius: 0;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.image3-btn:hover {
  background-color: #121212;
  color: #fff;
  transform: scale(1.05);
}



/* ================= Responsive ================= */


/* Mobile Styles (max-width: 600px) */
@media screen and (max-width: 600px) {
  body {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 0px;
  }

  header {
    text-align: center;
  }

  .cat-center {
    grid-template-columns: 1fr 1fr; /* عمودين في السطر الواحد */
    gap: 15px;
  }

  .hero-btn {
    padding: 10px 20px;
  }

  .banner-left h1 {
    font-size: 1.5rem;
  }

  .banner-left p {
    font-size: 1rem;
  }

  .product-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

/* Tablet Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
  .hero-btn {
    padding: 10px 20px;
  }

  .banner-left h1 {
    font-size: 2rem;
  }

  .product-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}


