
.footer1-wrapper {
  background-color: white;
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer1 {
  width: 95%;
  align-items: center;
  display: flex;
  justify-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}

.banner-promo {
  position: relative;
  width: 100%;
  background-image: url("../assets/img/background1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  overflow: hidden;
  margin: 20px 0px;
  min-height: 120px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
  text-align: center;
}

.banner-animate {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.banner-animate.banner-visible {
  opacity: 1;
  transform: scale(1);
}

/* Animation image gauche */
.animate-from-left {
  opacity: 0;
  transform: translateX(-100px) translateY(-30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.banner-visible .animate-from-left {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Animation contenu central */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.banner-visible .animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation image droite */
.animate-from-right {
  opacity: 0;
  transform: translateX(100px) translateY(-30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.banner-visible .animate-from-right {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Base Images Positioning */
.banner-image-left {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 10px;
  background: none;
  width: auto;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.banner-image-left img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* Double Gift Box - Right Side */
.banner-image-right {
  position: absolute;
  bottom: 0;
  right: 10px;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  height: 120px;
  width: auto;
}

.banner-image-right .gift-large {
  width: auto;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
}

.banner-image-right .gift-small {
  width: auto;
  height: 50%;
  max-height: 60px;
  object-fit: contain;
  margin-left: -5px;
  align-self: flex-end;
}

/* Contenu central */
.banner-content {
  position: relative;
  z-index: 10;
  background: none;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 140px;
}

.banner-subtitle {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
  background: none;
  margin-bottom: 0.25rem;
}

.banner-title {
  font-size: 3rem;
  font-weight: bold;
  color: #f97316;
  margin: 0.25rem 0;
  background: none;
}

/* ============ RESPONSIVE ============ */

/* Desktop Large */
@media (min-width: 1024px) {
  .banner-promo {
    padding: 3rem 1rem;
    min-height: 160px;
  }

  .banner-image-left {
    left: 20px;
    width: auto;
    height: 100%;
  }

  .banner-image-right {
    right: 20px;
    height: 160px;
  }

  .banner-image-right .gift-large {
    max-height: 160px;
  }

  .banner-image-right .gift-small {
    max-height: 80px;
    margin-left: -8px;
  }

  .banner-content {
    padding: 0 220px;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .banner-title {
    font-size: 3rem;
  }
}

/* Extra Large Desktop */
@media (min-width: 1280px) {
  .banner-title {
    font-size: 3.5rem;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 651px) {
  .banner-image-left {
    left: 15px;
    width: auto;
    height: 100%;
  }

  .banner-image-right {
    right: 15px;
    height: 130px;
  }

  .banner-image-right .gift-large {
    max-height: 130px;
  }

  .banner-image-right .gift-small {
    max-height: 65px;
    margin-left: -6px;
  }

  .banner-content {
    padding: 0 160px;
  }
}

@media (max-width: 650px) {
  .banner-promo {
    min-height: 100px;
    padding: 1.5rem 1rem;
  }

  .banner-image-left {
    left: 5px;
    width: auto;
    height: auto;
    top: auto;
    bottom: 0;
    max-height: 90px;
  }

  .banner-image-left img {
    height: auto;
    max-height: 90px;
    width: auto;
  }

  .banner-image-right {
    right: 5px;
    height: 70px;
  }

  .banner-image-right .gift-large {
    max-height: 70px;
  }

  .banner-image-right .gift-small {
    max-height: 35px;
    margin-left: -3px;
  }

  .banner-content {
    padding: 0 90px;
  }

  .banner-subtitle {
    font-size: 0.6rem;
    /*white-space: nowrap;*/
  }

  .banner-title {
    font-size: 1.3rem;
    /*white-space: nowrap;*/
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .banner-promo {
    min-height: 80px;
    padding: 1rem 0.5rem;
  }

  .banner-image-left {
    left: 3px;
    max-height: 75px;
  }

  .banner-image-left img {
    max-height: 75px;
  }

  .banner-image-right {
    right: 3px;
    height: 60px;
  }

  .banner-image-right .gift-large {
    max-height: 60px;
  }

  .banner-image-right .gift-small {
    max-height: 30px;
    margin-left: -2px;
  }

  .banner-content {
    padding: 0 70px;
  }

  .banner-subtitle {
    font-size: 0.6rem;
  }

  .banner-title {
    font-size: 1.2rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
  .banner-image-left {
    left: 2px;
    max-height: 65px;
  }

  .banner-image-left img {
    max-height: 65px;
  }

  .banner-image-right {
    right: 2px;
    height: 55px;
  }

  .banner-image-right .gift-large {
    max-height: 55px;
  }

  .banner-image-right .gift-small {
    max-height: 27px;
  }

  .banner-content {
    padding: 0 60px;
  }

  .banner-subtitle {
    font-size: 0.55rem;
  }

  .banner-title {
    font-size: 1rem;
  }
}