#heroSection {
    background: var(--blue-pink-gradient);
}

#heroSection h1 {
    text-wrap: balance;
    text-align: center;
}

#heroSection h1 span {
    background: linear-gradient(90deg, #9d174d, #db2777);
    background-clip: text;
}

#heroSection .btns-container {
    justify-content: center;
}

#heroSection .btns-container a {
    display: flex;
    gap: 5px;
}

#heroSection figure {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

#heroSection .tag {
    background: white;
    border: var(--border);
    box-shadow: var(--small-shadow);
    border-color: var(--pink);
    display: flex;
    gap: 5px;
    padding: 10px;
    margin: -35px auto 0;
}

#heroSection .tag i {
    color: var(--pink);
}


/* Prices Section */
#prices .array {
    background: var(--quaternary-gradient);
    padding: 20px;
    box-shadow: var(--medium-shadow);
    border-radius: var(--medium-radius);
}

#prices .gender {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#prices .gender p {
    width: 100%;
    text-align: center;
    color: black;
    font-weight: 600;
}

#prices .gender button {
    padding: 10px 15px;
    width: calc(50% - 5px);
    border: 1px solid var(--orange);
    background: var(--white);
    color: var(--grey);
    font-size: 13px;
}

#prices .gender button[aria-selected="true"] {
    background: var(--primary-gradient);
    scale: 1.05;
    box-shadow: var(--big-shadow);
    color: white;
    border: none;
}

#prices .type[hidden],
#prices .zone-content[hidden] {
    display: none !important;
}

#prices .nav-content {
    border-top: var(--border);
    border-bottom: var(--border);
    margin-top: 20px;
    padding: 20px 0;
}

#prices .nav-content p {
    width: 100%;
    text-align: center;
    color: black;
    font-weight: 600;
}

#prices .zone {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    border-radius: var(--low-radius);
}

#prices .zone button {
    width: calc(50% - 5px);
    border: 1px solid var(--orange);
    background: var(--white);
    color: var(--grey);
    font-size: 13px;
}

#prices .zone button[aria-selected="true"] {
    background: var(--primary-gradient);
    border: none;
    color: white;
    scale: 1.05;
    box-shadow: var(--big-shadow);
}

#prices .content {
    text-align: center;
    padding-top: 30px;
}

#prices .content .tag {
    background: var(--primary-gradient);
    color: white;
    margin: 10px auto 30px;
    padding: 8px 13px;
}

#prices article .price {
    color: var(--pink);
    font-weight: 700;
    font-size: 1.875rem;
    margin: 10px auto 5px;
    display: block;
}

#prices article > p {
    margin-bottom: 20px;
}

#prices article .forfaits {
    display: flex;
    justify-content: space-between;
    border-radius: var(--low-radius);
    padding: 10px;
    margin-top: 10px;
    text-align: left;
}

#prices article .forfaits:first-of-type {
    background: color-mix(in srgb, var(--green) 15%, white);
    border-left: 4px solid var(--green);
}

#prices article .forfaits:last-of-type {
    background: color-mix(in srgb, var(--pink) 15%, white);
    border-left: 4px solid var(--pink);
}

#prices article .forfaits .seance {
    color: black;
    font-weight: 500;
}

#prices article .forfaits .price-details {
    color: var(--green);
    font-weight: 600;
    font-size: 13px;
}

#prices article .forfaits span {
    font-weight: 700;
    color: white;
    font-size: .75rem;
    padding: 5px 10px;
    border-radius: var(--hight-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}

#prices article .forfaits:first-of-type span {
    background: var(--green);
}

#prices article .forfaits:last-of-type span {
    background: var(--pink);
}

#prices article a {
    width: 100%;
    margin-top: 20px;
}

#prices .promotions {
    margin-top: 30px;
    background: var(--primary-gradient);
    border: none;
}

#prices .promotions h2 {
    margin-bottom: 20px;
    color: white;
}

#prices .promotions article h3 {
    margin: 15px 0 10px 0;
}

#prices .promotions article .tag {
    background: var(--green);
    color: white;
    margin-left: auto;
    margin-right: auto;
}

#prices .promotions article .date {
    display: flex;
    gap: 5px;
    align-items: baseline;
    justify-content: center;
    margin-top: 10px;
    text-wrap: initial;
    text-align: initial;
}

#prices .promotions article .date i {
    color: var(--orange);
}

#prices #barometre {
    margin-top: 30px;
    background: var(--blue-pink-gradient);
}

#prices #barometre a {
    margin: 0 auto;
}


/* Atouts Section */
#atouts {
    text-align: center;
    text-wrap: balance;
}

#atouts .cards-container {
    margin-top: 30px;
}

#atouts article h3 {
    margin: 10px 0 5px 0;
}


/* CTA Section */
#cta {
    background: var(--quaternary-gradient);
}



    /* Pad Version */
    @media screen and (min-width: 768px) {
        #heroSection .section-container {
            display: flex;
            gap: 40px;
            justify-content: space-between;
            align-items: center;
        }

        #heroSection .content {
            width: 60%;
        }

        #heroSection h1,
        #heroSection .intro {
            text-align: left;
        }

        #heroSection .btns-container {
            justify-content: left;
        }

        #heroSection figure {
            width: 40%;
            margin-top: -30px;
            min-width: 322px;
            max-width: 322px;
        }


        /* Prices Section */
        #prices .array {
            padding: 25px;
        }

        #prices .gender {
            justify-content: center;
            gap: 10px 15px;
        }

        #prices .gender button {
            width: max-content;
            font-size: 14px;
        }

        #prices .nav-content {
            margin-top: 25px;
            padding: 25px 0;
        }

        #prices .zone {
            flex-wrap: nowrap;
            gap: 15px;
        }

        #prices .zone button {
            font-size: 14px;
        }

        #prices .content {
            padding-top: 35px;
        }

        #prices .content .tag {
            margin-bottom: 35px;
        }

        #prices article {
            width: calc(50% - 10px);
        }

        #prices article .forfaits .price-details {
            font-size: 14px;
        }

        #prices .promotions {
            margin-top: 40px;
        }

        #prices .promotions h2 {
            margin-bottom: 25px;
        }

        #prices .promotions .cards-container {
            justify-content: center;
        }

        #prices #barometre {
            margin-top: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }


        /* Atouts Section */
        #atouts .cards-container {
            margin-top: 40px;
        }

        #atouts article {
            width: calc(33% - 11px);
        }

        #atouts article h3 {
            margin: 15px 0 5px 0;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            #heroSection .section-container {
                gap: 60px;
            }

            #heroSection .content {
                width: 50%;
            }

            #heroSection figure {
                width: 50%;
                min-width: unset;
                max-width: 500px;
                margin: 0;
            }

            #heroSection .tag {
                margin-top: -45px;
            }


            /* Prices Section */
            #prices .array {
                padding: 30px;
            }

            #prices .gender {
                gap: 10px 20px;
            }

            #prices .gender button {
                font-size: 15px;
            }

            #prices .nav-content {
                margin-top: 30px;
                padding: 30px 0;
            }

            #prices .zone {
                gap: 10px 20px;
            }

            #prices .zone button {
                font-size: 15px;
            }

            #prices .content {
                padding-top: 40px;
            }

            #prices .content .tag {
                margin-bottom: 40px;
            }

            #prices .cards-container {
                justify-content: center;
            }

            #prices article {
                width: calc(25% - 15px);
            }

            #prices article .forfaits {
                gap: 10px;
            }

            #prices article .forfaits .price-details {
                font-size: 15px;
            }

            #prices .promotions {
                margin-top: 50px;
            }

            #prices .promotions article {
                width: calc(33% - 10px);
            }

            #prices .promotions h2 {
                margin-bottom: 30px;
            }

            #prices #barometre {
                margin-top: 50px;
            }


            /* Atouts Section */
            #atouts .cards-container {
                margin-top: 50px;
            }
        }