:root {
  --body-font-color: rgb(28, 28, 30);
  --body-bg-color: rgb(242, 242, 243);
  --font-stack: 'Google Sans Flex', sans-serif;
  --font-stack2: 'Geist', sans-serif;
  --font-stack3: 'Cabinet Grotesk', sans-serif;
  --font-stack4: 'Hanken Grotesk', sans-serif;
  --text-higlight: rgb(164, 19, 21);
  --cta-bg-color: rgb(164, 19, 21);
  --cta-bg-color-hover: rgb(154 14 16);
  --cta-text-color: #ffffff;
  --header-font-color: rgb(28, 28, 30);
  --header-font-size: 45px;
  --box-border-radius: 20px;
  --box-border-radius-sm: 15px;
  --box-border: 6px solid #ffffff;
  --box-border-thin: 3px solid #ffffff;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('//assets.lifecellskin.com/offers/fonts/CabinetGrotesk-Variable.ttf') format('truetype-variations');
    font-weight: 200 900;
    font-style: normal;
}


/*
    ====== General ======
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-height: 1000000em;
  /* Chrome for Android */
  -moz-text-size-adjust: none;
  /* Firefox Mobile */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--body-bg-color);
    font-family: var(--font-stack);
    color: var(--body-font-color);
    font-weight: 400;
    font-size: 16px;
    margin: 0 auto;
}
h1, h2, h3 {
    line-height: 1.1em;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-stack3);
}
h2 {
    font-size: 45px;
}
h3 {
    font-size: 38px;
}
p {
    font-size: 18px;
    padding: 0 0 1.35em 0;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    text-wrap: pretty;
}
img, picture, svg {
    max-width: 100%;
    display: block;
}
ul, ol {
    list-style: none;
    padding: 0;
}
.main-container {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}
caption {
    display: table-caption;
    text-align: center;
}
ul {
    list-style: none;
}
img, video {
    display: block;
    max-width: 100%;
}

/*
    ====== Reusables ======
*/
.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.col {
    width: 100%;
}
.nowrap {
    white-space: nowrap;
}
.cta {
    font: 700 24px / 1.4em var(--font-stack);
    color: var(--cta-text-color);
    background: var(--cta-bg-color);
    width: fit-content;
    height: min-content;
    min-height: 68px;
    min-width: 350px;
    padding: 20px 50px;
    border: none;
    border-radius: var(--box-border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 auto;
    text-align: center;
    text-wrap: pretty;
}
.cta:hover, .cta:focus {
    background: var(--cta-bg-color-hover);
}
.cta.light, .cta.light:hover, .cta.light:focus {
    background: #ffffff;
    color: #212121;
}
.cta-mbg { 
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 20;
    color: rgb(59, 59, 59);
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 0;
    text-align: center;
}
.click-here-sub {
    font-size: 10px;
    text-transform: uppercase;
}
.hidden {
    display: none;
}
.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-img {
    display: block;
    width: 100%;
}
.full-img-in {
    display: block;
    width: 531px;
    padding: 20px 0 0 0;
}
.full-wd-img {
    width: 100%;
    display: block;
    margin: 0 auto;
}
span.highlight {
    color: var(--text-higlight);
}
h2.section-title {
    font: 700 var(--header-font-size) / 1.1 var(--font-stack3);
    color: var(--header-font-color);
    margin-bottom: 25px;
}
.row {
    display: flex;
    justify-content: space-between;
}
.box-border {
    border: var(--box-border);
    border-radius: var(--box-border-radius);
    overflow: hidden;
}
.box-border-thin {
    border: var(--box-border-thin);
    border-radius: var(--box-border-radius);
    overflow: hidden;
}
.box-image {
    overflow: hidden;
}
.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;
}

/*
    ====== Sections ======
*/
header {
    background-color: #212121;
    height: 80px;
    position: relative;
    z-index: 10;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-logo-wrap img {
    width: 165px;
    margin: 0 auto;
}
.banner-section {
    position: relative;
}
.banner-bg {
    -webkit-user-select: none;
    user-select: none;
    mix-blend-mode: multiply;
    opacity: .23;
    pointer-events: none;
    z-index: 0;
    flex: none;
    position: absolute;
    inset: -80px 0 0 0;
    overflow: visible;
}
.banner-bg-wrap {
    position: absolute;
    border-radius: inherit;
    corner-shape: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.banner-bg-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    corner-shape: inherit;
    object-position: center;
    object-fit: cover;
}
.banner-section .row {
    display: flex;
    justify-content: flex-start;
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 25px;
}

.logo-bar {
    width: 100%;
    height: 108px;
    position: relative;
    display: flex;
    align-items: center;
}
.lifecell-logo {
    width: 160px;
    display: block;
    position: relative;
    z-index: 20;
}
.banner-content {
    flex: 1;
    margin-left: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-right: 50px;
}
.main-title {
    position: relative;
    z-index: 20;
    background: transparent;
    margin: 0 auto;
}
.main-title h1 {
    font: 700 55px / 1.2 var(--font-stack3);
    letter-spacing: -0.05em;
}
.main-title h1 > span {
    font-size: 40px;
    font-weight: 700;
    display: block;
    white-space: normal;
}
.bc-text-bottom {
    width: 100%;
}
.product-benefits {
    position: relative;
    z-index: 20;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 7px;
    height: 100%;
    position: relative;
}
.product-benefits li {
    font: 600 15px / 1.1 var(--font-stack2);
    letter-spacing: -0.03em;
    color: rgb(38, 38, 38);
    text-align: center;
    padding: 5px 10px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: #ffffffbf;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
}
.product-benefits li:nth-child(1) {
    max-width: 97px;
    top: 8px; left: -34px;
}
.product-benefits li:nth-child(2) {
    max-width: 93px;
    top: 119px; left: -10px;
}
.product-benefits li:nth-child(3) {
    max-width: 105px;
    top: 219px; left: 20px;
}
.product-benefits li:nth-child(4) {
    max-width: 172px;
    top: 204px; right: -86px;
}


.hero-box p {
    font: 500 19px / 1.3 var(--font-stack2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffffb3;
    border: 1px solid #fff;
    margin: 0 auto;
    padding: 25px;
    position: relative;
    z-index: 10;
    margin: 0 auto 20px;
    border-radius: var(--box-border-radius-sm);
    text-wrap: pretty;
}
.hero-box p span.dose {
    display: block;
    padding-top: 16px;
    text-wrap: balance;
}
.hero-media {
    width: 440px;
    height: 530px;
    padding: 20px;
    position: relative;
    border-radius: var(--box-border-radius);
    overflow: visible;
}
.hero-media-wrap {
    position: absolute;
    width: 1294px;
    height: 737px;
    top: 38%;
    left: 46%;
    transform: translate(-50%, -50%);
    -webkit-mask: linear-gradient(#000 96%, #0000 100%);
    mask: linear-gradient(#000 96%, #0000 100%);
}
.hero-media-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.hero-media video {
    width: 100%;
    height: 100%;
    min-height: 650px;
    /*border-radius: 30px;*/
    border-radius: var(--box-border-radius);
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;
}
.benefits-section {
    margin-bottom: 30px;
    position: relative;
}
.benefits-section .row {
    gap: 15px;
}
.bn_1, .bn_2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: var(--box-border-radius);
}
.bn_1 {
    background-color: #ffffff;
    padding: 35px;
}
.bn_2 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
p.bn-text-lead {
    font: italic 600 35px / 1.1 var(--font-stack3);
    color: var(--text-higlight);
    letter-spacing: -0.04em;
    padding-bottom: .75em;
}
.benefits-section h2.section-title {
    margin-bottom: 10px;
    text-wrap: unset;
}
.bn1-media-wrap {
    margin-bottom: 10px;
}
.bn1-media {
    width: 100%;
    height: 273px;
    border-radius: var(--box-border-radius-sm);
    overflow: hidden;
}
.bn2-media {
    width: 100%;
    height: 281px;
    border-radius: var(--box-border-radius);
    overflow: hidden;
}
.bn1-media img, .bn2-media img, .bn2-product-wrap img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.bn2-media-wrap {
    height: 165px;
}
.bn2-product-wrap {
    height: 508px;
}
.bn2-media-wrap img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
p.bn2-text {
    padding-bottom: 0;
}
.bn1-media-wrap video,.bn2-media-wrap video {
    border-radius: var(--box-border-radius-sm);
    overflow: hidden;
}
.ba-label {
    display: flex;
}
.ba-label > p {
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 0;
    font: 700 18px / 1.5 var(--font-stack);
    color: #3A3A3C;
}
.bn-text {
    font-size: 18px;
}
.bn2-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 24px;
}
.bn2-list li {
    font: 700 18px / 1.2 var(--font-stack);
    display: flex;
    align-items: center;
    gap: 10px;
}
.bn2-list li::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 18px;
    aspect-ratio: 1;
    background: url(//assets.lifecellskin.com/offers/images/2026/03/undereye/seal-check-a41315.svg) center / contain no-repeat;
}
.figure-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}
.fg-img-wrap {
    height: 510px;
    border-radius: var(--box-border-radius-sm);
}
.fg_2 {
    display: flex;
    gap: 10px;
}
.fg_2 > div {
    flex: 1;
    background-color: rgb(235, 244, 247);
    border-radius: var(--box-border-radius-sm);
    display: flex;
    flex-direction: column;
    padding: 25px;
}
.fg_2 > div > p {
    padding: 0;
    margin: 0;
    text-align: center;
}
.fg-percent {
    font: 700 45px / 1 var(--font-stack3);
    letter-spacing: -0.03em;
}
.fg-text {
    font-size: 16px;
}

.signs-section {
    padding-bottom: 25px;
}
.sg-list {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.sg-list li {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #ffffff;
    border-radius: var(--box-border-radius);
    padding: 25px;
}
.sg-img {
    border-radius: var(--box-border-radius-sm);
    height: 250px;
}
.sg-text-wrap h3 {
    color: rgb(69, 69, 69);
    text-align: left;
    font-size: 28px;
    margin-bottom: 15px;
}
.sg-text-wrap p {
    padding: 0;
    color: rgb(69, 69, 69);
    text-align: left;
}

.logo-set {
    max-width: 245px;
    margin: 0 auto;
}
.swiper {
    margin-bottom: 0;
}
.swiper-wrapper {
    width: fit-content;
}
.ba-list {
    margin: 0 auto 25px;
    padding: 0;
}
.level-section {
    padding-bottom: 25px;
}
.mw-title {
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 25px;
}
.mw-sub-title {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 25px;
}
.mw-lead-tx {
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}
.lv-panel {
    background-color: #ffffff;
    border-radius: var(--box-border-radius);
    padding: 25px;
}
.lv-panel h2.section-title {
    padding-top: 5px;
}
.weeks-title {
    font-weight: 700;
    font-size: 23px;
    color: var(--text-higlight);
    margin-bottom: 20px;
}
ul.weeks-list {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
ul.weeks-list li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F1DADD;
    background-color: #F4F0F1;
    padding: 15px;
    border-radius: 23px;
    gap: 12px;
}
.w-prcnt {
    font: 600 65px / 1 var(--font-stack3);
    color: var(--text-higlight);
    padding: 0;
}
.w-tx {
    font-weight: 400;
    padding: 0;
}
.ast-spin {
    display: block;
    margin: 0 auto;
    width: 20px;
    aspect-ratio: 1;
    background: url(//assets.lifecellskin.com/offers/images/2026/03/undereye/asterisk-D28991.svg) center / contain no-repeat;
    animation: starRotate 2s ease-in infinite;
    will-change: transform;
}
.woman-group {
    margin: 20px 0 40px 0;
}




.fl-section {
    padding-bottom: 25px;
}
.fl-section h2.section-title {
    padding: 30px 0 0;
    text-wrap: balance;
    margin-bottom: 10px;
}
.fl-section p {
    font: 400 23px / 1.1 var(--font-stack2);
}
.fl-section .container {
    max-width: none;
    padding: 0;
}
.ba-list li {
    /*width: 300px;*/
    width: fit-content;
    max-width: 400px;
    height: 400px;
}
.ba-list li video,
.ba-list li img {
    cursor: auto; 
    width: 100%; 
    height: 100%; 
    border-radius: 15px; 
    display: block; 
    object-fit: cover; 
    background-color: rgba(0, 0, 0, 0); 
    object-position: 50% 50%;
}
.hw-section {
    margin-bottom: 35px;
}
.hw-panel {
    background-color: #ffffff;
    border-radius: var(--box-border-radius);
    padding: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}
.hw_1 {
    flex: auto;
    max-width: 400px;
}
.hw_2 {
    flex: 1;
}
.hw-text-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.hw-text {
    font: 400 23px / 1.6 var(--font-stack);
}
.hw-text-em {
    font: 600 21px / 1.6 var(--font-stack);
    background-color: #F0E6DD;
    padding: 15px;
    border-radius: var(--box-border-radius);
    text-align: center;
    width: fit-content;
    margin: 0 auto 30px;
}
.hw-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.hw-list li {
    text-align: left;
    background-color: #F4F0F1;
    border-radius: var(--box-border-radius);
    padding: 15px;
}
.hw-list li h3 {
    text-align: left;
    font: 600 25px / 1.6 var(--font-stack);
    display: flex;
    align-items: center;
    gap: 13px;
}
.hw-list li h3::before {
    content: '';
    display: block;
    width: 20px;
    aspect-ratio: 1;
    background: url(//assets.lifecellskin.com/offers/images/2026/03/undereye/asterisk-D28991.svg) center / contain no-repeat;
}
.hw-list li p {
    text-align: left;
    font: 400 18px / 1.4 var(--font-stack);
    padding: 0;
}
.hw-media-wrap {
    height: 611px;
    border-radius: var(--box-border-radius);
    overflow: hidden;
}


.function-section {
    padding-bottom: 30px;
}
.fn-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}
.fn_1 {
    flex: 1;
}
.fn_2 {
    flex: 1;
}
.fn-text {
    font: 400 21px / 1.4 var(--font-stack2);
}
.function-section .cell-list {
    padding-left: 40px;
}
.fn-media-wrapper {
    width: 562px;
    height: 714px;
    margin: 0 0 10px 0;
    -webkit-mask: radial-gradient(50% 50%, #000 56.792%, #0000 97.065%);
    mask: radial-gradient(50% 50%, #000 56.792%, #0000 97.065%);
}

.ingr-section {
    padding-bottom: 25px;
    text-align: center;
}
ul.ingr-block-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}
.ingr-block {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: var(--box-border-radius);
    gap: 25px;
    padding: 25px;
    background-color: #ffffff;
}
.ingr-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ingr-media-wrap video,  .ingr-media-wrap img{
    cursor:auto;
    width:100%;
    height:100%;
    border-radius: var(--box-border-radius-sm);
    display:block;
    object-fit:cover;
    background-color:rgba(0, 0, 0, 0);
    object-position:50% 50%;
}
.ingr-name {
    font: 600 28px / 1.1 var(--font-stack);
    color: #1C1C1E;
    position: relative;
    text-align: left;
}
.ingr-desc {
    font: 400 18px / 1.3 var(--font-stack);
    color: #1C1C1E;
    text-align: left;
    padding: 0;
}
.ingr-model {
    overflow: hidden;
    border-radius: var(--box-border-radius);
    margin-bottom: 35px;
    height: 300px;
}
.ingr-model video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;   
}
.ingr-model img {
    display: block;
    width: 100%;
    margin: 0 auto 25px;
}
.ingr-img-wrap {
    width: 200px;
    padding-top: 10px;
}
.ingr-img-wrap>img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.ig-lead-text {
    padding-bottom: 1.2em;
    font: 400 18px / 1.4 var(--font-stack);
    max-width: 900px;
    margin: 0 auto;
}
.ingr-media-wrap {
    width: 100%;
    max-width: 288px;
    height: 202px;
}
.ingr-section h2.section-title, 
.testi-section h2.section-title {
    margin-bottom: 15px;
}

.ltr-section {
    padding-bottom: 25px;
}
.ltr-panel {
    background: #ffffff;
    border-radius: var(--box-border-radius);
    display: flex;
    gap: 35px;
    padding: 45px;
}
.ltr_1 {
    width: 400px;
}
.ltr1-model-wrap {
    height: 550px;
    border-radius: var(--box-border-radius-sm);
}
.ltr_2 {
    flex: 1;
}
.ltr_2 > p {
    font-size: 22px;
    line-height: 1.3;
}
.ltr-panel .box-image img {
    object-position: right center;
}


.testi-section {
    padding: 30px 0;
}
.testi-text {
    font: 400 13px / 1.4 var(--font-stack);
    max-width: 620px;
    margin: 0 auto;
}
.testi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.testi-list li {
    width: calc(100% / 3 - 10px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 100;
    padding: 15px;
    background-color: #ffffff;
    border-radius: var(--box-border-radius-sm);
}
.tb_1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}
.tb_2 {
    flex: auto;
}
.pr-img {
    display: block;
    width: 70px;
}
.testi-name-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    letter-spacing: -0.04em;
    color: #171717;
    gap: 8px;
}
.testi-name-wrap > span {
    display: block;
}
.username {
    font: 600 25px / 1.1 var(--font-stack2);
    color: rgb(164, 19, 21);
}
.testi-date {
    font: 400 14px / 1.1 var(--font-stack);
    display: none;
}
.comment {
    font: 400 16px / 1.4 var(--font-stack);
    padding-bottom: 0;
    text-align: left;
}
.discalimer-fb {
    font: 400 13px / 1.4 var(--font-stack);
}
.pr-img-wrap {
    width: 55px;
    height: 97px;
    border-radius: 10px;
    overflow: hidden;
}

.ba-panel {
    background: #ffffff;
    border-radius: var(--box-border-radius);
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ba-panel > div {
    display: flex;
    gap: 10px;
}
.ba-panel > div.ba-row-1 {
    margin-bottom: 10px;
}
.ba-panel > div.ba-row-3 {
    flex-direction: row-reverse;
}
.br-img-wrap {
    border-radius: var(--box-border-radius-sm);
}
.br1_1 {
    width: 381px;
    height: 100%;
}
.br2_1, .br3_1 {
    width: 250px;
}
.br2_2, .br3_2 {
    background-color: rgb(244, 240, 241);
    border-radius: var(--box-border-radius-sm);
    border: 1px solid #e5dcdd;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.br1_2, .br2_2, .br3_2 {
    flex: 1;
}
.br2_2 h3,
.br3_2 h3 {
    text-align: left;
    margin-bottom: 10px;
    font: 600 25px / 1.6 var(--font-stack);
    display: flex;
    align-items: center;
    gap: 13px;  
}
.br2_2 h3::before, .br3_2 h3::before {
    content: '';
    display: block;
    width: 20px;
    aspect-ratio: 1;
    background: url(//assets.lifecellskin.com/offers/images/2026/03/undereye/asterisk-a41315.svg) center / contain no-repeat;
    animation: starRotate 2s ease-in infinite;
    will-change: transform;
}
.br1_2 p {
    line-height: 1.3;
    padding: 0;
}
.br2_2 p,
.br3_2 p {
    text-align: left;
    padding: 0;
    font-size: 21px;
}
.br1_1 .br-img-wrap {
    height: 235px;
}
.br2_1 .br-img-wrap {
    height: 208px;
}
.br3_1 .br-img-wrap {
    height: 238px;
}
.br1_2 h3 {
    font-size: 35px;
    max-width: 630px;
    margin: 0 auto 10px;
}


.gallery-section {
    padding-bottom: 30px;
}
.pic-list {
    min-height: 578px;
    position: relative;
}
.pic-list li {
    width: 180px;
    height: 240px;
    position: absolute;
}
.pic-list li img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.pic-list li:nth-child(1) { top: 0;     left: 73px;     z-index: 1;  }
.pic-list li:nth-child(2) { top: 53px;  right: 72px;     z-index: 2;  }
.pic-list li:nth-child(3) { top: 281px; right: -50px;   z-index: 10; }
.pic-list li:nth-child(4) { bottom: 0;  left: 196px;    z-index: 5;  }
.pic-list li:nth-child(5) { top: 274px; left: 0;  z-index: 4;  }

.wh-section {
    padding-bottom: 30px;
}
.wh-section h2.section-title {
    text-wrap: balance;
    margin-bottom: 40px;
}
.wh-text {
    font: 400 21px / 1.4 var(--font-stack2);
    padding: 0 5%;
}
.wh-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}
.wh-inner .cell-list {
    margin-bottom: 50px;
}
.wh_1 {
    width: 523px;
}
.wh_2 {
    flex: 1;
    padding-top: 55px;
}



.bt-section {
    margin-bottom: 35px;
}
.bt-section h2.section-title {
    font-size: 55px;
    margin-bottom: 0;
}
.bt-section h2.section-title > span {
    font-size: 65px;
    font-weight: 700;
}
.bt-panel {
    background: #ffffff url(//assets.lifecellskin.com/offers/images/2026/03/undereye/eu-bt-bg.webp) center / cover no-repeat;
    border-radius: var(--box-border-radius);
    padding: 72px 13px 72px 13px;
    border: 6px solid #ffffff;
    min-height: 935px;
    display: flex;
    align-items: center;
    position: relative;
}
.bt-inner {
    max-width: 615px;
    margin: 0 0 0 415px;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #ffffff80;
    border-radius: var(--box-border-radius);
    padding: 75px 25px;
}
.bt-text {
    font: 500 27px / 1.2 var(--font-stack);
    padding-bottom: 0;
    margin: 0 auto 30px;
}
.bt-logo-wrap img {
    max-width: 240px;
    margin: 0 auto;
}
.bt-list {
    width: auto;
    margin: 0 auto;
}
.bt-list li {
    text-align: center;
    font: 500 23px / 1.4 var(--font-stack);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}
.bt-list li::before {
    content: '';
    display: block;
    width: 16px;
    aspect-ratio: 1;
    background: url(//assets.lifecellskin.com/offers/images/2026/03/undereye/star-a41315.svg) center / contain no-repeat;
}

.footer {
    color: #3A3A3C;
    background-color: #FFFFFF;
    padding-bottom: 40px;
}
.footer-wrap {
    padding: 45px 30px;
}
.footer-links2>div {
    padding: 30px 0;
    position: relative;
}
div.fl-4 {
    padding-bottom: 40px;
}
.footer-links {
    text-align: center;
    font: 16px var(--font-stack2);
    padding-top: 70px;
    padding-top: 20px;
    width: 110%;
    margin-left: -5%;
}
.footer-links a, .copyright {
    font: 400 14px/1.5em var(--font-stack2);
    color: #3A3A3C;
}
.footer-links a {
    text-decoration: none;
    border-bottom: 1px solid #D0D3D6;
    padding-bottom: 2px;
    transition-duration: 350ms;
    display: inline-block;
    margin-bottom: 20px;
}
.copyright {
    padding-top: 5px;
    text-align: center;
}
.ss-logo-secure {
    display: block;
    width: 400px;
    margin: 0 auto;
}
div.fl-4 {
    padding-bottom: 40px;
}
.fl-4 a {
    display: inline-block;
    margin: 0 35px;
}
.fl-4 a img {
    max-height: 50px;
}
.footer-links .divider {
    padding: 0 5px;
    color: #3A3A3C;
    display: inline-block;
}
.disclaimer {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 6%;
}
.disclaimer .fda, .disclaimer .disclaimer-bottom {  
    font: 400 12px / 1.4 var(--font-stack);
}
.disclaimer-bottom > .dc1 {
    font-size: 15px;
}
.logo-bottom-wrapper {
    display: block;
    text-align: center;
}
.logo-bottom-wrapper img {
    padding: 0 20px;
    box-sizing: content-box;
    margin-bottom: 10px;
}
.mcafee {
    width: 200px;
    padding-left: 0!important;
    padding-right: 10px!important;
}
.ssi {
    width: 155px;
}
.hw-list li h3::before {
    animation: starRotate 2s ease-in infinite;
    will-change: transform;
}
.bt-list li::before {
    animation: starRotateBack 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes scaleAndRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(13deg) scale(1.3);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}
@keyframes scaleImg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes starRotateBack {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.15);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}



@media screen and (max-width: 1100px) {
    :root {
        --header-font-size: 30px;
    }
    .container {
        max-width: 820px;
    }
    p {
        font-size: 16px;
    }
    .bn_2 p {
        font-size: 15px;
    }
    .product-benefits {
        gap: 6px;
    }
    .product-benefits li {
        font-size: 15px;
    }
    .product-benefits li::before {
        width: 10px;
    }
    .main-title h1 > span {
        white-space: unset;
    }
    .hero-box p { 
        font-size: 16px;
        padding: 20px;
    }
    .hero-media {
        width: 360px;
        height: 440px;
    }
    .hero-image {
        right: -207px;
    }
    p.bn-text-lead {
        font-size: 30px;
    }
    .bn-panel {
        background-position-x: -104px;
    }
    .bn2-list {
        padding: 12px 0 12px 0;
    }
    .bn2-list li {
        font-size: 16px;
    }
    .bn-text {
        font-size: 16px;
    }
    .bn-inner {
        max-width: 510px;
    }
    .cell-list {
        gap: 12px;
    }
    .cell-list li {
        font-size: 19px;
    }
    .cell-list li::before {
        width: 22px;
    }
    .hw-panel {
        padding: 40px;
        gap: 30px;
    }
    .hw-list li {
        font-size: 18px;
    }
    .hw-text1 {
        font-size: 19px;
    }
    .hw-text2 {
        font-size: 26px;
    }
    .ingr-name {
        font-size: 28px;
    }
    .ingr-block {
        width: 100%;
    }
    .fn-inner {
        flex-direction: column;
        gap: 0;
    }
    .fn-text {
        max-width: 600px;
        margin: 0 auto;
    }
    .wh-inner {
        flex-direction: column;
        gap: 0;
    }
    .bt-panel {
        min-height: 500px;
    }
    .bt-section h2.section-title {
        font-size: 44px;
    }
    .bt-text {
        font-size: 23px;
    }
    .bt-img-wrapper {
        width: 730px;
        height: 95%;
        top: unset;
        left: -130px;
    }
    .bt-img-wrapper img {
        min-height: 500px;
    }
    .testi-list li {
        width: calc(50% - 5px);
    }
    .main-title {
        margin-bottom: 0;
    }
    .main-title h1 {
        font-size: 35px;
        line-height: 1.2;
    }
    .main-title h1 > span {
        font-size: inherit;
        text-wrap: balance;
    }
    .bn1-media {
        height: 157px;
    }
    .bn2-media-wrap {
        height: 140px;
    }
    .ig-lead-text {
        font-size: 20px;
    }
    .ingr-desc {
        font-size: 17px;
    }
    .w-tx {
        font-size: 18px;
    }
    .hw-list li p {
        font-size: 17px;
    }
    .hw-list li h3 {
        font-size: 23px;
    }
    .bt-list li {
        font-size: 21px;
    }
    .banner-content {
        padding-right: 0;
        padding-left: 10px;
    }
    .hero-media-wrap {
        width: 1098px;
        height: 625px;
    }
    .product-benefits li:nth-child(2) {
        top: 98px;
        left: -14px;
    }
    .product-benefits li:nth-child(4) {
        top: 189px;
        right: -48px;
    }
    .ba-label > p {
        font-size: 16px;
    }
    .sg-list {
        flex-direction: column;
    }
    .sg-list li {
        flex-direction: row;
    }
    .sg-img {
        width: 358px;
    }
    .sg-text-wrap {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sg-text-wrap h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .sg-text-wrap p {
        line-height: 1.25;
    }
    .fg-img-wrap {
        height: 300px;
    }
    .fg-percent {
        font-size: 30px;
    }
    .fg-text {
        font-size: 14px;
    }
    .bn2-product-wrap {
        height: 333px;
    }
    .signs-section .section-title,
    .ltr-section .section-title,
    .ingr-section h2.section-title,
    .testi-section h2.section-title {
        font-size: 35px;
    }
    .ltr-panel {
        padding: 35px;
    }
    .ltr_2 > p {
        font-size: 17px;
    }
    .ltr_1 {
        width: 315px;
    }
    .ingr-media-wrap {
        max-width: 183px;
        height: 202px;
    }
    .ingr-desc {
        font-size: 15px;
    }
    .ingr-block {
        padding: 20px;
        gap: 20px;
    }
    .ba-panel {
        padding: 25px;
    }
    .br1_1 {
        width: 330px;
    }
    .br1_1 .br-img-wrap {
        height: 257px;
    }
    .br1_2 h3 {
        font-size: 25px;
    }
    .br1_2 p {
        font-size: 15px;
    }
    .br2_1, .br3_1 {
        width: 230px;
    }
    .br2_2, .br3_2 {
        padding: 25px;
    }
    .br2_2 p, .br3_2 p {
        font-size: 15px;
    }
    .bt-inner {
        max-width: 470px;
        margin-left: 240px;
        padding: 25px;
    }
    .bt-section h2.section-title {
        font-size: 40px;
    }
    .bt-list li {
        font-size: 20px;
    }
    .product-benefits li:nth-child(1) { top: 19px; left: -58px; }
    .product-benefits li:nth-child(2) { top: 114px; left: -46px; }
    .product-benefits li:nth-child(3) { top: 215px; left: -14px; }
    .product-benefits li:nth-child(4) { top: 160px; right: -42px; left: unset; }

    .testi-list { 
        justify-content: center;
    }
    .testi-list li {
        width: calc(50% - 10px);
    }
}
@media screen and (max-width: 820px) {
    .container {
        max-width: 520px;
    }
    h2.section-title {
        font-size: 33px;
    }
    .main-title {
        margin-bottom: 365px;
    }
    .hero-image {
        right: unset;
        left: -46px;
        top: 40px;
        width: 600px;
    }
    .hero-image img {
        min-height: 500px;
    }
    .banner-content {
        margin: 0 auto;
    }
    .hw-inner {
        width: 100%;
    }
    
    .cell-list li {
        font-size: 16px;
        text-wrap: pretty;
    }
    .hw-list {
        max-width: 350px;
        margin: 0 auto 25px;
    }
    .hw-list li {
        text-wrap: pretty;
    }
    .hw-section h3 {
        font-size: 30px;
    }
    .hw-text2 {
        font-size: 23px;
    }
    .function-section .cell-list {
        padding-left: 0;
    }
    .fn-media-wrapper {
        width: 501px;
        height: 557px;
    }
    .pic-list {
        min-height: 547px;
    }
    .pic-list li:nth-child(2) {
        right: 96px;
    }
    .pic-list li:nth-child(4) {
        left: 175px;
    }
    .pic-list li:nth-child(3) {
        right: 0;
    }
    .pic-list li:nth-child(5) {
        top: 252px;
    }
    .bt-inner {
        width: 100%;
    }
    .wh-section h2.section-title {
        font-size: 36px;
        padding-top: 25px;
    }
    .bt-section h2.section-title {
        padding-top: 0;
        font-size: 36px;
    }
    .bt-section h2.section-title span.highlight {
        color: #6B442C;
    }
    .bt-img-wrapper {
        width: 600px;
        height: 59%;
        left: -64px;
    }
    .banner-section .row {
        display: flex;
        flex-direction: column;
    }
    .banner-content {
        padding: 0;
        max-width: none;
    }
    .benefits-section .row {
        flex-direction: column;
    }
    .bn_2 {
        max-width: none;
    }
    .hw-text, .hw-text-em {
        font-size: 20px;
    }
    .hw-list {
        max-width: none;
    }
    .hw-list li {
        flex-direction: column;
    }
    .hw-list li p {
        text-align: left;
    }
    .hw-img {
        max-width: none;
    }
    .hw-list li:nth-child(1) .hw-img img { max-width: calc(58px + (58px*.5)); }
    .hw-list li:nth-child(2) .hw-img img { max-width: calc(52px + (52px*.5)); }
    .hw-list li:nth-child(3) .hw-img img { max-width: calc(48px + (48px*.5)); }

    .hw-panel {
        padding: 30px;
        flex-direction: column;
    }
    .hw_1 {
        max-width: none;
    }
    .main-title.mobile {
        display: block!important;
        margin-bottom: 0;
        padding: 15px;
    }
    .main-title.desktop {
        display: none;
    }
    .banner-section .row {
        padding-top: 0;
    }
    h2.section-title {
        font-size: 33px;
    }
    .main-title h1 {
        font-size: 33px;
        min-height: 0;
        max-width: 470px;
        margin: 0 auto;
    }
    .hero-box p {
        max-width: 400px;
    }
    .bt-panel {
        background: #ffffff url(//assets.lifecellskin.com/offers/images/2026/03/undereye/eu-bt-bg_m.jpg) bottom center / cover no-repeat;
        align-items: flex-start;
        min-height: 1136px;
        padding: 15px;
    }
    ul.ingr-block-list {
        flex-direction: column;
    }
    .bt-section h2.section-title {
        font-size: 34px;
    }
    .bt-section h2.section-title > span {
        font-size: 50px;
    }
    .bt-inner {
        margin-left: 0;
        gap: 30px;
    }
    .bn2-list li {
        font-weight: 500;
        font-size: 23px;
    }
    .main-title h1 > span {
        font-size: 38px;
    }
    p.bn-text-lead {
        font-size: 28px;
    }
    .ingr-block {
        flex-direction: column;
    }
    .ingr-media-wrap {
        max-width: none;
    }
    ul.weeks-list {
        flex-direction: column;
    }
    ul.weeks-list li {
        margin-bottom: 0;
    }
    .ba-list li {
        max-width: 370px;
    }
    .benefits-section h2.section-title {
        text-wrap: pretty;
    }
    .bn_1 {
        padding: 25px;
    }
    .hero-media {
        width: 430px;
        height: 310px;
        margin: 0 auto;
    }
    .hero-media-wrap {
        width: 950px;
        height: 590px;
        top: 43%;
        left: 51%;
    }
    .main-title h1 {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background-color: #ffffffbf;
        border-radius: 10px;
        font-size: 36px;
        line-height: 1.1;
        max-width: 450px;
        padding: 5px 10px;
    }
    .main-title h1 > span.sm-title {
        font-size: 27px;
    }
    .product-benefits li:nth-child(1) { top: 7px; left: -37px; }
    .product-benefits li:nth-child(2) { top: 83px; left: -17px; }
    .product-benefits li:nth-child(3) { top: 153px; left: 2px; }
    .product-benefits li:nth-child(4) { top: 130px; right: -42px; }
    
    .fg-percent {
        font-size: 35px;
    }
    .fg_2 > div {
        padding: 15px;
    }
    .bn2-media-wrap {
        height: 165px;
    }
    .bn2-product-wrap {
        height: 508px;
    }
    .bn2-list {
        padding-left: 24px;
    }
    .bn2-list li {
        font-size: 21px;
        font-weight: 600;
    }
    .bn_2 p,
    p {
        font-size: 16px;
    }
    .sg-list li {
        flex-direction: column;
    }
    .sg-img {
        width: 100%;
        min-height: 270px;
    }
    .ltr-panel {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    .ltr_1 {
        width: 100%;
    }
    .ig-lead-text {
        font-size: 17px;
    }
    .ba-panel > div {
        flex-direction: column;
    }
    .br1_1,.br2_1, .br3_1 {
        width: 100%;
    }
    .ba-panel > div.ba-row-3 {
        flex-direction: column;
    }
    .br1_2 h3 {
        font-size: 30px;
    }
    .br2_1 .br-img-wrap {
        height: 300px;
    }
    .br2_2 h3, .br3_2 h3 {
        justify-content: center;
    }
    .br2_2 p, .br3_2 p {
        text-align: center;
    }
    .testi-list {
        flex-direction: column;
    }
    .testi-list li {
        width: 100%;
    }
    .username {
        margin-bottom: 10px;
    }
    .pr-img-wrap {
        height: 75px;
    }
    .bt-list li {
        line-height: 1.6;
    }
}
@media screen and (max-width: 520px) {
    .fl-section p {
        font-size: 20px;
    }
    .hw-section h3 {
        font-size: 27px;
    }
    .hw-text1 {
        font-size: 18px;
    }
    .hw-text2 {
        font-size: 21px;
    }
    .cell-list {
        max-width: 330px;
    }
    .ingr-name {
        font-size: 26px;
    }
    .ingr-desc {
        font-size: 16px;
    }
    .fn-text {
        font-size: 19px;
    }
    .testi-list {
        margin-bottom: 10px;
    }
    .discalimer-fb {
        font-size: 18px;
    }
    .ss-logo-secure {
        width: 350px;
    }
    .bt-list li {
        font-size: 18px;
    }
    .bt-section h2.section-title {
        font-size: 32px;
    }
}



