@charset "UTF-8";
body {
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.header {
  background: #FFFFFF;
  /* Sticky */
  position: sticky;
  top: 0;
  z-index: 1020;
  /* Le layout (flex + padding vertical) doit être sur le wrapper interne */
}
.header .header-inner {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.header .brand span {
  color: #FDB913;
}
.header .brand img {
  width: 170px;
  height: auto;
}
.header .header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .call-icon {
  background-color: #FDB913;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}
.header .call-icon:hover {
  transform: scale(1.05);
  background-color: rgb(244.4285714286, 174, 2.0714285714);
}

.text-yellow {
  color: #f9b11e;
}

.contact-text {
  text-align: right;
  line-height: 1.2;
}

.contact-label {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}

.contact-action {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* Responsive : cacher le texte sur mobile si nécessaire 
@media (max-width: 576px) {
  .contact-text {
    display: none;
  }
}*/
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.breadcrumb-container .breadcrumb-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: #757575;
  cursor: pointer;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb-container .breadcrumb-item.active {
  color: #1A1A1A;
}
.breadcrumb-container .breadcrumb-item:not(.active):hover {
  color: #FDB913;
}
.breadcrumb-container .breadcrumb-separator {
  color: #E0E0E0;
  font-size: 0.75rem;
}

.step-container {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.step-container .brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: #1A1A1A;
}
.step-container.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.step-container {
  text-align: center;
}
.step-container > *:not(.top-banner) {
  text-align: left;
}

.top-banner {
  margin: 0 0 2.5rem;
}
.top-banner span {
  display: inline-block;
  background-color: #FFEA92;
  padding: 5px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A1A;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.top-banner p {
  text-align: left;
}

.pre-footer {
  background-color: #f1f1f1;
}
.pre-footer .blocks {
  background-color: #FFFFFF;
  border: #757575 1px solid;
  padding: 1rem;
}
.pre-footer .blocks p {
  color: #333333;
}

.orias {
  font-size: 0.75rem;
  color: #BCBCC4;
}

/*MODALE*/
#Modal1 .modal-body {
  position: relative;
  padding-top: 1rem;
  /* ajustable */
}
#Modal1 .modal-body a {
  color: inherit;
  text-decoration: none;
}

#Modal1 .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.rdv a {
  text-decoration: none;
  color: #1A1A1A;
}
.rdv a:hover {
  color: #1A1A1A;
}
.rdv img {
  transform: translateX(0px);
  margin-left: auto;
}
@media (max-width: 650px) {
  .rdv img {
    width: 120px;
  }
}
.rdv .sub {
  font-size: 0.8rem;
}
.rdv .sub p a {
  text-decoration: none;
  color: #1A1A1A;
}
.rdv .sub p a:hover {
  color: #1A1A1A;
}

.discutez {
  background-color: #FFFFFF;
}

.discutez2 {
  background-color: #FDB913;
}
.discutez2 a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 992px) {
  .discutez2 {
    background-color: #FFFFFF;
    border-radius: 5px;
  }
  .discutez2 a {
    color: #000;
    text-decoration: none;
  }
  .discutez3 {
    background-color: #FDB913;
    border-radius: 5px;
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-primary:disabled, .btn-primary.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-primary {
  background-color: #FDB913;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.25);
  letter-spacing: 0.5px;
}
.btn-primary:hover:not(:disabled) {
  background-color: rgb(244.4285714286, 174, 2.0714285714);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.35);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-primary-custom:active {
  transform: scale(0.97);
}
.btn-primary-custom:disabled, .btn-primary-custom.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-primary-custom {
  background-color: #FDB913;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary-custom:hover:not(:disabled) {
  background-color: rgb(244.4285714286, 174, 2.0714285714);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.35);
}

.btn-primary-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-primary-cyan:active {
  transform: scale(0.97);
}
.btn-primary-cyan:disabled, .btn-primary-cyan.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-primary-cyan {
  background-color: #76ffd9;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(118, 255, 217, 0.25);
  letter-spacing: 0.5px;
}
.btn-primary-cyan:hover:not(:disabled) {
  background-color: rgb(92.5, 255, 209.9270072993);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(118, 255, 217, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-outline-custom:active {
  transform: scale(0.97);
}
.btn-outline-custom:disabled, .btn-outline-custom.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-outline-custom {
  background-color: transparent;
  color: #757575;
  border-color: #A0A0A0;
}
.btn-outline-custom:hover:not(:disabled) {
  border-color: #1A1A1A;
  color: #1A1A1A;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-outline-custom:active {
  transform: scale(0.97);
}
.btn-outline-custom:disabled, .btn-outline-custom.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-outline-custom {
  background-color: transparent;
  color: #757575;
  border-color: #A0A0A0;
}
.btn-outline-custom:hover:not(:disabled) {
  border-color: #1A1A1A;
  color: #1A1A1A;
}

.btn-primary-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-primary-card:active {
  transform: scale(0.97);
}
.btn-primary-card:disabled, .btn-primary-card.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-primary-card {
  background-color: #FDB913;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary-card:hover:not(:disabled) {
  background-color: rgb(244.4285714286, 174, 2.0714285714);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.35);
}

.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  width: 100%;
  outline: none;
}
.btn-black:active {
  transform: scale(0.97);
}
.btn-black:disabled, .btn-black.disabled {
  background-color: #BCBCC4 !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
.btn-black {
  background-color: #302f3c;
  color: #FFFFFF;
  text-transform: uppercase;
}
.btn-black:hover:not(:disabled) {
  border-color: #1A1A1A;
  color: #1A1A1A;
}

.btn-secondary-custom {
  background-color: #FFFFFF;
  padding: 0.7rem;
  border: #A0A0A0 1px solid;
  transition: all 0.2s ease-in-out;
}
.btn-secondary-custom:hover:not(:disabled) {
  border-color: #1A1A1A;
  color: #1A1A1A;
  background-color: #FDB913;
}

.btn-choice {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding: 0.8rem;
  text-align: left;
  width: 100%;
  margin-bottom: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #1A1A1A;
  transition: all 0.25s ease;
}
.btn-choice:hover {
  border-color: #FDB913;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.btn-choice.active {
  background: #FFF9E6;
  border-color: #FDB913;
  border-width: 2px;
  transform: scale(1.01);
}
.btn-choice.active .radio-dot {
  border-color: #FDB913;
}
.btn-choice.active .radio-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #FDB913;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-choice .radio-dot {
  width: 22px;
  height: 22px;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  position: relative;
  background: #FFFFFF;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: block;
}

.input-control {
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding: 0.8rem;
  width: 100%;
  font-size: 1rem;
  transition: all 0.2s;
  background-color: #FFFFFF;
  display: block;
  font-family: "cabin", system-ui, -apple-system, sans-serif;
}
.input-control:focus {
  outline: none;
  border-color: #FDB913;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(253, 185, 19, 0.1);
}

form:has(#rgpd:not(:checked)) button[type=submit] {
  background-color: #A0A0A0;
  opacity: 0.6;
  cursor: not-allowed;
}

form:has(#rgpd:checked) button[type=submit] {
  background-color: #FDB913;
  /* ta couleur normale */
  opacity: 1;
  cursor: pointer;
}

/* =========================
   RGPD simple & propre
========================= */
@media (max-width: 576px) {
  .rgpd-choice {
    flex-wrap: nowrap !important;
  }
  .rgpd-choice .rgpd-option {
    flex: 0 0 calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}
.rgpd-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #dee2e6;
  background: white;
  transition: 0.2s ease;
}

.rgpd-option input {
  margin: 0;
  background-color: #FFEA92;
}

/* ACCEPT = primary */
.rgpd-accept input:checked + span {
  font-weight: 600;
}

.rgpd-accept:has(input:checked) {
  background: #FFEA92;
  border-color: #BCBCC4;
}

/* REFUSE = outline */
.rgpd-refuse:has(input:checked) {
  border-color: #6c757d;
  background: #f8f9fa;
  background-color: #FFEA92;
}

.offers-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.offers-hero__text {
  flex: 1;
  min-width: 0;
}

.offers-hero__title {
  color: #FDB913;
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
}

.offers-hero__subtitle {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
}

.offers-hero__imgWrap {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
  transform: translateY(40px);
}

.offers-hero__img {
  width: 90px;
  height: auto;
  display: block;
}

/* Responsive mobile : on garde le texte large + image décorative sans “casser” la largeur */
@media (max-width: 420px) {
  .offers-hero {
    position: relative;
    padding-right: 78px; /* réserve la place de l’image à droite */
    gap: 10px;
  }
  /* l’image ne “prend” plus de place en hauteur/largeur dans le flux */
  .offers-hero__imgWrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 72px;
    display: flex;
    justify-content: flex-end;
    transform: translateY(40px);
  }
  .offers-hero__img {
    width: 72px;
    height: auto;
    display: block;
  }
  /* optionnel mais rend plus propre sur 320px */
  .offers-hero__title {
    font-size: 1.35rem;
  }
  .offers-hero__subtitle {
    font-size: 1.05rem;
  }
}
.info-box {
  background-color: #E6FBF8;
  padding: 1.5rem;
  border-radius: 16px;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(134, 221, 207, 0.1);
}
.info-box .icon {
  font-size: 1.5rem;
  line-height: 1;
}

.offer-card {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 1.2rem 1rem 1rem 1rem;
  background: #FFFFFF;
  position: relative;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.offer-card.recommended {
  border-color: #FDB913;
  background-color: #FFF9E6;
  border-width: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.offer-card .fs-6 {
  font-size: 0.8rem !important;
  color: #A0A0A0;
}
.offer-card .badge-recommended {
  background-color: #86ddcf;
  color: #1A1A1A;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: -1rem;
}
@media (min-width: 768px) {
  .offer-card .badge-recommended {
    top: -1.4rem;
    right: -1.4rem;
  }
}
.offer-card .d-flex.align-items-center {
  display: flex;
  position: relative;
}
@media (max-width: 767.98px) {
  .offer-card .d-flex.align-items-center {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .offer-card .d-flex.align-items-center {
    align-items: flex-start !important;
  }
}
.offer-card .price-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.offer-card .price-sub {
  color: #757575;
  font-size: 1.1rem;
  font-weight: 500;
}
.offer-card .benefit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.offer-card .benefit-row .small {
  font-size: 0.85rem;
  color: #757575;
}

/* Desktop */
@media (min-width: 768px) {
  .offer-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  .offer-card .price-text {
    font-size: 2.5rem;
  }
  .offer-card .price-text .price-old {
    font-size: 1.4rem;
  }
  .offer-card .price-text .price-new {
    font-size: 2.1rem;
  }
  .offer-card .price-sub {
    font-size: 0.9rem;
  }
  .offer-card .benefit-row {
    padding: 10px 0;
  }
  .offer-card.recommended {
    padding-top: 0.5rem;
  }
}
/* Desktop / grand écran */
@media (min-width: 992px) {
  /* Le carousel devient une grille */
  #offerCarousel .carousel-inner {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible !important;
  }
  /* Chaque item doit être visible (Bootstrap met display:none) */
  #offerCarousel .carousel-item {
    display: block !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Désactive l’animation slide */
  #offerCarousel .carousel-item-next,
  #offerCarousel .carousel-item-prev,
  #offerCarousel .carousel-item-start,
  #offerCarousel .carousel-item-end {
    transform: none !important;
  }
  /* On masque les points */
  #offerCarousel .carousel-indicators {
    display: none !important;
  }
  /* Bonus : cards même hauteur + bouton aligné */
  .offer-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .offer-card .benefits-list {
    flex-grow: 1;
  }
}
.offer-visual {
  position: relative;
  z-index: 2;
}

.offer-img {
  max-width: 180px;
  transform: translateY(10px);
}

.border-rec {
  border-left-color: #FDB913 !important;
}

.border-default {
  border-left-color: #eee !important;
}

.progress-bars {
  display: flex;
  gap: 4px;
}
.progress-bars .bar {
  width: 25px;
  height: 6px;
  border-radius: 4px;
  background-color: #eee;
}
.progress-bars .bar.active {
  background-color: #FDB913;
}

.detail-card {
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.75rem;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.detail-card .detail-header {
  background-color: #E6FBF8;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(134, 221, 207, 0.05);
  font-weight: 700;
}
.detail-card .detail-header .fw-bold {
  white-space: pre-line;
}
.detail-card .detail-header .icon {
  margin-left: auto;
}
.detail-card .detail-header .benefit-icon {
  width: 30px;
  height: 30px;
}
.detail-card .detail-header .fw-lighter {
  color: #A0A0A0;
  font-size: 0.8rem;
}
.detail-card .detail-col-subtext {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
  font-style: italic;
}
.detail-card .detail-table {
  width: 100%;
  border-collapse: collapse;
}
.detail-card .detail-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.detail-card .detail-table td:last-child {
  border-right: none;
}
.detail-card .detail-table .detail-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #757575;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.detail-card .detail-table .detail-col-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1A1A1A;
}
.detail-card .detail-table .detail-col-best {
  background-color: #FFF9E6;
  border-left: 1px solid rgba(253, 185, 19, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeIn 0.5s ease forwards;
}

@media (min-width: 992px) {
  .carousel-control-external {
    display: none;
  }
}
/* Responsive : cacher les flèches sur mobile */
@media (max-width: 991px) {
  .carousel-indicators {
    bottom: -35px;
  }
  .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    border: 1.5px solid #1A1A1A !important;
    margin: 0 6px !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
  }
  .carousel-indicators button.active {
    background-color: #FDB913 !important;
    border-color: #FDB913 !important;
  }
  .carousel-nav-wrapper {
    position: relative;
  }
  /* Ligne "flèches + indicateurs" */
  .carousel-indicators-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
  .carousel-indicators-wrap .carousel-indicators {
    position: static;
    margin: 0;
  }
  .carousel-control-external {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .carousel-control-external:hover {
    background: #FFEA92;
    transform: scale(1.1);
  }
  .carousel-control-external:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .carousel-control-external.prev {
    left: auto;
    transform: none;
  }
  .carousel-control-external.next {
    right: auto;
    transform: none;
  }
  .carousel-control-external svg {
    width: 20px;
    height: 20px;
    fill: #000;
  }
}
/* =========================================================
   OFFRES : mobile = carousel, desktop = grille
   ========================================================= */
@media (max-width: 992px) {
  #offerCarousel .carousel-inner {
    width: 100%;
    margin: auto;
  }
}
.merci,
.informations,
.calendar {
  margin-left: auto;
  margin-right: auto;
}

.informations {
  background-color: #edfcfa;
  border: 1px #A0A0A0 solid;
  border-radius: 5px;
  padding-right: 0px;
}

.promobanner {
  background-color: #E6FBF8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.promobanner .offers-hero__img {
  width: 60px;
  margin: 0.5rem;
}
.promobanner .offers-hero__imgWrap {
  transform: translateY(0px);
}
.promobanner .offers-hero__subtitle {
  margin: 1rem;
}

@media (max-width: 420px) {
  .promobanner .offers-hero__imgWrap {
    transform: translateY(104px);
  }
}
.merci {
  background-color: #FFFFFF;
  border: 1px #A0A0A0 solid;
  border-radius: 5px;
  margin: 1rem 0rem;
}

.calendar {
  background-color: #f6f6f6;
  border: 1px #A0A0A0 solid;
  border-radius: 5px;
  margin: 1rem 0rem;
}

/* ====== Prices grid (3 colonnes) ====== */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 8px 0 18px;
}

/* Mobile : 1 colonne */
.prices-col {
  border: 1px solid #d9d9df;
  border-radius: 12px;
  padding: 18px 16px;
  background: #fff;
  position: relative;
}

.prices-col .prices-topbar {
  height: 6px;
  width: 110px;
  border-radius: 999px;
  background: #eee;
  margin: 4px 0 18px;
}

.prices-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.prices-sub {
  margin-top: 10px;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1.25;
  min-height: 44px;
}

.prices-price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.prices-eur {
  font-size: 20px;
  font-weight: 900;
}

.prices-per {
  font-size: 15px;
  color: #8c8c8c;
  font-weight: 600;
}

/* Active (carte du milieu) */
.prices-col.is-active {
  background: #FFF4CC;
  border: 1px solid #F6C35B;
  border-radius: 12px;
}

.prices-col.is-active .prices-topbar {
  background: #F6C35B;
}

.prices-col {
  cursor: pointer;
}

.prices-col:focus {
  outline: 2px solid rgba(253, 185, 19, 0.6);
  outline-offset: 4px;
}

.prices-col:hover {
  transform: translateY(-1px);
}

/* Variantes topbar selon position (optionnel) */
.prices-col:nth-child(1) .prices-topbar {
  background: #F6C35B;
}

.prices-col:nth-child(2) .prices-topbar {
  background: #F6C35B;
}

.prices-col:nth-child(3) .prices-topbar {
  background: #F4B22C;
}

@media (max-width: 767.98px) {
  /*.prices-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }*/
  .prices-col {
    border: 1px solid #d9d9df;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    position: relative;
  }
  .prices-price {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .prices-eur {
    font-size: 14px;
  }
  .prices-col .prices-topbar {
    height: 3px;
    width: auto;
    border-radius: 999px;
    background: #eee;
    margin: 4px 0 18px;
  }
  .prices-col .prices-topbar {
    height: 6px;
    width: auto;
    border-radius: 999px;
    background: #eee;
    margin: 4px 0 18px;
  }
  .prices-per {
    color: #8c8c8c;
    font-weight: 600;
  }
}
/*widget footer*/
/* ── Bouton sticky ── */
.btn-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  background-color: #FDB913;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.btn-sticky svg {
  width: 100%;
  height: 100%;
}
.btn-sticky svg path {
  transform: scale(1.6);
}

body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

#Modal1 {
  pointer-events: none;
  /* clics passent à travers la zone vide */
}

#Modal1 .modal-dialog {
  position: fixed;
  bottom: 5.5rem;
  /* au-dessus du bouton sticky */
  right: 2rem;
  top: auto;
  left: auto;
  margin: 0;
  max-width: 400px;
  width: 100%;
  pointer-events: all;
  /* réactive les clics sur la boîte elle-même */
}

/**/
.price-old {
  text-decoration: line-through;
  color: #A0A0A0;
  margin-right: 6px;
  font-size: 1.1rem;
  font-weight: 100;
}

.price-new {
  font-weight: bold;
  color: #000;
  font-size: 1.7rem;
}/*# sourceMappingURL=style.css.map */