html {
    scrollbar-gutter: stable;
}

.longevity-2026 {
    display: flex;
    flex-direction: column;
    width: 100%;
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-LIGHT: "Gotham_Light";
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
    --RED: #B40024;
    --CHARCOAL: #333;
    --STONE: #B0A9A5;
    --HOVER: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    --FOCUS-VISIBLE: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893d2;
    --CTA-TEXT-COLOR: #fff;
    --CTA-BG-COLOR: var(--RED);
    --CTA-BG-HOVER-COLOR: #8C0B26;
    --CTA-BG-ACTIVE-COLOR: #63021A;
    --CTA-BORDER-COLOR: var(--RED);
    font-family: var(--FONT-GOTHAM-BOOK);
    min-height: 100svh;
    overflow: hidden;
}

@media (max-width: 761px) {
    .longevity-2026 {}
}

.longevity-2026 * {
    box-sizing: border-box;
}

.longevity-2026-section {
    display: block;
    padding: 64px;
}

.longevity-2026-title {
    margin: 0;
    color: var(--CHARCOAL);
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 42px;
    font-style: normal;
    font-weight: bolder;
    line-height: 1.09em;
}

@media (max-width: 761px) {
    .longevity-2026-title {
        font-size: 29px;
    }
}

.longevity-2026-subtitle {
    margin: 0;
    color: var(--CHARCOAL);
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45em;
}

@media (max-width: 761px) {
    .longevity-2026-subtitle {
        font-size: 17px;
    }
}

.longevity-2026-text {
    margin: 0;
    color: var(--CHARCOAL);
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 761px) {
    .longevity-2026-text {
        font-size: 17px;
        line-height: 20px;
    }
}


/****************************************************************/
.longevity-2026-link {
    color: #333 !important;
    text-decoration: underline !important;
    font-family: var(--FONT-GOTHAM-MEDIUM) !important;
    font-size: 14px !important;
    line-height: 145% !important;
}

.longevity-2026-link:hover {
    text-decoration: none !important;
}

.longevity-2026-link:focus-visible {
    box-shadow: var(--FOCUS-VISIBLE);
}

/****************************************************************/
.longevity-2026-cta {
    margin: 0;
    position: relative;
    background-color: var(--CTA-BG-COLOR) !important;
    display: inline-flex;
    gap: 10px;
    color: var(--CTA-TEXT-COLOR) !important;
    border: 1px solid var(--CTA-BORDER-COLOR);
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    line-height: 145%;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    height: 44px;
    box-sizing: border-box;
    text-transform: unset !important;
    letter-spacing: unset !important;
    outline: 0 !important;
}

.longevity-2026-cta:hover {
    /*  box-shadow: var(--HOVER);*/
    background-color: var(--CTA-BG-HOVER-COLOR) !important;
}

.longevity-2026-cta:active {
    background-color: var(--CTA-BG-ACTIVE-COLOR) !important;
}

.longevity-2026-cta:focus-visible {
    background-color: var(--CTA-BG-COLOR) !important;
    box-shadow: var(--FOCUS-VISIBLE);
}

/****************************************Header****************************************/
.longevity-2026-header {
    width: 100%;
    position: relative;
    margin: 0 auto;
    --HEADER-HEIGHT: 500px;
    --COLOR-HEADER: var(--CHARCOAL);
}

.longevity-2026-header__wrapper {
    width: 100%;
    margin: 0 auto;
    /*max-width: 1920px;*/
    height: var(--HEADER-HEIGHT);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.longevity-2026-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    container-name: header;
    container-type: size;
}

.longevity-2026-header__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.longevity-2026-header__background-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.longevity-2026-header__background::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
}

.longevity-2026-header__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.longevity-2026-header__background iframe {
    aspect-ratio: 16/9;
    position: absolute;
    z-index: 1;
}

@container header (min-aspect-ratio: 16/9) {
    .longevity-2026-header__background iframe {
        width: 100%;
        height: auto;
    }
}

@container header (max-aspect-ratio: 16/9) {
    .longevity-2026-header__background iframe {
        width: auto;
        height: 100%;
    }
}

.longevity-2026-header__title {
    color: var(--COLOR-HEADER);
    font-size: 50px;
    line-height: 1.2em;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    text-align: center;
    letter-spacing: 0;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.longevity-2026-header__text {
    color: var(--COLOR-HEADER);
    font-size: 20px;
    line-height: 26px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    text-align: center;
    letter-spacing: 0;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.longevity-2026-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.longevity-2026-header__scroller {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    position: sticky;
    bottom: 0px;
    height: 0;
}

.longevity-2026-header__scroller a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    color: var(--COLOR-HEADER) !important;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 145%;
    text-decoration: none;
    text-align: center;
    outline: 0;
    border-radius: 2px;
    padding: 0 20px;
}

.longevity-2026-header__scroller a::after {
    content: ' ';
    background-image: url('../img/down-light.svg');
    width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}

.longevity-2026-header__scroller a:focus-visible {
    box-shadow: var(--FOCUS-VISIBLE);
}

@media(max-width:761px) {
    .longevity-2026-header {
        --COLOR-HEADER: #fff;
    }

    .longevity-2026-header__title {
        font-size: 35px;
    }

    .longevity-2026-header__wrapper {
        height: 480px;
    }

    .longevity-2026-header__scroller a::after {
        background-image: url('../img/arrow-down.svg');
    }

    .longevity-2026-header__background::before {
        opacity: 1;
    }
}


/*********** bloc - Nav Cards *****************/
.longevity-2026-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 64px;
    padding-bottom: 80px;
}

.longevity-2026-cards__intro {
    max-width: 1002px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.4em;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-weight: normal;
    letter-spacing: 0;
    color: var(--CHARCOAL);
}

.longevity-2026-cards__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px;
    max-width: 1520px;
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0;
}

.longevity-2026-cards__item a {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
    outline: 0;
}

/*
.longevity-2026-cards__item a:hover {
    box-shadow: var(--HOVER);
}
*/
.longevity-2026-cards__item a:focus-visible {
    box-shadow: var(--FOCUS-VISIBLE);
}

.longevity-2026-cards__item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, #000 0%, transparent 40%);
    opacity: 0.4;
    transition: opacity 0.3s ease-in-out;
}

.longevity-2026-cards__image {
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
}

.longevity-2026-cards__image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.0001) translateZ(0);
}

.longevity-2026-cards__item:hover .longevity-2026-cards__image img {
    transform: scale(1.05) translateZ(0);
}


.longevity-2026-cards__title {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 24px;
    font-weight: normal;
    line-height: 26px;
    text-align: left;
}

@media(max-width: 1023px) {
    .longevity-2026-cards {
        padding: 40px 20px;
        gap: 40px;
    }

    .longevity-2026-cards__list {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;

    }

    .longevity-2026-cards__item a {
        border-radius: 8px;
    }

    .longevity-2026-cards__title {
        padding: 20px;
        font-size: 17px;
        line-height: 23px;
    }

}

@media(max-width: 761px) {

    .longevity-2026-cards__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .longevity-2026-cards__title {
        padding: 12px;
        font-size: 14px;
        line-height: 20px;
    }


}

/*********** bloc - Topic *****************/
.longevity-2026-topic {
    position: relative;
    min-height: 700px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.longevity-2026-topic__background {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}

.longevity-2026-topic__background>img {
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.longevity-2026-topic__wrapper {
    position: relative;
    display: flex;
    z-index: 2;
    padding: 40px;
    gap: 40px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    max-width: 100%;
}

.longevity-2026-topic__content {
    width: 571px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.longevity-2026-topic__title {
    margin: 0;
    margin-bottom: 8px;
    font-size: 35px;
    line-height: 40px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    color: var(--CHARCOAL);
}

.longevity-2026-topic__subtitle {
    margin: 0;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 26px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    color: var(--CHARCOAL);
}

.longevity-2026-topic__text {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-weight: normal;
    color: var(--CHARCOAL);
}

.longevity-2026-topic__products-list {
    display: flex;
    gap: 32px;
}

.longevity-2026-topic__product {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.longevity-2026-topic__packshot {
    overflow: hidden;
    cursor: pointer;
    outline: 0;
    position: relative;
}

.longevity-2026-topic__packshot::after {
    content: ' ';
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/open.svg');
    right: 12px;
    top: 12px;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
}

.longevity-2026-topic__packshot:hover::after {
    transform: rotate(90deg);
    background-image: url('../img/open-hover.svg');
}

.longevity-2026-topic__packshot img {
    display: block;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.0001) translateZ(0);
}

/*
.longevity-2026-topic__packshot:hover {
    box-shadow: var(--HOVER);
}
*/
.longevity-2026-topic__packshot:hover img {
    transform: scale(1.1) translateZ(0);
}

.longevity-2026-topic__packshot:focus-visible {
    box-shadow: var(--FOCUS-VISIBLE);
}

.longevity-2026-topic__product-name {
    margin: 0;
    font-size: 17px;
    line-height: 23px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    color: var(--CHARCOAL);
}

@media(min-width: 1358px) {
    .longevity-2026-topic__products-list {
        min-width: 311px;
        justify-content: center;
        display: flex;
    }

    .longevity-2026-topic__products {
        width: 270px;
    }
}

@media(max-width: 1357px) {
    .longevity-2026-topic__wrapper {}


}

@media(max-width: 1024px) {
    .longevity-2026-topic__wrapper {
        flex-direction: column;
    }
}

@media(max-width: 761px) {
    .longevity-2026-topic {
        padding: 40px 20px;
    }

    .longevity-2026-topic__wrapper {
        padding: 32px 16px;
        max-width: 460px;
    }

    .longevity-2026-topic__content {
        width: 100%;
    }

    .longevity-2026-topic__products-list {
        flex-direction: column;
    }

    .longevity-2026-topic__packshot,
    .longevity-2026-topic__packshot img {
        width: 100%;
        height: auto;
    }
}

/*********** bloc - Sticky *****************/
.longevity-2026-sticky {
    position: sticky;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
}

.longevity-2026-sticky__content {
    display: flex;
    justify-content: center;

}

.longevity-2026-sticky[data-loaded="1"] .longevity-2026-sticky__content {
    transition: transform 0.3s ease-in-out;
}

.longevity-2026-sticky__links {
    display: flex;
    background-color: #000;
    height: 60px;
    border-radius: 30px;
    max-width: 1520px;
    justify-content: center;
    margin: 30px;
    padding: 8px;
    box-sizing: border-box;
    gap: 8px;
    --X: 0;
    --WIDTH: 100px;
    --DURATION: 0.3s;
    position: relative;
}

.longevity-2026-sticky__links::before {
    content: ' ';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 44px;
    position: absolute;
    top: 8px;
    left: var(--X);
    width: var(--WIDTH);
    border-radius: 22px;
    z-index: 1;
    transition: width 0.5s ease-in-out, left 0.3s ease-in-out;
    transition-duration: var(--DURATION);
}

.longevity-2026-sticky__link {
    display: flex;
    overflow: hidden;
    padding: 0 16px;
    position: relative;
    color: #fff;
    z-index: 1;
    height: 44px;
    text-decoration: none;
    font-family: var(--FONT-GOTHAM-BOOK);
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 1em;
    text-align: center;
    letter-spacing: 0;
    outline: 0;
    cursor: pointer;
}



.longevity-2026-sticky__link::before {
    content: ' ';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}


.longevity-2026-sticky__link:hover::before {
    opacity: 0.5;
}

.longevity-2026-sticky__link:hover {
    color: #fff;
}

.longevity-2026-sticky__link[data-active="1"]:hover::before,
.longevity-2026-sticky__link[data-active="1"]::before {
    opacity: 0.5;
}

.longevity-2026-sticky__link[data-active="1"]:hover::before,
.longevity-2026-sticky__link[data-active="1"] {
    color: #000;
}


.longevity-2026-sticky[data-visible="0"] .longevity-2026-sticky__content {
    transform: translateY(100%);
}

.longevity-2026-sticky__current {
    display: none;
}

@media(max-width:1120px) {
    .longevity-2026-sticky__content {
        width: 100%;
        flex-direction: column;
    }
    .services-sticky * { 
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
   
    .longevity-2026-sticky__current {
        display: flex;
        height: 60px;
        margin: 30px 20px;
        background-color: #000;
        font-size: 14px;
        line-height: 20px;
        font-family: var(--FONT-GOTHAM-BOOK);
        font-weight: normal;
        color: #fff;
        text-align: center;
        text-decoration: none;
        align-items: center;
        justify-content: flex-start;
        border-radius: 60px;
        cursor: pointer;
    }

    .longevity-2026-sticky__current::before {
        content: ' ';
        display: block;
        background-image: url(../img/arrow-down.svg);
        background-position: center;
        background-repeat: no-repeat;
        width: 15px;
        height: 8px;
        margin-right: 13px;
        margin-left: 21px;
    }

    .longevity-2026-sticky__links {
        flex-direction: column;
        height: auto;
        margin: 0 20px;
        position: absolute;
        bottom: 30px;
        width: calc(100% - 40px);
        overflow: hidden;
        opacity: 1;
        gap:0;
    }

    .longevity-2026-sticky__links::before {
        display: none;
    }

    .longevity-2026-sticky[data-loaded="1"] .longevity-2026-sticky__links {
        transition: max-height 0.1s ease-in-out;
    }

    .longevity-2026-sticky[data-open="0"] .longevity-2026-sticky__links {
        max-height: 60px !important;
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }

    .longevity-2026-sticky__link[data-active="1"]:hover::before,
    .longevity-2026-sticky__link[data-active="1"]::before {
        opacity: 1;
    }

}

/*********** bloc - FAQ *****************/
.longevity-2026-faq {
    text-align: center;
    background-color: #fff;
    padding-top: 64px;
    padding-bottom: 64px;
    font-family: var(--FONT-GOTHAM-BOOK);
    position: relative;
    z-index: 2;
}

.longevity-2026-faq__title {
    margin: 0 auto;
    max-width: 750px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 35px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    z-index: 2;
    position: relative;
    color: #333333;
}



.longevity-2026-faq__text {
    margin: 0;
    margin-top: 24px;
    color: #333333;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
}

/*----Elements---*/
.longevity-2026-faq__container {
    width: 100%;
    max-width: 1002px;
    margin: 0 auto;
    margin-top: 40px;

}

.longevity-2026-faq__item {
    text-align: left;
    border-top: 1px solid #cbcbcb;
    position: relative;
    box-sizing: border-box;
}


.longevity-2026-faq__item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: calc(100% - 2px);
    border-top: 2px solid #333;
    opacity: 0;
    pointer-events: none;
}

/*
.longevity-2026-faq__item[data-open="0"]:hover+.longevity-2026-faq__item::before {
    opacity: 1;
}

.longevity-2026-faq__item:hover::before {
    opacity: 1;
}
*/
/*
.longevity-2026-faq__item[data-open="0"]:hover+.longevity-2026-faq__item {
    border-top-color: #333;
    border-top-width: 2px;
}
*/
.longevity-2026-faq__question {
    margin: 0;
    font-size: 14px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    padding: 15px 0;
    line-height: 24px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    color: #333;

}

.longevity-2026-faq__opener {
    position: absolute;
    top: 6px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% - 12px);
    outline: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    cursor: pointer;
    border-radius: 8px;
}

.longevity-2026-faq__opener:focus-visible {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.longevity-2026-faq__question::after {
    content: " ";
    position: absolute;
    top: 16px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/down-light.svg);
    background-image: url(../img/down.svg);
    background-size: cover;
    display: flex;
    cursor: pointer;
    transition: transform ease-in-out 0.5s;
}

/*
.longevity-2026-faq__item:hover .longevity-2026-faq__question::after {
    background-image: url(../img/down.svg);
}*/

.longevity-2026-faq__question--active::after {
    transform: rotate(180deg);
}

.longevity-2026-faq__answer {
    height: 0;
    overflow: hidden;
    transition: height ease-in-out 0.2s;
}

.longevity-2026-faq__answer-content {
    font-size: 14px;
    line-height: 1.4em;
    display: block;
    margin: 0;
    padding: 0px;
}

.longevity-2026-faq__answer-content a {
    color: #333;
    text-decoration: underline;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
}

.longevity-2026-faq__answer-content strong {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
}

.longevity-2026-faq__answer-content p {
    margin: 0;
}

.longevity-2026-faq .dp-link {
    margin-top: 50px;
}

.longevity-2026-faq__mentions {
    font-size: 11px;
    opacity: 0.5;
}

/*--responsive------*/
@media screen and (max-width: 1023px) {
    .longevity-2026-faq {
        margin: 0px;
        padding: 20px;
        padding-top: 0px;
    }

    .longevity-2026-faq__title {
        padding-top: 64px;
        font-size: 35px;
    }

    .longevity-2026-faq__question {
        margin: 0;
        font-size: 16px;
        line-height: 1.4em;
    }

    .longevity-2026-faq__answer-content {
        font-size: 14px;
        line-height: 1.4em;
    }

}

@media screen and (max-width: 761px) {
    .longevity-2026-faq__title {
        font-size: 35px;
        line-height: 40px;
    }
}


/*********** bloc - popins *****************/

.trapfocus {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.longevity-2026-popin {
    outline: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background-color: transparent;
    border: 0px;
    display: none;
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-LIGHT: "Gotham_Light";
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
    --RED: #B40024;
    --CHARCOAL: #333;
    --STONE: #B0A9A5;
    --HOVER: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    --FOCUS-VISIBLE: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893d2;
    --CTA-TEXT-COLOR: #fff;
    --CTA-BG-COLOR: var(--RED);
    --CTA-BG-HOVER-COLOR: #8C0B26;
    --CTA-BG-ACTIVE-COLOR: #63021A;
    --CTA-BORDER-COLOR: var(--RED);
}

.longevity-2026-popin[open] {
    display: flex;
}

.longevity-2026-popin::backdrop {
    display: none;
}

.longevity-2026-popin__quickshop {
    background-color: #fff;
    padding: 32px;
}


.longevity-2026-popin__overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.longevity-2026-popin__box {
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    max-height: calc(100vh - 80px);
    max-width: 1002px;
    width: calc(100% - 80px);
    overflow: hidden;
    border-radius: 8px;
}

.longevity-2026-popin__wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    /*  height: calc(100vh - 130px);*/
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
   /* border-top: 0.25px solid #797674;*/
}

.longevity-2026-popin__content {
    overflow-y: auto;
    position: relative;
    padding: 0 32px;
    gap: 32px;
    padding-bottom: 40px;
    display: flex;
}

.longevity-2026-popin .longevity-2026-popin__content {
    display: flex !important;
}

.longevity-2026-popin__product {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.longevity-2026-popin__product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.longevity-2026-popin__packshot {
    width: 356px;
    display: block;
    cursor: pointer;
}

.longevity-2026-popin__packshot img {
    height: auto;
    width: 100%;
    display: block;
}

.longevity-2026-popin__product-name {
    margin: 0;
    margin-bottom: 12px;
    font-size: 29px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    line-height: 35px;
    color: var(--CHARCOAL);
}

.longevity-2026-popin__product-text {
    margin: 0;
    color: var(--CHARCOAL);
    font-size: 14px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    line-height: 20px;
}

.longevity-2026-popin__product-results {
    margin: 0;
    margin-top: 16px;
    margin-bottom: 24px;
    color: var(--CHARCOAL);
    list-style: none;
    font-family: var(--FONT-GOTHAM-BOOK);
    display: flex;
    gap: 64px;
    padding: 0;
    justify-content: flex-start;
    text-transform: uppercase;

}

.longevity-2026-popin__product-results>li {
    text-align: left;
    max-width: 200px;
    font-size: 17px;
    line-height: 23px;
}

.longevity-2026-popin__product-results>li>span {}

.longevity-2026-popin__product-results>li>strong {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    font-size: 42px;
    line-height: 46px;
    color: var(--CHARCOAL);
    display: block;
}

.longevity-2026-popin__product-results sub {
    vertical-align: baseline;
    font-size: 0.5em;
    position: unset;
}

.longevity-2026-popin__product-results sup {
    vertical-align: super;
    font-size: 0.5em;
    position: unset;
}

.longevity-2026-popin__mentions {
    margin: 0;
    color: #797674;
    font-size: 10px;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-weight: normal;
    line-height: 14px;
}


@media(min-width:762px) {

    /* width */
    .longevity-2026-popin__content::-webkit-scrollbar {
        width: 4px;
        border-radius: 4px;
    }

    /* Track */
    .longevity-2026-popin__content::-webkit-scrollbar-track {
        background: #FBF6F3;
        margin: 0 32px;
    }

    /* Handle */
    .longevity-2026-popin__content::-webkit-scrollbar-thumb {
        background: #797674;
        border-radius: 2px;
    }

    /* Handle on hover */
    .longevity-2026-popin__content::-webkit-scrollbar-thumb:hover {
        background: #F5EFEB;
    }
}

.longevity-2026-popin__close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 24px;
    height: 24px;
    background-image: url(../img/close.svg);
    background-size: cover;
    cursor: pointer;
    z-index: 5;
    border-radius: 5px;
    outline: 0;
}

.longevity-2026-popin__close:hover {
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .15);
}

.longevity-2026-popin__close:focus-visible {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

@media(max-width:761px) {

    .longevity-2026-popin {
        align-items: flex-end;
    }

    .longevity-2026-popin__box {
        background-color: #FBF6F3;
        max-height: calc(100vh - 120px);
        width: 100%;
    }

    .longevity-2026-popin__wrapper {
        max-height: calc(100vh - 160px);

    }

    .longevity-2026-popin__content {
        overflow-y: scroll;
        margin: 0;
        border-radius: 0px;
        padding: 20px;
        min-height: 0px;
        padding-bottom: 40px;
        flex-direction: column;


    }

    .longevity-2026-popin__product-results {
        gap: 32px;
    }

    .longevity-2026-popin__packshot {
        width: 100%;
    }

    .longevity-2026-popin__packshot img {
        width: 100%;
        height: auto;
    }
}

/***popin content ***/

.longevity-2026-popin__content-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1034px;
    padding: 64px 16px;
    width: 100%;
    margin: 0 auto;

}

.longevity-2026-popin__title {
    margin: 0;
    color: var(--RED);
    font-size: 35px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    line-height: 1.4em;
    text-align: right;
    padding: 0;
    text-transform: uppercase;
    padding-right: 70px;
    width: 100%;
}

.longevity-2026-popin__text {
    width: 100%;
    display: block;
    padding-top: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    width: 100%;
}

@media(min-width:762px) {

    .longevity-2026-popin__title {
        width: 50%;
    }

    .longevity-2026-popin__text {
        width: 50%;
    }
}

@media(max-width:1023px) {

    .longevity-2026-popin__product-results>li>strong {
        font-size: 35px;
        line-height: 40px;
        gap: 32px;
    }


    .longevity-2026-popin__product-results>li {
        font-size: 14px;
        line-height: 20px;
    }

    .longevity-2026-popin__product-info {
        margin-bottom: 32px;
        margin-top: 32px;
    }

}

@media(max-width:761px) {
    .longevity-2026-popin__content {
        gap: 0px;
    }

    .longevity-2026-popin__content-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }



    .longevity-2026-popin__title {
        font-size: 26px;
        text-align: left;
        padding: 0;
    }

    .longevity-2026-popin__text {
        padding: 0;
    }

    .longevity-2026-popin__product-results>li>strong {
        font-size: 35px;
        line-height: 40px;
        gap: 32px;
    }

    .longevity-2026-popin__product-results>li {
        font-size: 14px;
        line-height: 20px;
    }

    .longevity-2026-popin__product-name {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 30px;
    }

}