﻿: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_wrapper {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.switch_plans {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 6px;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  border-radius: 6.1875rem;
  background-color: #F1F5F9;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: fit-content;
  max-width: 100%;
}

/* Masquer la scrollbar pour Chrome, Safari et Opera */
.switch_plans::-webkit-scrollbar {
  display: none;
}
/* Knob animé (fond blanc qui glisse) */
.switch_plans::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  width: var(--knob-width, 0);
  background-color: #FFFFFF;
  border-radius: 6.1875rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  transform: translateX(var(--knob-x, 0));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.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;
  transition: color 0.25s ease, font-weight 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.switch_plans .tab.active {
  font-weight: 500;
  color: #334155;
  /* Plus de background ici, c'est le ::before qui fait le job */
}
/* Par défaut, masquer tous les prix sauf mensuel */
#abonnements .trimestriel,
#abonnements .semestriel,
#abonnements .annuel {
    display: none;
}
/* Mode trimestriel */
#abonnements[data-mode="trimestriel"] .trimestriel {
    display: block;
}
#abonnements[data-mode="trimestriel"] .mensuel {
    display: none;
}
/* Mode semestriel */
#abonnements[data-mode="semestriel"] .semestriel {
    display: block;
}
#abonnements[data-mode="semestriel"] .mensuel {
    display: none;
}
/* Mode annuel */
#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;
}
/* Masquer les ombres latérales quand pas de slider */
#abonnements #container_abos.no-slider::before,
#abonnements #container_abos.no-slider::after {
    display: none;
}
/* 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%;
}
#div_section_unitaires, #div_section_pass {
    background-color: #F1F5F9;
    width: 100%;
    max-width: 1660px;
    background-color: var(--ligthGrey);
    padding: 1rem;
    border-radius: 1.5rem;
}
#div_section_unitaires #filtres_tarifs, #div_section_pass #filtres_pass {
    height: 3rem;
    border-radius: 0.5rem;
    background-color: var(--white);
    padding: 0 1rem;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
#div_section_unitaires #filtres_tarifs .arrows, #div_section_pass #filtres_pass .arrows {
    position: absolute;
    height: 100%;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0));
    z-index: 1;
    cursor: pointer;
}
#div_section_unitaires #filtres_tarifs .left-arrow, #div_section_pass #filtres_pass .left-arrow {
    left: 0;
}
#div_section_unitaires #filtres_tarifs .right-arrow, #div_section_pass #filtres_pass .right-arrow {
    right: 0;
}
#div_section_unitaires #filtres_tarifs ul, #div_section_pass #filtres_pass ul {
    display: flex;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    height: 100%;
}
#div_section_unitaires #filtres_tarifs ul li a, #div_section_pass #filtres_pass ul li a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1rem;
    height: 100%;
    text-decoration: none;
    font-weight: 500;
    color: var(--grey);
    fill: var(--grey);
    white-space: nowrap;
    transition: color 200ms ease-in-out, filter 200ms ease-in-out;
    cursor: pointer;
}
#div_section_unitaires #filtres_tarifs ul li a::before, #div_section_pass #filtres_pass ul li a::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--filter-color, #000000);
    opacity: 0;
    transition: all 300ms ease-in;
}
#div_section_unitaires #filtres_tarifs ul li a:hover:not(.active), #div_section_pass #filtres_pass ul li a:hover:not(.active) {
    filter: brightness(0.85);
}
#div_section_unitaires #filtres_tarifs ul li a.active, #div_section_pass #filtres_pass ul li a.active {
    color: var(--filter-color, #000000);
    fill: var(--filter-color, #000000);
    cursor: default;
}
#div_section_unitaires #filtres_tarifs ul li a.active::before, #div_section_pass #filtres_pass ul li a.active::before {
    opacity: 1;
}

.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;
    gap: 0.25rem;
    background-color: var(--header-color, #3D7CF4);
    color: #FFFFFF;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    min-height: 94px; /* Hauteur fixe même sans sous-titre */
}
.card.abo .header .titre {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.card.abo .header .titre h3 {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1;
    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;
}
#abonnements .card.abo .header .sous_titre {
    font-weight: 300;
    line-height: 1;
}
.card.abo .content {
    width: 100%;
    display: flex;
    padding: 1.5rem 1.5rem 0;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 auto;
    margin: 0; /* Reset global body .content margin: auto from styles.css */
    max-height: 240px;
    min-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: var(--header-color, #3D7CF4);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    transition: filter 200ms ease-in-out;
}
.card.abo .voir-plus:hover {
    filter: brightness(0.8);
}
.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: var(--header-color, #3D7CF4);
    border-radius: 0.375rem;
    border: 1px solid transparent;
    transition: all 200ms ease-in-out;
}
.card.abo > .cta .btn.btn_primary {
    background: color-mix(in srgb, var(--header-color, #3D7CF4) 15%, white);
    color: var(--header-color, #3D7CF4);
}
.card.abo > .cta .btn.btn_primary:hover {
    background: var(--header-color, #3D7CF4);
    color: #ffffff;
}
.card.abo > .cta .btn.btn_secondary {
    background: transparent;
    border-color: var(--header-color, #3D7CF4);
}
.card.abo > .cta .btn.btn_secondary:hover {
    background: transparent;
    color: var(--header-color, #3D7CF4);
    border-color: var(--header-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;
}
#abo_tarifs .mentions {
    align-items: flex-start;
}
#abo_tarifs .mentions p {
    color:#94A3B8;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 300;
    margin: 0;
}
.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;
    min-height: 200px;
    height: stretch;
    height: -webkit-fill-available;
    height: -moz-available;
}
.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;
}
/* ============================================
   COMPOSANT CARD TARIF
   - Styles de base pour toutes les cartes
   - Animations hover uniquement sur les liens (a.card.tarif)
   ============================================ */
.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: border-color 200ms cubic-bezier(0.47, 0, 0.745, 0.715),
                box-shadow 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
/* Styles spécifiques aux cartes cliquables (liens) */
a.card.tarif {
    display: flex;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 200ms cubic-bezier(0.47, 0, 0.745, 0.715),
                box-shadow 200ms cubic-bezier(0.47, 0, 0.745, 0.715),
                transform 200ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
a.card.tarif:hover {
    border-color: var(--category-border-hover, #3D7CF4);
    transform: scale(1.02);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.125);
}
.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;
}
a.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;
}
a.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(--tag-bg, #CBD5E1);
    color: var(--tag-color, #475569);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    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;
}
#produit .mentions {
    width: 100%;
    margin: 0 1rem;
    color: #94A3B8;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 300;
}
#produit .mentions p {
    margin: 0;
}

@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) {
    #abo_tarifs {
        padding: 0 0 5rem 0;
    }
    #abonnements #container_abos {
        border-radius: 0;
    }
    #div_section_unitaires, #div_section_pass {
        border-radius: 0;
    }
    #abo_tarifs h2 {
        text-align: center;
        font-size: 1.75rem;
    }
    #abo_tarifs .container {
        padding: 1rem 0 0 0;
        gap: 0.5rem;
    }
    #abo_tarifs .mentions {
        width: auto;
        padding: 0 1rem;
    }
    .marketing {
        width: auto;
        padding: 0 1rem;
    }
    .marketing .content {
        padding: 2rem;
        text-align: center;
    }
}

/* ============================================
   STYLES POPUP CONTACT (tarifs.php et header-parallax.php -> bloc offre)
   Style aligné sur popup mot de passe oublié
   ============================================ */
/* OFFRES */
.parallax_container:has(.heading.heading_offre_formulaire) {
	height: 100%;
}
.parallax_container .heading.heading_offre_formulaire {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
	gap: 3rem;
	padding: 18vh 8vh;
    height: 100%;
	width: 100%;
	max-width: 1660px;
    transform: translateZ(1px) scale(0.875);
}
.parallax_container .heading.heading_offre_formulaire .offre_content_left {
	flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
	min-width: 300px;
    /* padding: 5rem 0 ; */
}
/* .parallax_container .heading.heading_offre_formulaire .offre_content_left .title_offre_form {
	text-align: left ;
    font-size: 3rem ;
    font-weight: 700 ;
    line-height: 1.2 ;
    font-style: italic;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.8));
    margin: 0 0 2rem 0;
} */
.parallax_container .heading.heading_offre_formulaire .offre_form_right {
	flex: 1;
    width: 600px;
    padding: 3rem 2rem;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
}
.parallax_container .heading.heading_offre_formulaire .offre_content_right p {
    text-align: center;
}
.heading_offre_formulaire .offre_form_container {
	background: #FFF;
	padding: 25px;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.heading_offre_formulaire .offre_form_container h3 {
	margin: 0 0 10px 0;
	color: #1C317A;
    font-weight: 600;
    text-align: center;
	font-size: 1.4em;
}
.heading_offre_formulaire .offre_form_container > p {
	margin: 0 0 15px 0;
	color: #666;
	font-size: 0.875rem !important;
}
.heading_offre_formulaire .offre_form_container #offre_contact_form {
	margin: 0;
}
.heading_offre_formulaire .offre_form_container div {
	margin-bottom: 12px;
}
.heading_offre_formulaire .offre_form_container label {
	display: block;
	margin-bottom: 4px;
	color: #1C317A;
	font-size: 0.9em;
	font-weight: 500;
}
.heading_offre_formulaire .offre_form_container input[type="text"],
.heading_offre_formulaire .offre_form_container input[type="email"],
.heading_offre_formulaire .offre_form_container input[type="tel"] {
	width: 100%;
	padding: 10px;
	border: 2px solid #D4D4D4;
	border-radius: 5px;
	font-size: 1em;
	box-sizing: border-box;
    margin-bottom: 0;
}
.heading_offre_formulaire .offre_form_container input[type="text"]:focus,
.heading_offre_formulaire .offre_form_container input[type="email"]:focus,
.heading_offre_formulaire .offre_form_container input[type="tel"]:focus {
	outline: none;
	border-color: var(--couleur_boutons, #007bff);
}
.heading_offre_formulaire .form_group_rgpd {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.heading_offre_formulaire .form_group_rgpd input[type="checkbox"] {
	margin-top: 3px;
}
.heading_offre_formulaire .form_group_rgpd label {
	font-size: 0.8em;
	color: #666;
	margin-bottom: 0;
}
.heading_offre_formulaire .btn_submit {
	width: 100%;
	padding: 12px;
	background-color: var(--couleur_boutons, #007bff);
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 1em;
	cursor: pointer;
	transition: opacity 0.3s;
}
.heading_offre_formulaire .btn_submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.heading_offre_formulaire .btn_submit:hover:not(:disabled) {
	opacity: 0.9;
}
.heading_offre_formulaire .form_message {
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	font-size: 0.9em;
}
.heading_offre_formulaire .form_message.success {
	background-color: #d4edda;
	color: #155724;
}
.heading_offre_formulaire .form_message.error {
	background-color: #f8d7da;
	color: #721c24;
}
.heading_offre_formulaire .scroll_indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 768px) {
	.heading_offre_formulaire {
		flex-direction: column;
		gap: 20px;
	}
	.heading_offre_formulaire .offre_content_left,
	.heading_offre_formulaire .offre_form_right {
		width: 100%;
		max-width: none;
	}
}

/* TARIFS */
#mask_popup_contact {
    z-index: 9;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(56, 74, 105, 0.5);
    backdrop-filter: blur(3px) grayscale(1);
    transition: opacity 300ms ease-in-out;
}
#popup_contact {
    z-index: 10;
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    width: 600px;
    padding: 3rem 2rem;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
    border-radius: 1rem;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0);
    background-color: var(--white, #FFFFFF);
    transition:
        box-shadow 300ms ease-in-out,
        opacity 250ms ease-in-out,
        transform 300ms ease-in-out;
    overflow-y: auto;
}
#popup_contact h3 {
    font-size: 1.5rem;
    color: var(--secondary, #1C317A);
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}
#popup_contact > p {
    text-align: center;
    color: var(--grey, #808080);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
#popup_contact form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: unset;
}
#popup_contact form > div {
    display: flex;
    flex-direction: column;
}
#popup_contact label {
    font-weight: 500;
    color: var(--secondary, #1C317A);
    padding-left: 0.5rem;
    font-size: 0.875rem;
}
#popup_contact input:not(input[type='submit']):not(input[type='checkbox']) {
    padding: 0.8rem;
    text-align: left;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: fit-content;
    margin: unset;
    border: 2px solid var(--disabled, #D4D4D4);
    border-radius: 0.5rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 1rem;
    color: var(--grey, #808080);
    background-color: var(--white, #FFFFFF);
}
#popup_contact input:not(input[type='submit']):not(input[type='checkbox']):focus {
    border: 2px solid var(--secondary, #1C317A);
    color: var(--secondary, #1C317A);
    outline: none;
}
#popup_contact input:not(input[type='submit']):not(input[type='checkbox']):focus::placeholder {
    color: var(--secondary, #1C317A);
}
#popup_contact .form_group_rgpd {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
#popup_contact .form_group_rgpd input[type='checkbox'] {
    width: auto;
    margin-top: 0.25rem;
}
#popup_contact .form_group_rgpd label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--grey, #808080);
}
#popup_contact #btn_submit_contact {
    display: flex;
    justify-content: center;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0.75rem;
    width: 100%;
    background-color: var(--primary, #55D1F9);
    border: 1px solid var(--primary, #55D1F9);
    border-radius: 0.25rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--white, #FFFFFF);
    transition: all 250ms ease-in-out;
}
#popup_contact #btn_submit_contact:hover {
    filter: brightness(0.9);
}
#popup_contact #btn_submit_contact:disabled {
    background-color: var(--disabled, #D4D4D4);
    border-color: var(--disabled, #D4D4D4);
    color: var(--white, #FFFFFF);
    cursor: not-allowed;
    pointer-events: none;
}
#popup_contact .form_message {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}
#popup_contact .form_message.success {
    background-color: #D1FAE5;
    color: #065F46;
}
#popup_contact .form_message.error {
    background-color: #FEE2E2;
    color: #991B1B;
}
/* Responsive mobile */
@media screen and (max-width: 640px) {
    #popup_contact {
        width: 100%;
        max-width: 100%;
        border-radius: 1rem 1rem 0 0;
        bottom: 0;
        top: auto;
        transform: translateX(-50%);
        max-height: 90vh;
    }
    .parallax_container .heading.heading_offre_formulaire {
	    padding: 18vh 1rem;
    }
}

/* ============================================
   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);
    }
}