/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  overflow-x: hidden;
  background: #f5f5f5;
}
 
/* ========== NAVBAR ========== */

.navbar {
  background-color: #f5f5f5;
  padding: 20px 20px;
  justify-content: center;
  align-items: center;
  position: relative;

}

.nav-link {
  color: black !important;
  margin: 0 10px;
  font-size: 20px;
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #136908 !important;
}

.navbar-brand {
  margin-right: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


.navbar-brand img {
 width: 95px; 
  height: auto;
  display: block;
}

.btn-custom {
  background: #136908;
  color: white;
  border: none;
  border-radius: 30px;
  padding:10px 25px;
  transition: 0.3s;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background: #0e5206;
  color: white;
}

.user-icon {
  font-size: 22px;
  color: black;
  cursor: pointer;
}


@media (max-width: 992px) {
  .navbar-brand {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 15px auto 5px auto;
    text-align: center;
    display: none !important;
  }

  
  .navbar-collapse {
    text-align: center;
  }
}

/* ========== SECTION HERO / ACCUEIL ========== */
.accueil-mobile{
    display:none;
}

.accueil-web{
    display:block;
    position:relative;
    height:66vh;
    overflow:hidden;
}

.accueil-img-web{
    width:100%;
    height:100%;
    object-fit:cover;
}
.accueil-web,
.accueil-mobile {
    position: relative;
}
.accueil-content {
    position: absolute;
    left: 50%;
    bottom: 40px;   
    transform: translateX(-50%);
    z-index: 10;
}
.hero-text {
  background: #f5f5f5;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  padding:10px 20px 30px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.10em;
}

.hero-text p {
  font-size: 24px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  margin: auto;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ========== SECTION TITRES ========== */
.section-title {
  text-align: center;
  padding: 10px 20px 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
}

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.line {
  width: 100px;
  height: 4px;
  background: #136908;
  margin: 25px auto;
  border-radius: 10px;
}

/* ========== CARDS PRODUIT ========== */
.cards {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card-box {
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s;
  background: white;
}

.card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card-content p {
  color: #666;
  font-size: 15px;
}

@media (min-width: 992px) {
  .accueil {
    height: 66vh;
  }
  
  .accueil-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .accueil {
    height: auto;
    min-height: auto; 
  }
  
  .accueil-img {
    width: 100%;
    height: auto;      
    object-fit: none;  
    display: block;
  }
  
  .accueil-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* ========== SECTION 2 - PROBLEME ========== */
.section-two {
  margin-bottom: 20px;
  background: #F8F8F8;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0%;
}

.section-header h2,p {
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
  max-width: 900px;
  margin: auto;
}
.section-header p{
  font-size: 18px;
 
}

.cards-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 0%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 50px;
}
 .cards-grid::-webkit-scrollbar {
    height: 5px;
  }
  .cards-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
  }
  .cards-grid::-webkit-scrollbar-thumb {
    background: #136908;
    border-radius: 10px;
  }


.info-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  text-align: start;
  padding: 0;
  margin: 0;
}

.info-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 10px;
  height: auto;
}

.card-tag {
  font-size: 16px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.red {
  color: #BE0707;
}

.green {
  color: #139F00;
}

.black {
  color: #000000;
}

.info-card h4 {
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: bold;
  margin-bottom: 12px;
  color: #000000;
  line-height: 1.2;
  width: auto;
  max-width: 90%;
  padding-top: 5%;
}

.info-card p {
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat';
  color: #000000;
  line-height: 1.2;
  margin-top: 10px;
  width: auto;
  max-width: 90%;

}
.section-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 15px; /* espace entre le texte et le bouton */
}

.section-btn p {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;

}

.btn-order {
  background: #0d7c13;
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
  font-family: 'Montserrat';
  text-decoration: none;
  display: inline-block;
}

.btn-order:hover {
  background: #095b0d;
  color: white;
}

/* TABLET + IPAD */

@media (min-width: 768px) and (max-width: 1129px) {

  .cards-grid {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
  }

  .info-card {
    flex: 0 0 370px;
    max-width: 370px;
  }
 

}


/* BIG DESKTOP */

@media (min-width: 1130px) {

  .cards-grid {
    overflow-x: hidden;
    justify-content: center;
    gap: 20px;
  }

  .info-card {
    flex: 0 0 320px;
    max-width: 320px;
  }


}
/* ========== SECTION 3 - VIDEO ========== */
.video-section {
  padding: 30px 20px;
  background: #F2F2F2;
}

.video-header {
  text-align: center;
  margin-bottom: 30px;
}

.video-header h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "Montserrat";
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.video-header p {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.08em;
}

.red-line {
  width: 90px;
  height: 4px;
  background: #BE0707;
  margin: 20px auto;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: red;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-btn i {
  color: white;
  font-size: 50px;
  margin-left: 5px;
}

.video-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-video {
  background: #136908;
  color: white;
  border: none;
  padding: 16px 50px;
  border-radius: 8px;
  width: auto;
  min-width: 234px;
  font-size: 18px;
  font-family: 'Montserrat';
  font-weight: 800;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-video:hover {
  background: #095b0d;
  color: white;
}
@media (max-width: 576px) {
  .btn-video {
    padding: 14px 25px;
    font-size: 16px;
    text-align: center;
  }

}
/* ========== SECTION 4 - EASY ========== */
.easy-section {
  background: #F8F8F8;
  padding: 80px 20px;
  text-align: center;
}

.easy-header h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.07em;
  width: 100%;
  max-width: 900px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.easy-header h2 br {
  display: block;
  content: "";
  margin-top: 5px;
}
.arrow-down {
  color: #CC1212;
  font-size: 30px;
  display: inline-block;
  margin-bottom: 35px;
  width: auto;
  height: auto;
}

.easy-features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;
  padding: 0 15px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: #e9e9e9;
  padding: 22px 18px;
  border-radius: 10px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.feature-card h3 {
  color: #CC1212;
  font-size: 36px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.feature-card span {
  color: #232323;
  font-size: 23px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

.easy-btn {
  margin-top: 40px;
}



/* ========== SECTION 5 - TESTIMONIALS ========== */
.testimonials-section {
  padding: 60px 20px;
  background: #F2F2F2;
}


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

.testimonials-header h2 {
  font-size: 48px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 10px;
}

.testimonials-header p {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 25px;
  padding: 10px 10px 25px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;


}
.testimonials-grid::-webkit-scrollbar {
  height: 5px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #dcdcdc;
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #136908;
  border-radius: 10px;
}


.testimonial-card {
  background: #f7f7f7;
  padding: 28px;
  border-radius: 18px;
  flex: 1 1 auto;  
  min-width: 250px;
  scroll-snap-align: start;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #060606;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: "Montserrat";
  letter-spacing: 0.08em;

}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto; 
}

.user-circle {
  width: 35px;
  height: 35px;
  background: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
}

.testimonial-user span {
  font-size: 14px;
  font-weight: 600;
}

/* ========== RESPONSIVE TESTIMONIALS ========== */
@media (max-width: 992px) {
  .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 22px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 32px;
  }
  
  .testimonials-header p {
    font-size: 16px;
  }
  
  .testimonials-grid {
    gap: 15px;
  }
  
  .testimonial-card {
    padding: 18px;
    width: 85vw;
  }
 
  .testimonial-text {
    font-size: 13px;
  }
  
  .stars {
    font-size: 16px;
  }
  
  .user-circle {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  
  .testimonial-user span {
    font-size: 12px;
  }

}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 15px;
  }
  
  .testimonials-grid {
    gap: 10px;
  }
  
  .testimonial-card {
    padding: 15px 12px;
  }
  
  .testimonial-text {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
  
  .stars {
    font-size: 10px;
    margin-bottom: 10px;
  }

}

/* ========== FOOTER FAQ ========== */
.faq-footer {
  background: #f5f5f5;
  padding: 70px 20px;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  color: #000000;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
}

.accordion-button {
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding: 20px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
}

.accordion-body {
  padding: 0 20px 20px;
  color: #555;
  font-size: 16px;
}
.contact-badge{
  padding: 10px 18px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;

    text-decoration: none;   /* Removes underline */
    cursor: pointer;
}

/* ========== VIDEO SAME SIZE ========== */
.video-box,
.easy-video-box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

.video-box img,
.easy-video-box img,
.video-box video,
.easy-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablet */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-text h1 {
    font-size: 38px;
  }
  
  .section-title h2 {
    font-size: 34px;
  }
  
  .navbar-brand {
    margin: 10px auto;
    text-align: center;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .section-two,
  .video-section,
  .easy-section,
  .testimonials-section,
  .faq-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .video-box,
  .easy-video-box {
    max-width: 100%;
    border-radius: 16px;
  }
 
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 10px;
  }
  
  .navbar-collapse {
    text-align: center;
    padding-top: 15px;
  }
  
  .navbar-nav {
    margin-bottom: 15px;
  }
  
  .d-flex {
    justify-content: center;
  }
  
  .btn-custom {
    width: 100%;
  }
  
  .accueil {
    min-height: 50vh;
    padding-bottom: 25px;
  }
  
  .hero-text {
    padding: 30px 15px;
  }
  
  .hero-text h1 {
    font-size: 30px;
    line-height: 1.4;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }

  .info-card h3 {
    font-size: 22px;
  }
  
  .info-card p {
    font-size: 16px;
  }
  
  .btn-order {
    width: 100%;
    font-size: 15px;
    padding: 15px;
    text-align: center;
  }
  
  .video-header h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  
  .video-header p {
    font-size: 16px;
  }
  
  .btn-video {
    width: 100%;
    font-size: 16px;
  }
  
  .easy-header h2 {
    font-size: 30px;
    padding: 0 15px;
  }
  
  .arrow-down {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .testimonials-header h2 {
    font-size: 32px;
  }
  
  .testimonials-header p {
    font-size: 16px;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  .faq-title {
    font-size: 30px;
  }
  
  .accordion-button {
    font-size: 16px;
    padding: 16px;
  }
  
  .cards-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 15px 30px 15px;
    scroll-snap-type: x mandatory;
  }
  
  .info-card {
    flex: 0 0 auto;
    width: 85vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  

  
  .video-box,
  .easy-video-box {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
  
  .play-btn {
    width: 65px;
    height: 65px;
  }
  
  .play-btn i {
    font-size: 32px;
  }
  
  .easy-features {
    gap: 15px;
  }
  
  .feature-card {
    flex: 0 0 auto;
    min-width: 110px;
    padding: 15px 12px;
  }
  
  .feature-card h3 {
    font-size: 24px;
  }
  
  .feature-card span {
    font-size: 16px;
  }
  
  .video-btn,
  .easy-btn {
    margin-top: 30px;
  }
}

/* Très petit mobile */
@media (max-width: 576px) {
  .navbar-brand img {
    width: 50px;
  }
  
  .hero-text h1 {
    font-size: 26px;
  }
  
  .section-title h2,
  .testimonials-header h2,
  .video-header h2,
  .easy-header h2 {
    font-size: 26px;
  }
  
  .btn-custom,
  .btn-order,
  .btn-video {
    width: 100%;
    text-align: center;
    display: block;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .feature-card {
    padding: 12px 10px;
    min-width: 95px;
  }
  
  .feature-card h3 {
    font-size: 20px;
  }
  
  .feature-card span {
    font-size: 13px;
  }
  
  .play-btn {
    width: 55px;
    height: 55px;
  }
  
  .play-btn i {
    font-size: 28px;
  }
  
  .video-box,
  .easy-video-box {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

}

/* Desktop large */
@media (min-width: 992px) and (max-width: 1100px) {
  .section-two,
  .video-section,
  .easy-section,
  .testimonials-section,
  .faq-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .cards-grid,
  .easy-features,
  .testimonials-grid {
    gap: 20px;
  }
  
  .feature-card {
    flex: 0 1 auto;
    min-width: 160px;
  }
 
}

.promo-banner{ 
    background:linear-gradient(90deg,#00a651,#0b7d3a); 
    color:#fff; 
    padding:30px 25px; 
    position:relative; 
    overflow:hidden; 
} 


.promo-banner::before{ 
    content:""; 
    position:absolute; 
    top:0; 
    left:-100%; 
    width:60%; 
    height:100%; 
    background:linear-gradient( 
        120deg, 
        transparent, 
        rgba(255,255,255,.25), 
        transparent 
    ); 
    animation:shine 4s infinite; 
} 

.promo-banner-inner{ 
    max-width:1400px; 
    margin:auto; 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:10px; 
    flex-wrap:nowrap; 
} 
.promo-right {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 40px;
}
.promo-badge{ 
    display:inline-block; 
    background:#e53935; 
    color:#fff; 
    padding:6px 14px; 
    border-radius:999px; 
    font-size:.8rem; 
    font-weight:700; 
    margin-bottom:10px; 
    animation:pulse 1.8s infinite; 
} 
.promo-badge-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    animation: pulse 1.8s infinite;
}
.promo-title{ 
    margin:0; 
    font-size:1.45rem; 
    font-weight:700; 
} 

.promo-subtitle{ 
    margin-top:6px; 
    opacity:.95; 
    font-size:.95rem; 
} 

.promo-price-new{ 
    color:#fff; 
    font-size:2rem; 
    font-weight:800; 
    margin:0 10px; 
} 

.promo-price-old{ 
    color:#ffb3b3; 
    text-decoration:line-through; 
    font-size:1.3rem; 
    font-weight:700; 
} 

.btn-promo{ 
    display:inline-flex; 
    align-items:center; 
    justify-content:center; 
     
    
    padding:14px 28px; 
    border-radius:999px; 
    text-decoration:none; 
    font-weight:700; 
    transition:.3s; 
    white-space:nowrap; 
} 
.btn-promo{
  background:#e53935;
  color:#fff; 
}
.btn-promo2{
    align-self:center;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;
    border-radius:999px;

    background:#e53935;
    color:#fff;

    font-size:1rem;
    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.btn-promo2:hover{
    background:#c62828;
    color:#fff;
    transform:translateY(-2px);
}

@keyframes pulse{ 
    0%,100%{ 
        transform:scale(1); 
    } 
    50%{ 
        transform:scale(1.08); 
    } 
} 

@keyframes shine{ 
    from{ 
        left:-100%; 
    } 
    to{ 
        left:150%; 
    } 
} 
.cta-section{
    max-width:1200px;
    margin:50px auto 0;
    display:flex;
    align-items:center;
    gap:40px;
    align-items:center;
    min-height:280px;
     background: #F8F8F8;

}

/* Les deux colonnes prennent la même largeur */
.cta-left,
.cta-right{
    flex:1;
}

/* Partie gauche */
.cta-left{
    display:flex;
    flex-direction:column;
    justify-content: center;

}

.cta-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Logo beaucoup plus grand */
.cta-right .promo-badge-logo{
    width:320px;
    max-width:100%;
    height:auto;
    display:block;
}

.cta-text{
    font-size:1.35rem;
    font-weight:600;
    line-height:1.7;
    color:#333;
    text-align:left;      /* texte à gauche */
    margin-bottom:30px;
}
@media(max-width:768px){ 

    .promo-banner{ 
        text-align:center; 
        padding:18px; 
    } 

    .promo-banner-inner{ 
        flex-direction:column; 
    } 

    .promo-title{ 
        font-size:1.2rem; 
    } 

    .promo-price-new{ 
        display:block; 
        font-size:2.3rem; 
        margin:8px 0; 
    } 

    .promo-price-old{ 
        display:block; 
    } 

    .btn-promo{ 
        width:100%; 
        margin-top:10px; 
    } 

     .promo-badge-logo{
        width:90px;
    }

    .promo-right{
        transform:none;
        margin-right:0;
    }
        .cta-section{
        flex-direction:column-reverse;
        text-align:center;
        gap:20px;
    }

    .cta-left{
        width:100%;
        align-items:center;
    }

    .cta-right{
        width:100%;
    }

    .cta-right .promo-badge-logo{
        width:120px;
    }
     .cta-text{
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .btn-order,
    .btn-promo2{
        width:100%;
    }
}

/*   video player style */
:root{
    --plyr-color-main:#ff003c;
}

.plyr{
    --plyr-color-main:#ff003c;
    color:#fff;
    border-radius:18px;
    overflow:hidden;
}

.plyr--video .plyr__controls{
    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        transparent);
}

.plyr__control:hover,
.plyr__control:focus-visible,
.plyr__control[aria-expanded="true"]{
    background:#ff003c !important;
}

.plyr__control--overlaid{
    background:#ff003c !important;
    border:none;
    border-radius:50%;
}

.plyr__control--overlaid:hover{
    background:#d80033 !important;
}

.plyr__progress__buffer{
    color:rgba(255,255,255,.18);
}

/* Progression vidéo */
.plyr__progress input[type=range]{
    color:#ff003c !important;
}

/* Volume */
.plyr__volume input[type=range]{
    color:#ff003c !important;
}

/* Thumb Chrome */
.plyr input[type=range]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ff003c;
    border:2px solid #fff;
}

/* Thumb Firefox */
.plyr input[type=range]::-moz-range-thumb{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ff003c;
    border:2px solid #fff;
}