body {
  font-family: "Montserrat",sans-serif;
}
/* Form */
[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
  padding: 0!important;
}
[data-hsfc-id=Renderer] .hsfc-TextInput {
  max-width: -webkit-fill-available;
}
[data-hsfc-id=Renderer] .hsfc-TextareaInput {
  width: -webkit-fill-available!important;
}

/* 1125 */

/* Checkbox réelle à l'intérieur de la carte */
.offer-card-input-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[data-hsfc-id=Renderer] .hsfc-TextInput:focus,
[data-hsfc-id=Renderer] .hsfc-TextInput:focus-visible {
  border: 1px solid #16a34a !important; /* vert */
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25) !important; /* halo vert élégant */
}

.offer-group-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111827; /* ou ta couleur de titres */
}

/* Conteneur des cartes */
.offer-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

/* --- Carte forfait --- */
.hsfc-CheckboxFieldGroup__Options > div > label.offer-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #ffffff;
}

.hsfc-CheckboxFieldGroup__Options > div > label.offer-card:hover {
  border-color: #007fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.hsfc-CheckboxFieldGroup__Options > div > label.offer-card.selected {
  border-color: #007fff;
  background: #f0f7ff;
}
.hsfc-CheckboxFieldGroup__Options > div > label.offer-card.offer-card--disabled {
  opacity: 0.4;
  pointer-events: none;   /* plus cliquable */
}

/* Colonne gauche */
.offer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.offer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.offer-data {
  font-size: 14px;
}

.offer-data__volume {
  font-weight: 700;
  font-size: 15px;
  margin-right: 4px;
}

.offer-data__desc {
  opacity: 0.7;
}

/* Liste des features */
.offer-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

.offer-features li {
  position: relative;
  padding-left: 18px;
}

.offer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  line-height: 1.3;
  color: #16a34a; /* vert check */
}

/* Colonne droite */
.offer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 190px;
}

/* Prix */
.offer-price {
  text-align: right;
}

.offer-price__amount {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.offer-price__period {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* Actions : quantité + CTA */
.offer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

/* Stepper quantité */
.offer-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 4px 8px;
  gap: 6px;
  font-size: 13px;
}

.qty-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  font-size: 16px;
}

.qty-value {
  min-width: 12px;
  text-align: center;
}

/* Bouton Ajouter au panier */
.offer-cta {
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: #007fff;
  color: #ffffff;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.offer-cta:hover {
  background: #0366c4;
  box-shadow: 0 4px 10px rgba(0, 127, 255, 0.25);
}

.basket-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.basket-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.basket-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basket-offer-block + .basket-offer-block {
  border-top: 1px dashed #e5e7eb;
  padding-top: 12px;
  margin-top: 12px;
}

.basket-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.basket-offer-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.basket-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  font-size: 13px;
}

.basket-qty-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 16px;
}

.basket-qty-value {
  min-width: 14px;
  text-align: center;
}

/* Tableau abonnement */
.basket-subtable {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  margin-top: 8px;
}

.basket-subheader,
.basket-row,
.basket-fee-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}

.basket-subheader {
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}

.basket-row span {
  color: #111827;
}

/* Carte des frais */
.basket-fees-card {
  border-radius: 12px;
  background: #f9fafb;
  padding: 10px 12px;
  font-size: 12px;
}

.basket-fee-row + .basket-fee-row {
  border-top: 1px dashed #e5e7eb;
  padding-top: 4px;
  margin-top: 4px;
}

/* Total */
.basket-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.basket-total-line span:first-child {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.basket-total-amount {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* message erreur */
/* Boîte stylée message d'erreur */
.sim-error-box {
  background: #fffde8;
  border: 1px solid #f6e29f;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #0c2a33;
  margin: 6px 0 20px;
}

.sim-error-icon {
  background: #f6e29f;
  color: #0c2a33;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.sim-error-box a {
  color: #0c2a33;
  font-weight: 600;
  text-decoration: underline;
}

/* Bouton Suivant désactivé */
.sim-next-disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
/* fin message erreur */

/* Responsive : empiler les colonnes sur mobile */
@media (max-width: 640px) {
  .hsfc-CheckboxFieldGroup__Options > div > label.offer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-right {
    align-items: flex-start;
    width: 100%;
  }

  .offer-price {
    text-align: left;
  }

  .offer-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* 1125 */

/* end Form */
.display-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container-form-get-rates {
  width: 60%;
  /* padding-top: 2rem; */
  /* padding: 2rem 2rem 0 0; */
}
.display-space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
/* benefit card price page */
.wrapper-tiny--benefit-card {
  max-width: 360px; /* max-width: 320px; / 350px */
  margin: 0 auto;
  
  /* padding-top: 10rem; */
}
@supports (position: sticky) {
  .is-sticky {
    position:-webkit-sticky;
    position: sticky;
    top: 3rem;
  }
}
.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container-benefit-card-price-page {
  max-width: 360px; /* 290px / 340px*/
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(3, 88, 103, .1);
  -webkit-box-shadow: 0 0 10px 0 rgba(3, 88, 103, .1);
  -moz-box-shadow: 0 0 10px rgba(3,88,103,.1);
  /* background: var(--color-blue-light);
  border-radius: 15px; */
  padding: 30px;
  margin: 0 0 20px 0;
}

/* note google */
.google-star-img--benefit-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: .5rem 0;
}
.google-star-img--benefit-card img:nth-child(1),
.google-star-img--benefit-card p:nth-child(2) {
  padding-right: .35rem;
}
.google-star-img--benefit-card p:nth-child(2) {
  white-space: nowrap;
  font-size: .813rem!important;
  color: var(--color-blue-dark-opacity);
}
.google-star-img--benefit-card img:nth-child(1),
.google-star-img--benefit-card p:nth-child(2),
.google-star-img--benefit-card img:nth-child(3) {
  max-width: inherit;
  margin: inherit;
}
.google-star-img--benefit-card > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
/* end note google */
/* french tech */
.container-frenchtech--benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.frenchtech-img--benefit-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: .5rem 0;
}
.frenchtech-img--benefit-card img:nth-child(1) {
  padding-right: 1rem;
}
/* end french tech */
/* fin benefit card price page */
.privacy-policy-link {
  color: var(--color-blue-dark-opacity-8);
  text-decoration: none;
  transition: all .4s ease;
}
.privacy-policy-link:hover {
  color: var(--color-blue-dark-opacity);
}
@media (max-width: 1300px) and (min-width: 990px) {

}

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

}

@media (max-width: 768px) {

}
/* tiny mobile */
@media (max-width: 320px) {

}