* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  font-size: 10px;
  /* 1 rem 10px */
}
body {
  font-size: 1.6rem;
  color: var(--texte-fonce);
  font-family: var(--font-corps);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Fond dégradé flouté harmonieux - Rose principale */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      ellipse 80% 50% at 30% 20%,
      rgba(229, 72, 138, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 70% 10%,
      rgba(244, 211, 94, 0.35) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 80%,
      rgba(32, 197, 199, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 70%,
      rgba(246, 231, 201, 0.6) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 60%,
      rgba(247, 127, 0, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(246, 231, 201, 0.9) 0%,
      rgba(229, 72, 138, 0.15) 50%,
      rgba(32, 197, 199, 0.1) 100%
    );
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* modification de la deuxieme section */

.slider-area {
  height: 450px;
  width: 100%;
}

.slider-area .slider-item {
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

.slider-area .slider-item .box {
  position: absolute;
  width: 100%;
  height: 450px;
  background: rgba(229, 72, 138, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slider-area .slider-item .box h1 {
  font-size: 40px;
  color: white;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  margin-top: 5px;
  max-width: 700px;
  width: 90%;
  transform: translateY(200px);
  opacity: 0;
  transition: all 1s ease;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.slider-area .slider-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-area .slider-item p {
  font-size: 14px;
  color: white;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  max-width: 700px;
  width: 90%;
  transform: translateX(400px);
  opacity: 0;
  transition: all 1s ease;
  padding: 10px 18px;
  border-radius: 8px;
}

.slider-area .slider-item button {
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  font-size: 18px;
  background: rgba(229, 72, 138, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  margin-top: 30px;
  text-transform: capitalize;
  transform: translateX(-400px);
  opacity: 0;
  transition: all 1s ease;
  font-weight: 600;
  box-shadow: var(--ombre-promo);
}

/* Responsive Design pour le Slider */
@media (max-width: 1200px) {
  .slider-area {
    height: 550px;
  }

  .slider-area .slider-item {
    height: 550px;
  }

  .slider-area .slider-item .box {
    height: 550px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 36px;
    max-width: 600px;
    transform: translateY(180px);
    padding: 10px 18px;
  }

  .slider-area .slider-item p {
    font-size: 13px;
    max-width: 600px;
    transform: translateX(350px);
    padding: 8px 16px;
    margin-top: 25px;
  }

  .slider-area .slider-item button {
    font-size: 16px;
    padding: 9px 18px;
    margin-top: 25px;
    transform: translateX(-350px);
  }
}

@media (max-width: 992px) {
  .slider-area {
    height: 480px;
  }

  .slider-area .slider-item {
    height: 480px;
  }

  .slider-area .slider-item .box {
    height: 480px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 32px;
    max-width: 550px;
    transform: translateY(150px);
    padding: 10px 16px;
  }

  .slider-area .slider-item p {
    font-size: 12px;
    max-width: 550px;
    transform: translateX(300px);
    padding: 8px 14px;
    margin-top: 20px;
  }

  .slider-area .slider-item button {
    font-size: 15px;
    padding: 8px 16px;
    margin-top: 20px;
    transform: translateX(-300px);
  }
}

@media (max-width: 768px) {
  .slider-area {
    height: 400px;
  }

  .slider-area .slider-item {
    height: 400px;
  }

  .slider-area .slider-item .box {
    height: 400px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 26px;
    max-width: 90%;
    width: 90%;
    transform: translateY(120px);
    padding: 8px 14px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 11px;
    max-width: 90%;
    width: 90%;
    transform: translateX(250px);
    padding: 6px 12px;
    margin-top: 15px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 13px;
    padding: 7px 14px;
    margin-top: 15px;
    transform: translateX(-250px);
  }
}

@media (max-width: 576px) {
  .slider-area {
    height: 350px;
  }

  .slider-area .slider-item {
    height: 350px;
  }

  .slider-area .slider-item .box {
    height: 350px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 20px;
    max-width: 95%;
    width: 95%;
    transform: translateY(100px);
    padding: 6px 12px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 10px;
    max-width: 95%;
    width: 95%;
    transform: translateX(200px);
    padding: 5px 10px;
    margin-top: 12px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 12px;
    transform: translateX(-200px);
  }
}

@media (max-width: 480px) {
  .slider-area {
    height: 300px;
  }

  .slider-area .slider-item {
    height: 300px;
  }

  .slider-area .slider-item .box {
    height: 300px;
  }

  .slider-area .slider-item .box h1 {
    font-size: 18px;
    max-width: 95%;
    width: 95%;
    transform: translateY(80px);
    padding: 5px 10px;
    text-align: center;
  }

  .slider-area .slider-item p {
    font-size: 9px;
    max-width: 95%;
    width: 95%;
    transform: translateX(150px);
    padding: 4px 8px;
    margin-top: 10px;
    text-align: center;
  }

  .slider-area .slider-item button {
    font-size: 11px;
    padding: 5px 10px;
    margin-top: 10px;
    transform: translateX(-150px);
  }
}

.active .slider-item .box button {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1.3s;
}
.active .slider-item .box p {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1s;
}
.active .slider-item .box h1 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

/* Ajustement des animations pour mobile */
@media (max-width: 768px) {
  .active .slider-item .box h1 {
    transform: translateY(0);
  }

  .active .slider-item .box p {
    transform: translateX(0);
  }

  .active .slider-item .box button {
    transform: translateX(0);
  }
}

/* Bannière services - style Planète Gâteau */
.services-banner {
  padding: 30px 20px;
  margin: -20px 20px 0;
  position: relative;
  z-index: 5;
}
.services-banner-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid rgba(229, 72, 138, 0.4);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(229, 72, 138, 0.12);
}
.service-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 15px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--couleur-dominante);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
}
.service-item h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--titres);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-item p {
  font-size: 12px;
  color: var(--texte-fonce);
  margin: 0;
  line-height: 1.4;
}
.service-divider {
  width: 1px;
  min-height: 60px;
  background: rgba(0, 0, 0, 0.08);
  align-self: center;
}

/* Responsive - regroupement 2 par 2, affichage réduit */
@media (max-width: 992px) {
  .services-banner {
    padding: 20px 15px;
    margin: -15px 15px 0;
  }
  .services-banner-inner {
    padding: 20px 15px;
  }
  .service-divider {
    display: none;
  }
  .service-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .service-item:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }
  .service-item:last-child {
    border-right: none;
    border-bottom: none;
    flex: 1 1 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .service-item h3 {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .service-item p {
    font-size: 11px;
  }
  .commande-perso-cta {
    margin-top: 18px !important;
  }
  .btn-commande-perso {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }
  .commande-perso-cta p {
    font-size: 12px !important;
    margin-top: 8px !important;
  }
}
@media (max-width: 576px) {
  .services-banner {
    margin: -15px 10px 0;
    padding: 12px 10px;
  }
  .services-banner-inner {
    padding: 12px 8px;
  }
  .service-item {
    flex: 1 1 calc(50% - 4px);
    padding: 8px 6px;
  }
  .service-item:last-child {
    flex: 1 1 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: none;
  }
  .service-item:last-child {
    border-bottom: none;
  }
  .service-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 6px;
  }
  .service-item h3 {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .service-item p {
    font-size: 10px;
    display: none;
  }
  .commande-perso-cta {
    margin-top: 12px !important;
  }
  .btn-commande-perso {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
  .commande-perso-cta p {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
}
@media (max-width: 400px) {
  .service-item {
    padding: 6px 4px;
  }
  .service-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .service-item h3 {
    font-size: 9px;
  }
}

/* modification de la section 3 */

.section3 {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section3 div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

.section3 div img {
  height: 80px;
  width: 80px;
  margin-right: 50px;
  object-fit: contain;
}

/* Responsive Design pour section3 */
@media (max-width: 1200px) {
  .section3 {
    height: 280px;
    padding: 18px;
  }

  .section3 div {
    width: 75%;
    margin-bottom: 8px;
    gap: 12px;
  }

  .section3 div img {
    height: 70px;
    width: 70px;
    margin-right: 40px;
  }
}

@media (max-width: 992px) {
  .section3 {
    height: 250px;
    padding: 15px;
  }

  .section3 div {
    width: 80%;
    margin-bottom: 8px;
    gap: 10px;
  }

  .section3 div img {
    height: 60px;
    width: 60px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .section3 {
    height: auto;
    min-height: 200px;
    padding: 15px 10px;
  }

  .section3 div {
    width: 90%;
    margin-bottom: 10px;
    gap: 8px;
  }

  .section3 div img {
    height: 50px;
    width: 50px;
    margin-right: 20px;
  }
}

@media (max-width: 576px) {
  .section3 {
    height: auto;
    min-height: 180px;
    padding: 12px 8px;
  }

  .section3 div {
    width: 95%;
    margin-bottom: 8px;
    gap: 6px;
  }

  .section3 div img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .section3 {
    height: auto;
    min-height: 160px;
    padding: 10px 5px;
  }

  .section3 div {
    width: 100%;
    margin-bottom: 6px;
    gap: 5px;
  }

  .section3 div img {
    height: 35px;
    width: 35px;
    margin-right: 10px;
  }
}

.categorie {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 30px 80px;
}
.categorie .item {
  width: 180px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin: 0 15px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}
.categorie .item:hover {
  border-color: rgba(229, 72, 138, 0.5);
  box-shadow: var(--ombre-promo);
  transform: translateY(-4px);
}
.categorie .item .img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.categorie .item p {
  font-size: 15px;
  margin: 5px 0;
  font-weight: 600;
  text-align: center;
  color: var(--titres);
}
.categorie .item span {
  font-size: 13px;
  font-style: italic;
  color: var(--couleur-dominante);
}

/* Responsive Design pour la section catégories */
@media (max-width: 1200px) {
  .categorie {
    padding: 20px 60px;
  }
  .categorie .item {
    width: 160px;
    padding: 8px;
    margin: 0 12px;
  }
  .categorie .item .img {
    height: 100px;
    width: 100px;
  }
  .categorie .item p {
    font-size: 14px;
  }
  .categorie .item span {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .categorie {
    padding: 20px 40px;
  }
  .categorie .item {
    width: 150px;
    padding: 8px;
    margin: 0 10px;
  }
  .categorie .item .img {
    height: 90px;
    width: 90px;
  }
  .categorie .item p {
    font-size: 13px;
  }
  .categorie .item span {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .categorie {
    padding: 15px 20px;
  }
  .categorie .item {
    width: 140px;
    padding: 8px;
    margin: 0 8px;
  }
  .categorie .item .img {
    height: 80px;
    width: 80px;
  }
  .categorie .item p {
    font-size: 12px;
  }
  .categorie .item span {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .categorie {
    padding: 15px 10px;
  }
  .categorie .item {
    width: 120px;
    padding: 6px;
    margin: 0 5px;
  }
  .categorie .item .img {
    height: 70px;
    width: 70px;
  }
  .categorie .item p {
    font-size: 11px;
  }
  .categorie .item span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .categorie {
    padding: 10px 5px;
  }
  .categorie .item {
    width: 100px;
    padding: 5px;
    margin: 0 3px;
  }
  .categorie .item .img {
    height: 60px;
    width: 60px;
  }
  .categorie .item p {
    font-size: 10px;
  }
  .categorie .item span {
    font-size: 8px;
  }
}

.affiches {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 0;
  width: 100%;
  flex-direction: column;
}
.affiches .containe-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiches .box1 {
  width: 90%;
}
.affiches .box1 h1 {
  width: 60%;
  padding: 5px 20px;
  font-weight: 400;
  font-size: 30px;
  text-align: left;
  margin-left: 200px;
}
.affiches .box2 {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.affiches .box2 .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.affiches .box2 .slider .item {
  height: 290px;
  width: 230px;
  border: 1px solid rgba(229, 72, 138, 0.2);
  flex-direction: column;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}
.affiches .box2 .slider .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.affiches .box2 .slider .item h4 {
  text-align: left;
  font-size: 18px;
  font-weight: 200;
  width: 100%;
  margin-top: 10px;
  padding-left: 10px;
}
.affiches .box2 .slider .item p {
  font-size: 14px;
  width: 100%;
  margin-top: 10px;
  padding-left: 10px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
.affiches .box2 .slider .item p span {
  margin-right: 6px;
}
.affiches .box2 .slider .item p .span2 {
  padding: 0 2px;
  background: rgba(244, 211, 94, 0.3);
  color: var(--texte-fonce);
  text-decoration: line-through;
}
.affiches .box2 .slider .item p .span3 {
  padding: 0 2px;
  font-size: 12px;
  background: var(--orange);
  color: #ffffff;
}

.affiches .s_box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 550px;
  height: 700px;
  border: 1px solid rgba(229, 72, 138, 0.2);
  position: relative;
  border-radius: 20px;
}
.affiches .s_box2 .explore {
  height: 100%;
  width: 100%;
  background: rgba(229, 72, 138, 0.4);
  backdrop-filter: blur(10px);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
}
.affiches .s_box2 .explore p {
  font-size: 25px;
  color: #ffffff;
  background: rgba(229, 72, 138, 0.8);
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 10px;
}
.affiches .s_box2 .explore p .span11,
.span22 {
  font-size: 60px;
  margin: 0 20px;
}
.affiches .s_box2 .explore a {
  padding: 8px 20px;
  background: rgba(32, 197, 199, 0.8);
  color: #ffffff;
  font-size: 20px;
  margin-top: 30px;
  border-radius: 25px;
}
.affiches .s_box2 .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 700px;
  border-radius: 20px;
}
.affiches .s_box2 .slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* produit_vedete */

.produit_vedete {
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  background: transparent;
}

.produit_vedete h1 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--titres);
  letter-spacing: 2px;
  font-family: var(--font-titres);
}

.produit_vedete .box1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 50px;
}
.produit_vedete .box1 span {
  width: 60px;
  height: 4px;
  background: var(--couleur-dominante);
  border-radius: 2px;
}

.produit_vedete .articles {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.produit_vedete .articles .carousel:hover {
  transform: scale(1.05);
}

.produit_vedete .articles .carousel #nom {
  font-weight: 400;
  overflow: hidden;
  font-size: 17px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedete .articles .carousel #ville {
  font-size: 13px;
  color: var(--couleur-dominante);
  text-transform: capitalize;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
}
.produit_vedete .articles .carousel .prix {
  font-size: 13px;
  width: 100%;
  margin: 10px;
  padding-left: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.produit_vedete .articles .carousel .prix .span1 {
  color: var(--accent-promo);
  font-size: 10px;
}
.produit_vedete .articles .carousel .prix .span2 {
  padding: 0 2px;
  background: rgba(244, 211, 94, 0.3);
  color: var(--texte-fonce);
  text-decoration: line-through;
}
.produit_vedete .articles .carousel .prix .span3 {
  padding: 0 2px;
  font-size: 11px;
  background: var(--orange);
  color: #ffffff;
}
.produit_vedete .articles .carousel a {
  width: 200px;
  padding: 4px 13px;
  background: var(--couleur-dominante);
  margin-left: 50%;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 10px;
  display: block;
  margin-top: 10px;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 10px;
  right: -100px;
}
.produit_vedete .articles .carousel a:hover {
  background: rgba(229, 72, 138, 0.9);
}

.produit_vedete .box2 {
  width: 70%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.produit_vedete .box2 span {
  height: 40px;
  width: 50px;
  background: var(--couleur-dominante);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.5s ease-in-out;
}
.produit_vedete .box2 p {
  font-size: 20px;
  color: var(--titres);
}
.produit_vedete .box2 span:hover {
  transform: scale(1.1);
  background: rgba(229, 72, 138, 0.9);
}
.produit_vedete .box2 span {
  color: white;
  font-size: 25px;
}

/* footer */

footer {
  min-height: 74px;
  background: rgba(229, 72, 138, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer span {
  color: white;
  font-size: 15px;
  font-weight: lighter;
  font-style: italic;
  font-family: "Nunito", sans-serif;
}

/* modification de la quatrieme section */

.section4 {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 30px 0;
}
.section4 .slider {
  display: flex;
  height: 500px;
  width: 100%;
  position: relative;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  /* L'image de fond est définie dynamiquement via le style inline */
}
.section4 .slider p {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  color: #ffffff;
  background: rgba(229, 72, 138, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--ombre-promo);
}
.section4 .slider a {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%);
  color: #ffffff;
  padding: 12px 32px;
  background: rgba(229, 72, 138, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: var(--ombre-promo);
}
.section4 .slider .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section4 .slider .box .text {
  position: absolute;
  width: 50%;
  height: auto;
  min-height: 80px;
  background: rgba(229, 72, 138, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0.5px;
  border-radius: 12px;
  box-shadow: var(--ombre-promo);
  padding: 15px 20px;
}
.section4 .slider .box .text h1 {
  font-size: 14px;
  color: white;
  font-family: var(--font-titres);
  width: 100%;
  text-align: center;
  margin-top: 0;
  text-transform: uppercase;
  padding: 0;
  font-weight: 600;
}

/* .section{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}
.trending {
    background-color: #000000;
    padding: 8rem 4rem;
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    grid-gap: 2rem;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .trending_img {
    width: 100%;
  }
  .trending_p {
    color: green;
  }
  .trending_title {
    color: white;
    font-size: 4rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  .trending_btn {
    background-color: green;
    padding: 1rem 2rem;
    color: white;
  } */

/* partie product affiche  */

.produit_afiche {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin: 50px 0;
}

.produit_afiche .box {
  height: 600px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produit_afiche .box img {
  height: 600px;
  width: 500px;
  object-fit: cover;
}
.produit_afiche .box h1 {
  font-size: 80px;
  margin: 10px 80px;
  text-transform: uppercase;
}

.section5 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.section5 h1 {
  width: 60%;
  text-align: left;
  font-size: 30px;
  margin: 20px 0;
  color: var(--titres);
  font-weight: 700;
  font-family: var(--font-titres);
}
.section5 .container {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.section5 .slider {
  width: 100%;
  max-width: 600px;
  min-width: 300px;
  border: 1px solid rgba(229, 72, 138, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  margin-left: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}
.section5 .slider:hover {
  box-shadow: var(--ombre-promo);
}
.section5 .slider img {
  height: 100%;
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  object-fit: cover;
}
.section5 .slider .box {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.section5 .slider .box h4 {
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(229, 72, 138, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--ombre-promo);
  width: 90%;
  margin-bottom: 10px;
  font-weight: 600;
}
.section5 .slider .box a {
  padding: 12px 20px;
  font-size: 13px;
  text-align: center;
  background: rgba(32, 197, 199, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(32, 197, 199, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
}
.section5 .slider .box a:hover {
  background: rgba(229, 72, 138, 0.8);
}

@media (max-width: 708px) {
  .section5 .slider {
    margin-top: 20px;
    padding: 10px 20px;
  }
  .section5 .slider img {
    max-width: 400px;
    min-width: 300px;
    max-height: 150px !important;
  }
}
/* ajoute de style */
.section0 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* Responsive pour section0 */
@media (max-width: 992px) {
  .section0 {
    padding: 0px 15px;
  }
}

@media (max-width: 768px) {
  .section0 {
    padding: 0px 10px;
  }
}

@media (max-width: 576px) {
  .section0 {
    padding: 0px 5px;
  }
}

/* ============================================
   Galerie Nos créations - Design élégant
   ============================================ */
.galerie-creations {
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.galerie-creations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.galerie-header {
  text-align: center;
  margin-bottom: 50px;
}

.galerie-surtitre {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--couleur-dominante);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.galerie-titre {
  font-size: 42px;
  font-weight: 700;
  color: var(--titres);
  font-family: var(--font-titres);
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.galerie-sous-titre {
  font-size: 16px;
  color: var(--texte-fonce);
  opacity: 0.8;
  margin: 0;
}

/* Grille galerie */
.galerie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.galerie-item {
  margin: 0;
}

.galerie-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(229, 72, 138, 0.08);
  border: 1px solid rgba(229, 72, 138, 0.12);
  transition: all 0.4s ease;
}

.galerie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(229, 72, 138, 0.18);
  border-color: rgba(229, 72, 138, 0.25);
}

.galerie-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #1a1a1a;
  overflow: hidden;
}

.galerie-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galerie-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(229, 72, 138, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.galerie-video.playing + .galerie-play-overlay {
  opacity: 0;
}

.galerie-caption {
  padding: 18px 20px;
  border-top: 1px solid rgba(229, 72, 138, 0.08);
}

.galerie-caption h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--titres);
  margin: 0;
  line-height: 1.4;
}

/* Legacy - Slider vidéo (si utilisé ailleurs) */
.video-card {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 400px;
  width: 100%;
  margin: 0;
}

.video-card-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ombre-gourmande);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000000;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Boutons de navigation (slider legacy) */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 72, 138, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--ombre-promo);
  z-index: 10;
  font-size: 20px;
  color: #ffffff;
}

.slider-nav:hover {
  background: rgba(32, 197, 199, 0.8);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}
.slider-next {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 30px;
  z-index: 10;
  position: relative;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--couleur-dominante);
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .galerie-titre {
    font-size: 32px;
  }

  .galerie-header {
    margin-bottom: 35px;
  }

  .galerie-surtitre {
    font-size: 12px;
    letter-spacing: 3px;
  }
}

.produit_vedetes .box2 span {
  color: white;
  font-size: 25px;
}

/* Bouton Voir tous les produits */
.voir-tous-produits-wrapper {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
}
.btn-voir-tous-produits {
  padding: 14px 35px;
  background: rgba(229, 72, 138, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--ombre-promo);
}
.btn-voir-tous-produits:hover {
  background: rgba(32, 197, 199, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 197, 199, 0.3);
}

/* Section tous nos produits */
.section00 {
  background: transparent;
  padding: 50px 0;
}
.produit_vedetes .box1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.produit_vedetes .box1 h1 {
  color: var(--titres);
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--font-titres);
  position: relative;
}
.produit_vedetes .box1 h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--couleur-dominante);
  margin: 10px auto 0;
  border-radius: 2px;
}
