:root{
    --primary: #55D1F9;
    --ligthPrimary: #BFEBF9;
    --darkPrimary: #18a9daf5;
    --secondary: #1C317A;
    --disabled: #D4D4D4;
    --grey: #808080;
    --ligthGrey: #F5F5F5;
    --red: #FF5656;
    --green: #43D211;
    --orange: #FF8000;
    --ligthOrange: #FAA955;
    --white: #ffffff;
}

/* PAGE TARIFS */
#abo_tarifs h2 {
    font-weight: 500;
    letter-spacing: -0.1rem;
}
#abo_tarifs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2.5rem;
    padding: 0 3% 6%;
}
.switch_plans {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 6px;
  margin: 0 1rem;
  align-items: center;
  border-radius: 6.1875rem;
  background-color: #F1F5F9;
  --knob-x: 0%;
}
.switch_plans::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  border-radius: 6.1875rem;
  background-color: #FFFFFF;
  transform: translateX(var(--knob-x));
  transition: transform 220ms ease-in-out;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.switch_plans.is-annual::after {
  transform: translateX(100%);
}
.switch_plans .tab {
  appearance: none;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  justify-content: center;
  border-radius: 6.1875rem;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  color: #94A3B8;
  z-index: 1;
  cursor: pointer;
}
.switch_plans .tab.active {
  font-weight: 500;
  color: #334155;
}
#abonnements .annuel { 
    display: none; 
}
#abonnements[data-mode="annuel"] .annuel { 
    display: block; 
}
#abonnements[data-mode="annuel"] .mensuel { 
    display: none; 
}
#abo_tarifs section {
    width: 100%;
    max-width:1660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.container {
    max-width: 1660px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(240px, 100% / 6), 1fr));
    gap: 1rem;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #F1F5F9;
}
#abonnements .container {
    display: block;
    padding: 1rem 0;
}
/* Mode sans slider : affichage en grille */
#abonnements .container.no-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}
#abonnements .container.no-slider .card.abo {
    flex: 1 1 300px;
    max-width: 400px;
}
/* Mode slider */
#abonnements #container_abos {
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}
#abonnements #container_abos::before,
#abonnements #container_abos::after {
    content: '';
    position: absolute;
    top: -1%;
    bottom: -1%;
    height: 102%;
    width: 32px;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
#abonnements #container_abos::before {
    left: 0;
    box-shadow: inset 8px 0px 8px 0px rgba(0, 0, 0, 0.1)
}
#abonnements #container_abos::after {
    right: 0;
    box-shadow: inset -8px 0px 8px 0px rgba(0, 0, 0, 0.1)
}
#abonnements .container .slick-track {
    display: flex !important;
    align-items: stretch;
}
#abonnements .container .slick-slide {
    height: inherit;
    margin: 0 0.5rem;
    display: flex !important;
}
#abonnements .container .slick-slide > div {
    display: flex;
    width: 100%;
}
#abonnements .container .card.abo {
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.card {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--Common-Neutral-Lowest, #FFFFFF);

    /* Card shadow */
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
.card.abo {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 460px;
}
.card.abo .header {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #3D7CF4;
    color: #FFFFFF;
    padding: 2rem 1.5rem 1rem;
    position: relative;
}
.card.abo .header .titre {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.card.abo .header .titre h3 {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
}
.card.abo .header .titre .tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    background-color: #ffffff;
    color: #000;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6.125rem;
}
.card.abo .header .titre .tag svg {
    width: 0.75rem;
    height: 0.75rem;
}
.card.abo .header .sous_titre {
    font-weight: 300;
}
.card.abo .content {
    width: 100%;
    display: flex;
    padding: 1.5rem 1.5rem 0;
    flex-direction: column;
    gap: 1rem;
    flex: 0 1 auto;
    margin: 0; /* Reset global body .content margin: auto from styles.css */
    max-height: 240px;
    overflow: hidden;
    transition: max-height 400ms ease-in-out;
    position: relative;
}
.card.abo .content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.card.abo .content.has-overflow::after {
    opacity: 1;
}
.card.abo .content.expanded::after {
    opacity: 0;
}
.card.abo .content.expanded {
    max-height: 600px;
}
.card.abo .content .separator {
    border: 0.025rem solid #CBD5E1;
}
.card.abo .content .caption {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card.abo .content .prix {
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 400;
}
.card.abo .content .prix_public {
    color: #334155;
    font-size: 1.5rem;
    font-weight: 500;
}
.card.abo .content .caption .container_avantages {
    list-style: none;
}
.card.abo .content .caption .container_avantages .avantage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0;
}
.card.abo .content .caption .container_avantages .avantage svg {
    display: flex;
   width: 1.25rem;
   height: 1.25rem;
}
.card.abo .voir-plus {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    color: #3D7CF4;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 200ms ease-in-out;
}
.card.abo .voir-plus:hover {
    color: #1E40AF;
}
.card.abo .voir-plus.visible {
    display: flex;
}
.card.abo .voir-plus svg {
    width: 1rem;
    height: 1rem;
    transition: transform 300ms ease-in-out;
}
.card.abo .voir-plus.expanded svg {
    transform: rotate(180deg);
}
.card.abo > .cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
}
.card.abo > .cta .btn {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: #3D7CF4;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    transition: all 400ms ease-in-out;
}
.card.abo > .cta .btn.btn_primary {
    background: #DBE9FE;
}
.card.abo > .cta .btn.btn_primary:hover {
    background: #3D7CF4;
    color: #ffffff;
}
.card.abo > .cta .btn.btn_secondary {
    background: transparent;
    border-color: currentColor;
}
.card.abo > .cta .btn.btn_secondary:hover {
    background: #3D7CF4;
    color: #ffffff;
    border-color: #3D7CF4;
}
.card.abo > .cta .btn svg {
    display: flex;
    width: 1rem;
    height: 1rem;
    padding: 0.0625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}
.mentions {
    width: 100%;
    display: flex;
    /*flex-direction: column;*/
    gap: 0.25rem;
    margin: 0 1rem;
}
.mentions p {
    color:#94A3B8;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 300;
}
.marketing {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row !important;
    gap: 1rem;
}
.marketing.cta_left{
    flex-direction: row-reverse !important;
}
.marketing .image {
    flex: 1 0 288px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9; 
}
.marketing .image img {
    position: absolute;
    height: -webkit-fill-available;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.marketing .content {
    flex: 1 0 288px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem 3%;
    border-radius: 1rem;
    color: #FFFFFF;
    background: #1C317A;
    height: -webkit-fill-available;
}
.marketing .content h3 {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}
.marketing .content .cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.marketing .content .cta input {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 0.75px solid #94A3B8;
    background: #FFFFFF;
}
.marketing .content .cta .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    background: #55D1F9;
    font-size: 0.875rem;
    text-decoration: none;
    color: revert;
    cursor: pointer;
}
a.card.tarif {
    display: flex;
    text-decoration: none;
    color: inherit;
}
.card.tarif {
    position: relative;
    justify-content: space-between;
    padding: 1rem;
    gap: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--Common-Secondary-brand-Low, #94C1FC);
    background: var(--Common-Neutral-Lowest, #FFF);
    transition: all 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.card.tarif:hover {
    border-color: var(--category-border-hover, #3D7CF4);
    transform: scale(102%);
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.125);
}
.card.tarif.tarif-unitaire:hover {
    transform: none;
    cursor: default;
}
.card.tarif .header {
    display: flex;
    padding-bottom: 0.5rem;
}
.card.tarif .header .texte {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.card.tarif .header .texte h3 {
    color: var(--Common-Neutral-Highter, #334155);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.25;
}
.card.tarif:hover .header .texte h3 {
    color: var(--category-color, #3D7CF4);
}
.card.tarif .header .texte .sous_titre {
    color: var(--Common-Neutral-Medium, #94A3B8);
    font-size: 0.875rem;
    font-weight: 400;
}
.card.tarif .description {
    color: var(--Common-Neutral-Medium, #94A3B8);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card.tarif .header svg {
    display: flex;
    width: 1rem;
    height: 1rem;
}
.card.tarif:hover .header  svg{
    color: var(--category-color, #3D7CF4);
}
.card.tarif .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 0.5rem;
}
.card.tarif .info .labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    flex: 1;
    overflow: hidden;
    align-items: center;
}
.card.tarif .info .label {
    display: flex;
    align-items: center;
}
.card.tarif .info .label.hidden {
    display: none;
}
.card.tarif .info .label .tag {
    display: flex;
    padding: 0.125rem 0.5rem;
    align-items: flex-start;
    gap: 0.625rem;
    border-radius: 6.1875rem;
    background: var(--Common-Secondary-brand-Low, #94C1FC);
    color: var(--Common-Neutral-Hightest, #09090B);
    text-align: center;
    font-size: 0.75rem;
    white-space: nowrap;
}
.card.tarif .info .labels .more-tag {
    position: relative;
    display: flex;
    padding: 0.125rem 0.5rem;
    align-items: center;
    border-radius: 6.1875rem;
    background: #E2E8F0;
    color: #000000;
    text-align: center;
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    z-index: 2;
}
/* Tooltips pour les labels (dans le body) */
#labels-tooltip-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 9999;
    pointer-events: none;
}
#labels-tooltip-container .labels-tooltip {
    position: fixed;
    background: #1E293B;
    color: #FFFFFF;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
    max-width: calc(100vw - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
}
#labels-tooltip-container .labels-tooltip.visible {
    opacity: 1;
    visibility: visible;
}
/* Flèche par défaut (centrée, en bas) */
#labels-tooltip-container .labels-tooltip .arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1E293B;
}
/* Flèche alignée à gauche */
#labels-tooltip-container .labels-tooltip.align-left .arrow {
    left: 15px;
    transform: none;
}
/* Flèche alignée à droite */
#labels-tooltip-container .labels-tooltip.align-right .arrow {
    left: auto;
    right: 15px;
    transform: none;
}
/* Flèche en haut (quand tooltip est en-dessous) */
#labels-tooltip-container .labels-tooltip.below .arrow {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #1E293B;
}
.card.tarif .info .prix {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
body #container .card.tarif .info .prix .prix_public {
    color: var(--Common-Neutral-Hightest, #09090B);
    font-size: 1.125rem;
    font-weight: 500;
}
.card.tarif .info .prix .prix_resident {
    color: var(--Common-Neutral-Medium, #94A3B8);
    font-size: 0.875rem;
}

/* PAGE TARIF */
/* PAGE ACTIVITE UNIQUE */
#produit {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 2rem;
    width: 100%;
    padding-bottom: 6%;
}
#produit strong {
    color: var(--secondary);
}
#produit h3 {
    font-size: 1.5rem;
    font-weight: 600;
}
#produit #fiche_produit {
    padding: 2rem;
}
#produit .container_produit {
    display: flex;
    gap: 3rem;
}
#produit .container_images {
    flex: 1 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    padding: 2rem 0;
    gap: 1rem;
}
#produit .container_images .image {
    overflow: hidden;
    border-radius: 1rem;
    height: auto;
    width: 100%;
    aspect-ratio: 1/1;
}
#produit .container_images .image img {
    object-fit: cover;
}
#produit .caption {
    position: sticky;
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
}
#produit .caption .avantages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#produit .caption .avantages .container_avantages {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding-left: 0.5rem;
}
#produit .caption .avantages .container_avantages .avantage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0;
}
#produit .caption .avantages .container_avantages .avantage svg {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
}
#produit .caption .options {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}
#produit .caption .options .tags {
   display: flex;
   flex-wrap: wrap;
   gap: 0.25rem;
   padding-left: 0.5rem;
}
#produit .caption .options .tags .tag {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
    border: 1px solid var(--Common-Neutral-Medium, #94A3B8);
}
#produit .caption .options .tags .tag.active {
    border: 2px solid var(--Color-Palettes-pink-400, #F472B6);
    background-color: #FDF2F8;
}
#produit .caption .prix {
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 400;
}
#produit .caption .prix_public {
    color: #334155;
    font-size: 1.5rem;
    font-weight: 500;
}
#produit .caption .cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#produit .caption .cta .btn {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: #F472B6;
    border-radius: 0.375rem;
}
#produit .caption .cta .btn.btn_primary {
    background: #FCE7F3;
    transition: all 400ms ease-in-out;
}
#produit .caption .cta .btn.btn_primary:hover {
    background: #F472B6;
    color: #ffffff;
}
#produit .caption .cta .btn.btn_secondary {
   border: 1px solid #F472B6;
    transition: all 400ms ease-in-out;
}
#produit .caption .cta .btn svg {
    display: flex;
    width: 1rem;
    height: 1rem;
    padding: 0.0625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    
}
/* ACTIVITES */
#produit #activites {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
    background-color: #FCE7F3;
}
#produit #activites .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
#produit #activites .tags .tag {
    padding: 0.5rem 1.5rem;
    background-color: #ffffff;
    border-radius: 6.1875rem;
}
/* DEROULE D'UNE SEANCE */
#produit #seance {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 4vw; */
    padding: 3em 0;
    background-color: var(--ligthGrey) ;
}
#produit #seance .seances {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 3.5rem;
    column-gap: 2rem;
    margin: 3rem 0 2rem 0;
}
#produit #seance .seances .etape_seance {
    flex: 1 1 296px;
    max-width: 364px;
    min-height: 316px;
    border-radius: 1em;
    overflow: hidden;
    background-color: var(--white);
    padding: 3rem;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.025);
}
#produit #seance .seances .num-rel {
    position: relative;
}
#produit #seance .seances .etape_seance.collapsed{
    max-height: 316px;
}
#produit #seance .seances .etape_seance.expanded {
    max-height: 600px;
    transition: max-height 0.6s ease-in-out;
}
#produit #seance .seances .num-rel:first-child .etape_seance {
    background-color: var(--secondary);
    color: var(--white);
}
#produit #seance .seances .num-rel:first-child .etape_seance .content .voir_plus {
    color: var(--ligthPrimary);
}
#produit #seance .seances .etape_seance .num_etape {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 60rem;
    background-color: var(--ligthPrimary);
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 600;
    top: 0;
    left: 50%;
    transform: translate( -50%, -50%);
}
#produit #seance .seances .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: -webkit-fill-available;
    height: -moz-available;
    height: fill-available;
    overflow: hidden;
}
#produit #seance .seances .etape_seance .content h3 {
    text-align: center;
    color: var(--secondary);
}
#produit #seance .seances .etape_seance .content p {
    display: -webkit-box;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
#produit #seance .seances .etape_seance.expanded .content p {
    display: contents;
}
#produit #seance .seances .etape_seance .content .voir_plus {
    display: none;
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}
#produit #seance .seances .num-rel:first-child .etape_seance h3 {
    color: var(--ligthPrimary);
}
#produit #faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
}
#produit #faq .accordeons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
}
#produit #faq .accordeons .accordeon {
    height: 100%;
    /* max-height: 60px; */
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.025);
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    transition: all 250ms ease-in-out;
}
#produit #faq .accordeons .accordeon .accordeon_title {
    display: flex;
    align-items: center;
    position: relative;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    font-weight: 600;
    color: var(--secondary);
    background-color: var(--white);
    border-radius: 6px;
    padding: 1rem 4rem 1rem 1.5rem;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    /* height: 60px; */
    cursor: pointer;
    transition: all 200ms ease-in;
    line-height: 1.25;
}
#produit #faq .accordeons .accordeon .accordeon_title .icon_conseil {
    position: absolute;
    right: 16px;
    width: 2rem;
    height: 2rem;
    transform: rotate(-90deg);
    transition: all 300ms ease-in-out;
}
#produit #faq .accordeons .accordeon[open] {
    max-height: 600px;
    transition: max-height 0.5s ease-in-out;
}
#produit #faq .accordeons .accordeon[open] .accordeon_title {
    background-color: var(--secondary);
    color: var(--white);
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
}
#produit #faq .accordeons .accordeon[open] .accordeon_title .icon_conseil{
    transform: rotate(0deg);
}
#produit #faq .accordeons .accordeon p {
    padding: 1rem 1.5rem;
}
#produit #recommendation {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    padding: 4rem;
    background-color: var(--ligthPrimary);
    border-radius: 1rem;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.025);
}
#produit #recommendation h2 {
    text-align: center;
}
#produit #produits_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    gap: 1rem;
}
#produit #produits_container .slick-track {
    display: flex;
    gap: 1rem;
}
#produit #produits_container .slides{
    border-radius: 8px;
    overflow: hidden;
}
.slick-dots li.slick-active button:before {
    color: var(--secondary);
   }
#produit #referencement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.025);
}
#produit #referencement h2 {
    text-align: center;
}
.mentions {
    width: 100%;
    display: flex;
    /*flex-direction: column;*/
    gap: 0.25rem;
    margin: 0 1rem;
}
.mentions p {
    color:#94A3B8;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .infos_activite {
        padding: 2rem 0;
        row-gap: 1.5rem;
    }
    #produit {
        padding: 0 1rem 1rem 1rem;
        gap: 2rem;
    }
    #rolling_smile {
       transform: scale(0.6);
       top: -84px;
       right: 84px;
    }
    #produit #description_activite {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    #produit #description_activite figcaption {
        align-items: center;
    }
    #produit #lesplus, #conseil {
        gap: 1rem;
    }
    #produit #lesplus {
        flex-wrap: wrap-reverse;
    }
    #produit #lesplus .col_left figcaption, #conseil .col_right figcaption {
        max-width: unset;
        height: fit-content;
        padding: 1.5rem;
    }
    #produit #seance {
        padding: 1rem 0;
    }
    #produit #seance .seances {
        row-gap: 3rem;
        margin: 1rem 0;
    }
    #produit #seance .seances .etape_seance {
        padding: 1.5rem;
    }
    #produit #seance .seances .etape_seance .content h3 {
        margin-top: 1rem;
    }
    #produit #faq {
        gap: 1rem;
        padding: 1rem 0;
    }
    #produit #faq .accordeons {
        gap: 0.5rem;
        padding: 0;
    }
    #produit #recommendation {
        gap: 1rem;
        padding: 1.5rem;
    }
    #produit #referencement {
        padding: 1.5rem;
    }
}

/* PAGE TARIFS */
@media (max-width: 480px) {
    .mentions {
        width: auto;
        padding: 0 1rem;
    }
    .marketing {
        width: auto;
        padding: 0 1rem;
    }
    .marketing .content {
        padding: 1rem;
        text-align: center;
    }
}

/* ============================================
   STYLES POPUP CONTACT (tarifs.php & tarif.php)
   Style aligné sur popup_reserver_v2
   ============================================ */
.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(56, 74, 105, 0.5);
    backdrop-filter: blur(3px) grayscale(1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_container {
    position: relative;
    background: #FFFFFF;
    border-radius: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem);
    max-height: calc(100% - 4rem);
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.popup_header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.5rem 0.5rem;
}

.popup_header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--RECREA_COLOR_SECONDARY, #1E3A5F);
    text-align: center;
    width: 100%;
}

.btn_close_popup {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: #FFFFFF;
    border: none;
    border-radius: 100%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 11;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
}

/* Croix du bouton fermer */
.btn_close_popup::before,
.btn_close_popup::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: var(--RECREA_COLOR_SECONDARY, #1E3A5F);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}

.btn_close_popup::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn_close_popup::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn_close_popup:hover::before,
.btn_close_popup:hover::after {
    background-color: var(--RECREA_COLOR_PRIMARY, #55D1F9);
}

.popup_content {
    padding: 0.5rem 1.5rem 1rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.popup_content form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.popup_container .form_group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.popup_container .form_group label {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #000000 !important;
    padding-left: 0.5rem;
    margin: 0 0 0.25rem 0 !important;
}

.popup_container .form_group input,
.popup_container .form_group textarea,
.popup_container .form_group select {
    padding: 0.8rem !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    color: #64748B !important;
    background-color: #FFFFFF !important;
    margin: 0 0 0.75rem 0 !important;
    box-sizing: border-box;
    width: 100%;
}

.popup_container .form_group input::placeholder,
.popup_container .form_group textarea::placeholder {
    color: #94A3B8 !important;
}

.popup_container .form_group input:focus,
.popup_container .form_group textarea:focus,
.popup_container .form_group select:focus {
    outline: none;
    border-color: var(--RECREA_COLOR_SECONDARY, #1E3A5F) !important;
}

.form_group textarea {
    min-height: 100px;
    resize: vertical;
}

.popup_container .form_actions {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0.5rem 0 0 0 !important;
    padding: 0 !important;
}

.popup_container .form_actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    margin: 0 !important;
}

.form_actions .btn_primary {
    background-color: var(--RECREA_COLOR_PRIMARY, #55D1F9);
    color: #FFFFFF;
    border: none;
}

.form_actions .btn_primary:hover {
    background-color: var(--RECREA_COLOR_SECONDARY, #1E3A5F);
}

.form_actions .btn_primary:disabled {
    background-color: #94A3B8;
    cursor: not-allowed;
}

.form_actions .btn_secondary {
    background-color: transparent;
    color: #808080;
    border: none;
    text-decoration: none;
    font-weight: 400;
}

.form_actions .btn_secondary:hover {
    color: var(--RECREA_COLOR_PRIMARY, #55D1F9);
    text-decoration: none;
}

.form_message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.form_message.success {
    background-color: #D1FAE5;
    color: #065F46;
}

.form_message.error {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Responsive mobile */
@media screen and (max-width: 640px) {
    .popup_container {
        border-radius: 1rem 1rem 0 0;
        position: fixed;
        bottom: 0;
        max-width: 100%;
        width: 100%;
        max-height: 90vh;
    }
}

/* ============================================
   STYLES OPTIONS ABONNEMENT (tarif.php)
   ============================================ */
.options .tag-option {
    cursor: pointer;
    transition: all 0.2s ease;
}

.options .tag-option:hover {
    border-color: #EC4899;
}

.options .tag-option.active {
    border-color: #EC4899;
    background-color: #FDF2F8;
}

.options .tag-principal {
    cursor: pointer;
    transition: all 0.2s ease;
}

.options .tag-principal:hover {
    border-color: #EC4899;
}

/* ============================================
   PAGE TARIF
   ============================================ */
@keyframes rolling_sign_smile {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}