@font-face {
    font-family: "Nunito";
    src: url("Nunito/static/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("Nunito/static/Nunito-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("Nunito/static/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("Nunito/static/Nunito-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #00b7e6;
    --blue-dark: #009bc2;
    --navy: #1b3762;
    --bg: #eff5fe;
    --bg-2: #e4eefb;
    --pink: #ff8fb3;
    --yellow: #fceb8c;
    --violet: #d9c4ff;
    --sky: #cfe3ff;
    --muted: #91a7c4;
    --dark: #0b1730;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 6px 24px rgba(20, 50, 90, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

html,
body {
    font-family: "Nunito", "Helvetica Neue", Arial, sans-serif;
    color: var(--navy);
    background: #fff;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: 0;
    cursor: pointer;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 20px;
}

/* ---------- HEADER ---------- */
.header {
    width: 100%;
    position: fixed;
    top: 5px;
    left: 0;
    z-index: 99999999;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 51;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__inner {
    padding: 16px 16px 16px 42px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    border-radius: 46px;
    margin-top: 0px !important;
}

.header__inner .nav {
    justify-self: start;
}

.header__inner .logo {
    justify-self: center;
    margin: 0;
}

.header__inner > .btn {
    justify-self: end;
    background: #ddebff;
    color: #1b3762;
    border-radius: 999px;
    width: 260px;
    height: 62px;
    padding: 0 32px;
    gap: 20px;
    font-weight: 700;
    font-size: 22px;
    box-shadow: none;
}

.header__inner > .btn:hover {
    background: #c9ddf8;
}

.header__inner > .btn.btn--cart::before {
    background: url("assets/basket.png") no-repeat center/contain;
    width: 28px;
    height: 28px;
}

.notice {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 9999999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1200px) {
    .notice {
        top: 75px;
        margin-left: 70px;
        margin-right: 70px;
        z-index: 9999999;
    }
}

.notice.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.notice__inner {
    background: #fff;
    border-radius: 10px 10px 20px 20px;
    height: 32px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    max-width: 770px;
    margin: 0 auto;
}

.notice__center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.notice__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.notice__text {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #1b3762;
}

.notice__btn {
    background: #dde9fb;
    color: #1b3762;
    padding: 4px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.2s;
}

    .notice__btn:hover {
        background: #c9ddf8;
    }

.notice__close {
    width: 22px;
    height: 22px;
    padding: 0;
    background: transparent;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

    .notice__close img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .notice__close:hover {
        background: rgba(27, 55, 98, 0.08);
    }

.nav {
    display: flex;
    gap: 24px;
    font-weight: 600;
    font-size: 20px;
}

    .nav a:hover {
        color: var(--blue);
    }

.logo {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 56px;
        width: auto;
        display: block;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: #00b4ff;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    height: 68px;
    gap: 20px;
    border-radius: 22px;
    box-shadow: 0 6px 18px rgba(0, 183, 230, 0.35);
}

    .btn--primary:hover {
        background: var(--blue-dark);
    }

.btn--cart::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.21 9l-4.38-6.56a1 1 0 00-1.66 0L6.79 9H2a1 1 0 00-1 1c0 .09.01.18.04.27l2.54 9.27A2 2 0 005.5 21h13c.91 0 1.69-.62 1.93-1.46l2.54-9.27L23 10a1 1 0 00-1-1h-4.79zM12 4.6L14.93 9H9.07L12 4.6z'/></svg>") no-repeat center/contain;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: #bbd7ff;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    height: 766px;
}

.hero__bg {
    position: absolute;
    left: -20px;
    bottom: 0;
    z-index: 0;
    height: 560px;
    width: auto;
}

.hero .container {
    height: 100%;
}

.hero__inner {
    padding-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    height: 100%;
    justify-content: end;
}

.hero__left {
    padding-bottom: 152px;
    padding-left: 20px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    z-index: 1;
}

.hero__title {
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    color: #fff;
}

.hero__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: #1b3762;
    max-width: 432px;
    margin-bottom: 48px;
}

.hero .btn {
    color: #000;
    background: #fff;
    border-radius: 999px;
    height: 62px;
    padding: 0 32px;
    gap: 20px;
    font-weight: 700;
    font-size: 22px;
    box-shadow: none;
}

    .hero .btn:hover {
        background: #ddebff;
    }

    .hero .btn.btn--cart::before {
        background: url("assets/basket_black.png") no-repeat center/contain;
        width: 22px;
        height: 22px;
    }

.hero__img {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

    .hero__img img {
        margin-top: auto;
        width: 100%;
        height: auto;
        display: block;
    }

/* ---------- SECTION COMMON ---------- */
.section {
    padding: 72px 0;
}

.section__title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.section__subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 20px;
    line-height: 140%;
    max-width: 380px;
    margin: 0 auto 48px;
}

.title-underline {
    position: relative;
    display: inline-block;
}

    .title-underline::after {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        bottom: -14px;
        height: 18px;
        background: url("assets/title-line.png") no-repeat center/100% 100%;
    }

/* ---------- CATALOG ---------- */
.catalog {
    background: #f6f9fe;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog__swiper {
    width: 100%;
    overflow: hidden;
}

    .catalog__swiper .swiper-slide {
        height: auto;
        display: flex;
    }

    .catalog__swiper .card {
        width: 100%;
    }

.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.card__img {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #e4eefb, #cfe3ff);
}

.card__body {
    padding: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
    padding: 8px 0 18px 24px;
}

.card__props {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px;
    margin-bottom: 18px;
}

    .card__props li {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 18px;
        font-weight: 600;
    }

    .card__props .ico {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        margin-right: 8px;
        object-fit: contain;
    }

    .card__props span.label {
        color: var(--muted);
    }

.card__price {
    padding: 0 24px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--pink);
    margin: auto 0 32px;
}

.card .btn {
    width: 100%;
}

    .card .btn.btn--cart::before {
        background: url("assets/basket_white.png") no-repeat center/contain;
        width: 22px;
        height: 22px;
    }

.catalog__nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    height: 72px;
}

    .catalog__nav .swiper-button-prev,
    .catalog__nav .swiper-button-next {
        position: static;
        margin: 0;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #dde6f2;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

        .catalog__nav .swiper-button-prev::after,
        .catalog__nav .swiper-button-next::after {
            font-size: 22px;
            font-weight: 700;
            color: #a8bfd9;
        }

    .catalog__nav .swiper-button-next {
        background: #a8bfd9;
        border-color: #a8bfd9;
    }

        .catalog__nav .swiper-button-next::after {
            color: #fff;
        }

    .catalog__nav .swiper-button-prev:hover {
        border-color: #a8bfd9;
    }

    .catalog__nav .swiper-button-next:hover {
        background: #94afcf;
        border-color: #94afcf;
    }

/* ---------- FEATURES ---------- */

.features__grid {
    display: grid;
    grid-template-columns: 1fr 444px;
    grid-template-rows: 380px 380px;
    gap: 20px;
    justify-content: center;
}

.feat--anatomy {
    grid-column: 1 / -1;
    grid-row: 1;
}

.feat--gift {
    grid-column: 1;
    grid-row: 2;
}

.feat--safe {
    grid-column: 2;
    grid-row: 2;
}

.feat {
    border-radius: var(--radius);
    padding: 64px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feat--anatomy {
    background: #f2f7ff;
}

.feat--gift {
    padding: 48px 48px 64px;
    background: #ffe793;
}

.feat--safe {
    background: #d3c6f0;
    padding: 48px 48px 64px;
}

.feat__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 86%;
}

.feat--anatomy .feat__title {
    color: #00b4ff;
}

.feat--gift .feat__title {
    color: #3f2700;
}

.feat--safe .feat__title {
    color: #473872;
}

.feat__text {
    color: #000;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.02em;
    max-width: 280px;
}

.feat--anatomy .feat__text {
    max-width: 510px;
}

.feat--gift .feat__text,
.feat--safe .feat__text {
    max-width: 360px;
}

.feat__photo {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 55%;
    max-width: 320px;
    height: auto;
    pointer-events: none;
}

.feat--anatomy,
.feat--gift {
    overflow: visible;
}

.feat__photo--anatomy {
    right: 0;
    top: -48px;
    bottom: auto;
    height: calc(100% + 48px);
    width: auto;
    max-width: none;
    border-radius: 0 0 var(--radius) 0;
}

.feat__photo--gift {
    right: 28px;
    top: -20px;
    bottom: auto;
    height: calc(100% + 20px);
    width: auto;
    max-width: none;
}

.feat__photo--safe {
    right: 0;
    bottom: 0;
    top: auto;
    width: 360px;
    max-width: 360px;
    height: auto;
    z-index: 0;
}

.feat--safe .feat__title,
.feat--safe .feat__text {
    position: relative;
    z-index: 1;
}

.feat__deco-z {
    position: absolute;
    top: 24px;
    right: 30%;
    width: 60px;
    height: auto;
    pointer-events: none;
}

/* ---------- SCHEME ---------- */
.scheme {
    background: #f6f9fe;
}

.scheme__block {
    margin-bottom: 64px;
}

    .scheme__block:last-child {
        margin-bottom: 0;
    }

.scheme__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 48px;
}

.scheme__title--ours {
    color: #00b4ff;
}

.scheme__grid {
    display: grid;
    grid-template-columns: 160px auto 160px auto 160px auto 160px;
    align-items: start;
    column-gap: 32px;
    row-gap: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.scheme__grid--regular {
    position: relative;
    row-gap: 50px;
}

.scheme__grid--ours {
    margin-top: 16px;
}

.scheme__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.scheme__icon {
    width: 160px;
    height: 160px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.scheme__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.scheme__arrow {
    color: #9479d2;
    align-self: start;
    justify-self: center;
    margin-top: 70px;
    user-select: none;
    display: flex;
    align-items: center;
}

    .scheme__arrow svg {
        display: block;
        width: 32px;
        height: 24px;
    }

.scheme__curve {
    position: absolute;
    top: 232px;
    left: 0;
    width: 100%;
    height: 122px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.scheme__grid--regular > *:nth-child(9) {
    grid-column: 3;
    grid-row: 2;
    position: relative;
    z-index: 1;
}

.scheme__grid--regular > *:nth-child(10) {
    grid-column: 4;
    grid-row: 2;
    margin-top: 70px;
}

.scheme__grid--regular > *:nth-child(11) {
    grid-column: 5;
    grid-row: 2;
    position: relative;
    z-index: 1;
}

/* ---------- REVIEWS ---------- */
.reviews {
    background: #fff;
    position: relative;
}

    .reviews .container {
        position: relative;
    }

    .reviews .section__title {
        font-size: 40px;
        line-height: 90%;
        margin-bottom: 64px;
    }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review {
    background: #f6f9fe;
    border-radius: 18px;
    padding: 32px 40px;
}

.review__head {
    display: flex;
    align-items: end;
    gap: 16px;
    margin: -52px 0 42px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(180deg, #caddef 0%, #79bbf9 100%);
    border: 6px solid white;
}

.review__name {
    color: #000;
    font-weight: 600;
    font-size: 26px;
    line-height: 1;
}

.review__stars {
    margin-left: auto;
    display: flex;
    align-items: center;
    align-self: end;
    gap: 6px;
    line-height: 0;
}

    .review__stars svg {
        width: 28px;
        height: 26px;
        display: block;
        flex-shrink: 0;
        overflow: visible;
        fill: #9479d2;
    }

.review__text {
    font-size: 26px;
    color: #3d3737;
    line-height: 130%;
}

.reviews__deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.review--first,
.review--second {
    position: relative;
}

.reviews__deco--thanks {
    top: 105%;
    left: -20px;
    transform: translate(-75%, -50%) rotate(-6deg);
    width: 220px;
    height: auto;
}

.reviews__deco--mail {
    top: 90%;
    right: 0;
    transform: translate(75%, -50%);
    width: 220px;
    height: auto;
}

.reviews__deco--star-blue {
    bottom: -20%;
    left: 45%;
    width: 180px;
    rotate: 15deg;
    height: auto;
}

.reviews__deco--star-gold {
    top: 40px;
    right: 6%;
    width: 70px;
    height: auto;
}

.reviews__deco--star-gold-2 {
    top: 103%;
    left: -1%;
    width: 40px;
    height: auto;
}

/* ---------- FAQ ---------- */
.faq {
    background: #fff;
    padding-top: 140px;
}

.faq__grid {
    padding-inline: 30px;
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 32px;
    align-items: start;
}

.faq .section__title {
    margin-bottom: 80px;
    font-size: 40px;
    line-height: 90%;
}

.faq__img {
    border-radius: 32px;
    background: linear-gradient(180deg, #cda9de 0%, #f5dfff 100%);
    position: relative;
    width: 460px;
    height: 460px;
}

    .faq__img img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 508px;
        width: auto;
        display: block;
        border-radius: 32px;
    }

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    background: #f4f8fe;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s;
}

    .faq__item:hover {
        background: #e8f1fe;
    }

.faq__head {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 48px;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font: inherit;
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

    .faq__answer > p {
        overflow: hidden;
        padding: 0 22px 0 120px;
        font-size: 18px;
        line-height: 140%;
        color: #4a5c78;
    }

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

    .faq__item.is-open .faq__answer > p {
        padding-bottom: 20px;
    }

.faq__item.is-open .faq__plus {
    transform: rotate(45deg);
}

.faq__plus {
    transition: transform 0.2s ease;
}

.faq__q-ico {
    width: 50px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.faq__q-text {
    font-weight: 600;
    font-size: 26px;
    flex: 1;
}

.faq__plus {
    width: 36px;
    height: 36px;
    color: #64b2fd;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
}

/* ---------- CONTACT ---------- */
.contact {
    padding-top: 0;
}

.contact__grid {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 594px;
}

.contact__mascot {
    position: absolute;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
    width: 534px;
    height: 520px;
    object-fit: contain;
    z-index: 2;
}

.contact__card {
    position: relative;
    width: 1057px;
    height: 624px;
    padding: 36px 40px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 100px;
    z-index: 11111;
}

.contact__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    z-index: 0;
}

.contact__inner {
    position: relative;
    z-index: 1;
    padding-top: 92px;
    padding-left: 8%;
}

.contact__card h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact__card p {
    color: #d176ef;
    font-size: 26px;
    margin-bottom: 40px;
}

.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #d176ef;
    font-weight: 600;
}

.contact__list .ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* ---------- SUBSCRIBE ---------- */
.subscribe__wrapper {
    background: linear-gradient(180deg, #02212b 0%, #043e52 100%);
    color: #fff;
    padding: 40px 64px 40px 96px;
    border-radius: 32px;
    margin: 0 30px;
    margin-bottom: 100px;
}

.subscribe__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
}

.subscribe__icon {
    width: 280px;
    height: auto;
    object-fit: contain;
    rotate: -10deg;
}

.subscribe__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.subscribe__text {
    color: #a8b5c9;
    font-size: 26px;
    line-height: 100%;
    margin-bottom: 46px;
    text-align: center;
}

.subscribe__form {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}

    .subscribe__form input {
        flex: 1;
        max-width: 300px;
        height: 64px;
        padding: 0 28px;
        border-radius: 16px;
        border: 0;
        background: #fff;
        font-size: 26px;
        outline: none;
    }

    .subscribe__form .btn {
        background: #b97ad8;
        height: 64px;
        padding: 0 40px;
        border-radius: 16px;
        font-size: 26px;
        box-shadow: none;
        width: 300px;
    }

        .subscribe__form .btn:hover {
            background: #a868c7;
        }

.subscribe__checks {
    display: flex;
    gap: 32px;
    font-size: 16px;
    color: #a8b5c9;
    justify-content: center;
}

    .subscribe__checks input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 1.5px solid #6b7a96;
        border-radius: 4px;
        background: transparent;
        cursor: pointer;
        display: inline-grid;
        place-content: center;
        transition: 0.15s;
        margin: 0;
        flex-shrink: 0;
    }

        .subscribe__checks input[type="checkbox"]::before {
            content: "";
            width: 10px;
            height: 10px;
            transform: scale(0);
            transition: 0.15s transform ease-in-out;
            background: #b97ad8;
            border-radius: 2px;
        }

        .subscribe__checks input[type="checkbox"]:checked {
            border-color: #b97ad8;
        }

            .subscribe__checks input[type="checkbox"]:checked::before {
                transform: scale(1);
            }

        .subscribe__checks input[type="checkbox"]:hover {
            border-color: #a8b5c9;
        }

    .subscribe__checks label {
        cursor: pointer;
        line-height: 1.4;
    }

    .subscribe__checks input[type="checkbox"] {
        vertical-align: middle;
        margin-right: 8px;
    }

    .subscribe__checks a {
        color: #fff;
        text-decoration: underline;
    }

/* ---------- FOOTER ---------- */
.footer-label {
    margin: 64px auto 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Общие стили соц-иконок */
.footer__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #eef3fb;
    color: var(--navy);
    transition: 0.2s;
}

    .footer__social:hover {
        background: var(--blue);
        color: #fff;
    }

    .footer__social svg {
        width: 20px;
        height: 20px;
        display: block;
    }

.footer__socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* ===== Вариант 1: Колонки ===== */
.footer--columns {
    background: #f6f9fe;
    padding: 56px 0 24px;
    color: var(--navy);
}

    .footer--columns .footer__top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
        gap: 48px;
        padding-bottom: 40px;
    }

    .footer--columns .footer__col--brand {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer--columns .footer__tagline {
        font-size: 16px;
        color: var(--muted);
        max-width: 260px;
        line-height: 1.4;
    }

    .footer--columns .footer__title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 18px;
        color: var(--navy);
    }

    .footer--columns .footer__list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .footer--columns .footer__list a {
            color: var(--muted);
            font-weight: 600;
            font-size: 16px;
            transition: 0.2s;
        }

            .footer--columns .footer__list a:hover {
                color: var(--blue);
            }

    .footer--columns .footer__bottom {
        border-top: 1px solid #e1e8f3;
        padding-top: 24px;
        font-size: 13px;
        color: var(--muted);
        text-align: center;
    }

/* ===== Вариант 2: Минимал по центру ===== */
.footer--center {
    background: #fff;
    padding: 56px 0 32px;
    text-align: center;
}

    .footer--center .footer__logo {
        display: inline-flex;
        margin-bottom: 28px;
    }

    .footer--center .footer__nav {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }

        .footer--center .footer__nav a {
            color: var(--navy);
            font-weight: 600;
            font-size: 18px;
            transition: 0.2s;
        }

            .footer--center .footer__nav a:hover {
                color: var(--blue);
            }

    .footer--center .footer__socials {
        justify-content: center;
        margin-bottom: 32px;
    }

    .footer--center .footer__legal {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
        font-size: 14px;
        color: var(--muted);
    }

        .footer--center .footer__legal a {
            color: var(--muted);
            transition: 0.2s;
        }

            .footer--center .footer__legal a:hover {
                color: var(--blue);
            }

    .footer--center .footer__dot {
        color: var(--muted);
    }

    .footer--center .footer__bottom {
        font-size: 13px;
        color: var(--muted);
        padding-top: 16px;
        border-top: 1px solid #eef2f8;
    }

/* ===== Вариант 3: Тёмный ===== */
.footer--dark {
    padding: 32px 0 48px;
    background: transparent;
}

    .footer--dark .footer__wrapper {
        background: linear-gradient(180deg, #02212b 0%, #043e52 100%);
        color: #fff;
        padding: 48px 64px;
        border-radius: 32px;
        margin: 0 30px;
    }

    .footer--dark .footer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer--dark .footer__logo--light {
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    .footer--dark .footer__social {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

        .footer--dark .footer__social:hover {
            background: var(--blue);
            color: #fff;
        }

    .footer--dark .footer__body {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
        padding: 32px 0;
    }

    .footer--dark .footer__nav {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

        .footer--dark .footer__nav a {
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            transition: 0.2s;
        }

            .footer--dark .footer__nav a:hover {
                color: var(--blue);
            }

    .footer--dark .footer__legal {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

        .footer--dark .footer__legal a {
            color: #a8b5c9;
            font-size: 14px;
            text-decoration: underline;
            transition: 0.2s;
        }

            .footer--dark .footer__legal a:hover {
                color: #fff;
            }

    .footer--dark .footer__bottom {
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
        color: #a8b5c9;
        text-align: center;
    }

/* ---------- FOOTER RESPONSIVE ---------- */
@media (max-width: 992px) {
    .footer--columns .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer--columns .footer__col--brand {
        grid-column: 1 / -1;
    }

    .footer--dark .footer__wrapper {
        padding: 36px 36px;
    }

    .footer--dark .footer__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-label {
        margin-top: 48px;
        font-size: 12px;
    }

    .footer--columns {
        padding: 40px 0 16px;
    }

        .footer--columns .footer__top {
            grid-template-columns: 1fr;
            gap: 28px;
            padding-bottom: 28px;
        }

        .footer--columns .footer__title {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .footer--columns .footer__list a {
            font-size: 15px;
        }

        .footer--columns .footer__tagline {
            font-size: 15px;
        }

    .footer--center {
        padding: 40px 0 24px;
    }

        .footer--center .footer__nav {
            gap: 18px;
            font-size: 16px;
            margin-bottom: 24px;
        }

            .footer--center .footer__nav a {
                font-size: 16px;
            }

        .footer--center .footer__socials {
            margin-bottom: 24px;
        }

        .footer--center .footer__legal {
            font-size: 13px;
            gap: 8px;
        }

    .footer--dark .footer__wrapper {
        padding: 28px 24px;
        margin: 0 16px;
        border-radius: 24px;
    }

    .footer--dark .footer__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 24px;
    }

    .footer--dark .footer__body {
        padding: 24px 0;
        gap: 20px;
    }

    .footer--dark .footer__nav {
        gap: 16px;
        font-size: 15px;
    }

    .footer__logo img {
        height: 44px;
    }

    .footer__social {
        width: 36px;
        height: 36px;
    }

        .footer__social svg {
            width: 18px;
            height: 18px;
        }
}

@media (max-width: 480px) {
    .footer--center .footer__nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer--center .footer__legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer--center .footer__dot {
        display: none;
    }

    .footer--dark .footer__nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer--dark .footer__legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer__logo img {
        height: 36px;
    }
}

@media (max-width: 360px) {
    .footer--dark .footer__wrapper {
        margin: 0 8px;
        padding: 24px 18px;
    }
}

/* ---------- RESPONSIVE ---------- */

/* Small laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .header__inner {
        padding: 14px 14px 14px 28px;
        gap: 24px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .header__inner > .btn {
        height: 56px;
        font-size: 18px;
    }

    .nav {
        font-size: 18px;
        gap: 18px;
    }

    .hero {
        height: 640px;
    }

    .hero__title {
        font-size: 38px;
    }

    .hero__text {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero__bg {
        height: 480px;
    }

    .hero__left {
        padding-bottom: 80px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .feat--anatomy,
    .feat--gift,
    .feat--safe {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }

    .feat--anatomy,
    .feat--gift {
        overflow: hidden;
    }

    .feat {
        padding: 40px;
    }

    .feat--gift,
    .feat--safe {
        padding: 32px 32px 40px;
    }

    .feat__title {
        font-size: 44px;
    }

    .feat__text {
        font-size: 20px;
    }

    .feat--anatomy .feat__text {
        max-width: 50%;
    }

    .feat__photo--anatomy,
    .feat__photo--gift {
        width: 50%;
        max-width: 50%;
        height: auto;
        top: auto;
        bottom: 0;
    }

    .feat__photo--safe {
        width: 280px;
        max-width: 280px;
    }

    .scheme__title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .scheme__grid {
        grid-template-columns: 110px auto 110px auto 110px auto 110px;
        column-gap: 20px;
    }

    .scheme__step {
        gap: 10px;
    }

    .scheme__icon {
        width: 110px;
        height: 110px;
    }

    .scheme__label {
        font-size: 14px;
    }

    .scheme__arrow {
        margin-top: 55px;
    }

        .scheme__arrow svg {
            width: 28px;
            height: 14px;
        }

    .scheme__curve {
        height: 130px;
    }

    .reviews .section__title {
        font-size: 32px;
    }

    .review {
        padding: 24px 28px;
    }

    .review__name,
    .review__text {
        font-size: 20px;
    }

    .card__title {
        font-size: 22px;
        padding: 6px 0 14px 18px;
    }

    .card__props {
        padding: 0 18px;
    }

        .card__props li {
            font-size: 15px;
        }

        .card__props .ico {
            width: 26px;
            height: 26px;
            margin-right: 4px;
        }

    .card__price {
        font-size: 34px;
        padding: 0 18px;
        margin-bottom: 24px;
    }

    .card .btn {
        font-size: 18px;
        height: 56px;
    }

    .faq {
        padding-top: 100px;
    }

        .faq .section__title {
            font-size: 32px;
            margin-bottom: 48px;
        }

    .faq__grid {
        grid-template-columns: 360px 1fr;
        padding-inline: 0;
    }

    .faq__img {
        width: 360px;
        height: 360px;
    }

        .faq__img img {
            height: 400px;
        }

    .faq__q-text {
        font-size: 22px;
    }

    .faq__q-ico {
        width: 40px;
        height: 56px;
    }

    .faq__answer > p {
        padding-left: 100px;
    }

    .contact__mascot {
        width: 380px;
        height: auto;
    }

    .contact__card {
        width: 100%;
        max-width: 880px;
        height: auto;
        min-height: 520px;
        padding-bottom: 80px;
    }

        .contact__card h3 {
            font-size: 32px;
        }

        .contact__card p {
            font-size: 22px;
        }

    .contact__list li {
        font-size: 20px;
    }

    .subscribe__wrapper {
        padding: 32px 48px;
        margin-bottom: 100px;
    }

    .subscribe__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subscribe__icon {
        width: 220px;
        margin: 0 auto;
        rotate: 0deg;
    }

    .subscribe__title {
        font-size: 38px;
    }

    .subscribe__text {
        font-size: 22px;
    }

    .subscribe__form input,
    .subscribe__form .btn {
        width: auto;
        max-width: 280px;
    }

    .subscribe__checks {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.features .container {
    max-width: 1400px;
    padding: 0 24px;
}


/* Tablets landscape */
@media (max-width: 992px) {
    .burger {
        display: flex;
    }

    .header__inner {
        grid-template-columns: auto 1fr auto;
        padding: 10px 10px 10px 16px;
        gap: 16px;
    }

    .header__inner .nav {
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        background: #fff;
        border-radius: 24px;
        padding: 20px 24px;
        flex-direction: column;
        gap: 14px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 60;
        box-shadow: 0 12px 32px rgba(20, 50, 90, 0.12);
        justify-self: stretch;
        font-size: 18px;
    }

    .header__inner .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        top: 80px;
    }

    .header__inner .logo {
        justify-self: center;
    }

    .header__inner > .btn {
        width: auto;
        padding: 0 20px;
        font-size: 16px;
        height: 48px;
        gap: 12px;
    }

    .header__inner > .btn.btn--cart::before {
        width: 22px;
        height: 22px;
    }

    .logo img {
        height: 44px;
    }

    .notice {
        top: 58px;
        margin-left: 70px;
        margin-right: 70px;
        z-index: 9999999;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 0;
        border-radius: 0 0 40px 40px;
    }

    .hero__inner {
        padding-top: 0;
        height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__left {
        padding: 130px 0 16px;
        text-align: center;
    }

    .hero__text {
        margin: 0 auto 24px;
    }

    .hero__bg {
        height: 70%;
        max-height: 480px;
    }

    .hero__img {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        height: auto;
    }

        .hero__img img {
            margin-bottom: 0;
            transform: translateY(20px);
        }

    .features__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .feat--anatomy,
    .feat--gift,
    .feat--safe {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }

    .feat--anatomy,
    .feat--gift {
        overflow: hidden;
    }

    .feat__photo--anatomy,
    .feat__photo--gift {
        width: 50%;
        max-width: 50%;
        height: auto;
        top: auto;
        bottom: 0;
    }

    .feat__photo--safe {
        width: 220px;
        max-width: 220px;
    }

    .reviews .section__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__deco--thanks,
    .reviews__deco--mail,
    .reviews__deco--star-blue,
    .reviews__deco--star-gold,
    .reviews__deco--star-gold-2 {
        display: none;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq__img {
        width: 100%;
        max-width: 460px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }

        .faq__img img {
            height: auto;
            max-height: 110%;
            bottom: 0;
        }

    .contact__grid {
        flex-direction: column;
        min-height: auto;
        gap: 24px;
        align-items: center;
    }

    .contact__mascot {
        display: none;
    }

    .contact__card {
        width: 100%;
        max-width: 720px;
        min-height: auto;
        height: auto;
        padding: 40px 32px;
        background: #f5e8ff;
        border-radius: 32px;
        overflow: hidden;
    }

    .contact__bg {
        display: none;
    }

    .contact__inner {
        padding-top: 0;
        padding-left: 0;
    }

    .contact__list .ico {
        background: transparent;
        width: auto;
        height: auto;
    }

        .contact__list .ico img {
            width: 28px;
            height: 28px;
        }

    .contact__inner {
        padding-top: 32px;
        padding-left: 24px;
    }

    .subscribe__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subscribe__icon {
        margin: 0 auto;
        rotate: 0deg;
        width: 200px;
    }

    .subscribe__wrapper {
        padding: 32px;
    }

    .scheme__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .scheme .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .scheme__block {
        margin-bottom: 0;
    }

    .scheme__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: auto;
        margin: 0;
    }

    .scheme__curve {
        display: none;
    }

    .scheme__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: auto;
        gap: 10px;
    }

    .scheme__icon {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .scheme__label {
        font-size: 14px;
    }

    .scheme__arrow {
        align-self: center;
        justify-self: center;
        margin-top: 0;
        transform: rotate(90deg);
    }

        .scheme__arrow svg {
            width: 24px;
            height: 18px;
        }

    .scheme__grid--regular > *:nth-child(9),
    .scheme__grid--regular > *:nth-child(10),
    .scheme__grid--regular > *:nth-child(11) {
        grid-column: auto;
        grid-row: auto;
        position: static;
        z-index: auto;
        margin-top: 0;
    }
}

/* Tablets portrait & big phones */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .header__inner {
        padding: 8px 8px 8px 12px;
        gap: 12px;
        border-radius: 32px;
    }

    .header__inner .nav.is-open {
        top: 67.5px;
    }

    .header__inner > .btn {
        padding: 0 16px;
        font-size: 14px;
        height: 40px;
        gap: 10px;
    }

    .header__inner > .btn.btn--cart::before {
        width: 18px;
        height: 18px;
    }

    .logo img {
        height: 35px;
    }

    .notice {
        top: 45px;
        margin-left: 5px;
        margin-right: 5px;
        z-index: 9999999;
    }

    .notice .container {
        padding: 0 8px;
    }

    .notice__inner {
        padding: 0 6px;
        gap: 8px;
    }

    .notice__center {
        gap: 10px;
    }

    .notice__text {
        font-size: 12px;
    }

    .notice__btn {
        font-size: 11px;
        padding: 3px 10px;
    }

    .hero__left {
        padding-top: 150px;
    }

    .hero__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero__text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero .btn {
        height: 52px;
        font-size: 16px;
        padding: 0 22px;
    }

    .hero .btn.btn--cart::before {
        width: 18px;
        height: 18px;
    }

    .section__title {
        font-size: 24px;
    }

    .section__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .feat {
        padding: 28px 20px;
    }

    .feat--anatomy,
    .feat--gift,
    .feat--safe {
        min-height: 240px;
    }

    .feat__title {
        font-size: 32px;
    }

    .feat__text {
        font-size: 16px;
    }

    .feat__photo--safe {
        width: 250px;
        max-width: 250px;
    }

    .review {
        padding: 20px 22px;
    }

    .review__head {
        gap: 12px;
        margin: -28px 0 20px;
    }

    .avatar {
        width: 56px;
        height: 56px;
        border-width: 4px;
    }

    .review__name {
        font-size: 18px;
    }

    .review__text {
        font-size: 16px;
    }

    .review__stars {
        gap: 4px;
    }

        .review__stars svg {
            width: 18px;
            height: 16px;
        }

    .reviews .section__title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .faq {
        padding-top: 80px;
    }

        .faq .section__title {
            font-size: 24px;
            margin-bottom: 32px;
        }

    .faq__head {
        padding: 14px 16px;
        gap: 12px;
    }

    .faq__q-ico {
        width: 32px;
        height: 44px;
    }

    .faq__q-text {
        font-size: 16px;
    }

    .faq__plus {
        width: 24px;
        height: 24px;
        font-size: 24px;
    }

    .faq__answer > p {
        padding: 0 16px 16px 60px;
        font-size: 14px;
    }

    .contact__mascot {
        width: 220px;
    }

    .contact__card {
        padding: 28px 16px 70px;
    }

    .contact__inner {
        padding-top: 28px;
        padding-left: 16px;
    }

    .contact__card h3 {
        font-size: 24px;
    }

    .contact__card p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact__list li {
        font-size: 16px;
        gap: 8px;
    }

    .contact__list .ico {
        width: 28px;
        height: 28px;
    }

        .contact__list .ico img {
            width: 18px;
            height: 18px;
        }

    .subscribe__wrapper {
        padding: 28px 20px;
        margin: 0;
        margin-bottom: 100px;
    }

    .subscribe__icon {
        width: 160px;
    }

    .subscribe__title {
        font-size: 26px;
    }

    .subscribe__text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .subscribe__form {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

        .subscribe__form input {
            flex: none;
            width: 100%;
            max-width: none;
            height: 52px;
            min-height: 52px;
            box-sizing: border-box;
            font-size: 16px;
            padding: 0 18px;
        }

        .subscribe__form .btn {
            flex: none;
            width: 100%;
            max-width: none;
            height: 52px;
            min-height: 52px;
            box-sizing: border-box;
            font-size: 18px;
            padding: 0 20px;
        }

    .subscribe__checks {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        font-size: 13px;
        text-align: left;
    }

    .catalog__nav {
        height: 48px;
        gap: 12px;
    }

        .catalog__nav .swiper-button-prev,
        .catalog__nav .swiper-button-next {
            width: 48px;
            height: 48px;
        }

            .catalog__nav .swiper-button-prev::after,
            .catalog__nav .swiper-button-next::after {
                font-size: 16px;
            }

    .card__title {
        font-size: 22px;
        padding: 6px 0 14px 16px;
    }

    .card__props {
        padding: 0 16px;
        gap: 8px;
    }

        .card__props li {
            font-size: 14px;
            gap: 4px;
        }

        .card__props .ico {
            width: 24px;
            height: 24px;
        }

    .card__price {
        font-size: 32px;
        padding: 0 16px;
        margin-bottom: 24px;
    }
}

/* Small tablets / phones — стэк фото снизу для первых карточек */
@media (max-width: 600px) {
    .feat--anatomy,
    .feat--gift {
        overflow: hidden;
        padding-bottom: 0;
        min-height: auto;
    }

        .feat--anatomy .feat__text {
            max-width: none;
        }

    .feat__photo--anatomy,
    .feat__photo--gift {
        position: static;
        width: auto;
        max-width: calc(100% + 40px);
        height: auto;
        max-height: 280px;
        top: auto;
        right: auto;
        border-radius: 0;
        display: block;
        object-fit: contain;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .feat__photo--anatomy {
        margin-left: auto;
        margin-right: -20px;
    }

    .feat__photo--gift {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Phones */
@media (max-width: 480px) {
    .header__inner > .btn {
        padding: 0 12px;
        font-size: 13px;
        height: 36px;
        min-width: 0;
    }

    .header__inner > .btn.btn--cart::before {
        width: 16px;
        height: 16px;
    }

    .notice {
        top: 45px;
        z-index: 9999999;
    }

    .notice__icon {
        width: 18px;
        height: 18px;
    }

    .notice__text {
        font-size: 11px;
    }

    .notice__btn {
        font-size: 10px;
        padding: 2px 8px;
    }

    .notice__close img {
        width: 10px;
        height: 10px;
    }

    .hero__left {
        padding-top: 140px;
        padding-bottom: 8px;
    }

    .hero__title {
        font-size: 22px;
    }

    .hero__text {
        font-size: 14px;
    }

    .hero .btn {
        height: 48px;
        font-size: 15px;
        padding: 0 18px;
    }

    .feat {
        padding: 24px 18px;
    }

    .feat--anatomy,
    .feat--gift {
        padding-bottom: 0;
    }

    .feat__title {
        font-size: 26px;
    }

    .feat__text {
        font-size: 14px;
        max-width: 220px;
    }

    .feat--anatomy .feat__text {
        max-width: none;
    }

    .feat__photo--safe {
        width: 235px;
        max-width: 235px;
    }

    .feat__photo--gift,
    .feat__photo--anatomy {
        max-width: calc(100% + 36px);
    }

    .feat__photo--anatomy {
        margin-right: -18px;
    }

    .scheme .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .scheme__icon {
        width: 80px;
        height: 80px;
    }

    .subscribe__title {
        font-size: 22px;
    }

    .subscribe__icon {
        width: 130px;
    }
}

/* Tiny phones */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .header__inner .nav.is-open {
        top: 62.5px;
    }

    .header__inner {
        padding: 6px 6px 6px 10px;
        gap: 8px;
    }

/*    .header__inner .nav {
        left: 8px;
        right: 8px;
    }*/

    .header__inner > .btn {
        padding: 0 10px;
        font-size: 11px;
        height: 32px;
        gap: 6px;
    }

    .header__inner > .btn.btn--cart::before {
        width: 14px;
        height: 14px;
    }

    .logo img {
        height: 30px;
    }

    .notice {
        top: 40px;
        z-index: 9999999;
    }

    .notice__inner {
        gap: 6px;
        padding: 0 4px;
    }

    .notice__center {
        gap: 8px;
    }

    .notice__text {
        font-size: 10px;
    }

    .notice__btn {
        font-size: 9px;
        padding: 2px 6px;
    }

    .hero__left {
        padding-top: 130px;
    }

    .hero__title {
        font-size: 18px;
    }

    .hero__text {
        font-size: 12px;
    }

    .hero .btn {
        font-size: 13px;
        height: 44px;
        padding: 0 14px;
        gap: 10px;
    }

        .hero .btn.btn--cart::before {
            width: 16px;
            height: 16px;
        }

    .feat__title {
        font-size: 22px;
    }

    .feat__text {
        font-size: 13px;
    }

    .feat__photo--safe {
        width: 200px;
        max-width: 200px;
    }

    .review__text {
        font-size: 14px;
    }

    .faq__q-text {
        font-size: 14px;
    }

    .subscribe__wrapper {
        padding: 20px 14px;
        margin: 0 8px;
        margin-bottom: 100px;
    }

    .subscribe__title {
        font-size: 20px;
    }

    .subscribe__icon {
        width: 110px;
    }
}


/* SWIPER АДАПТАЦИЯ */
.catalog__swiper {
    width: 100%;
    overflow: hidden;
}

    .catalog__swiper .swiper-wrapper {
        display: flex;
        justify-content: space-around;
    }

.catalog__swiper .swiper-slide {
    height: auto;
    width: 320px;
    flex-shrink: 0;
}

/* Скрываем кнопки навигации на десктопе по умолчанию (когда слайдов мало) */
.catalog__nav {
    display: none;
}

/* Показываем кнопки только на мобилках */
@media (max-width: 768px) {
    .catalog__nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .catalog__nav .swiper-button-prev,
    .catalog__nav .swiper-button-next {
        position: static;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: white;
        border: 1px solid #dde6f2;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.2s;
    }

    .catalog__nav .swiper-button-prev::after,
    .catalog__nav .swiper-button-next::after {
        font-size: 16px;
        font-weight: bold;
        color: #a8bfd9;
    }

    .catalog__nav .swiper-button-next {
        background: #a8bfd9;
        border-color: #a8bfd9;
    }

        .catalog__nav .swiper-button-next::after {
            color: white;
        }

    .catalog__nav .swiper-button-prev:hover {
        border-color: #a8bfd9;
    }

    .catalog__nav .swiper-button-next:hover {
        background: #94afcf;
    }
}

/* Центрирование каталога на десктопе */
@media (min-width: 769px) {
    .catalog__swiper {
        display: flex;
        justify-content: center;
    }

        .catalog__swiper .swiper-wrapper {
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .catalog__swiper .swiper-slide {
            width: 280px;
            margin: 0;
        }
}

/* TOAST УВЕДОМЛЕНИЯ */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    min-width: 280px;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.toast-notification.success .toast-icon {
    background: #10b981;
    color: white;
}

.toast-notification.error .toast-icon {
    background: #ef4444;
    color: white;
}

.toast-message {
    font-size: 14px;
    color: #1e293b;
    flex: 1;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}

.disabled-button {
    pointer-events: none; 
    opacity: 0.6;
    cursor: default;
}

/* ----- ORDER PANEL (overlay) ----- */
.order-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .order-overlay.active {
        display: flex;
        opacity: 1;
    }

.order-panel {
    background: #ffffff;
    border-radius: 32px;
    max-width: 480px;
    width: 100%;
    padding: 2rem 1.5rem 1.8rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1000000;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.order-overlay.active .order-panel {
    transform: scale(1);
}

.order-panel__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

    .order-panel__close:hover {
        background: #f0f0f0;
        color: #333;
    }

.order-panel h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.order-panel .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.order-panel .contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

    .order-panel .contact-methods button {
        flex: 1 0 auto;
        padding: 0.6rem 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 40px;
        background: #fafafa;
        font-weight: 600;
        font-size: 0.9rem;
        color: #333;
        cursor: pointer;
        transition: all 0.2s;
    }

        .order-panel .contact-methods button.active {
            border-color: rgb(0, 180, 255);
            background: #e8f6ff;
            color: rgb(0, 150, 230);
        }

        .order-panel .contact-methods button:hover {
            border-color: rgb(0, 180, 255);
        }

.order-panel .phone-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    outline: none;
    transition: border 0.2s;
}

    .order-panel .phone-input:focus {
        border-color: rgb(0, 180, 255);
    }

.order-panel .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #444;
}

    .order-panel .consent-row input[type="checkbox"] {
        margin-top: 0.2rem;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        accent-color: rgb(0, 180, 255);
    }

    .order-panel .consent-row a {
        color: rgb(0, 180, 255);
        text-decoration: none;
    }

        .order-panel .consent-row a:hover {
            text-decoration: underline;
        }

.order-panel .submit-order {
    width: 100%;
    padding: 0.9rem;
    background: rgb(0, 180, 255);
    border: none;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.25s;
}

    .order-panel .submit-order:hover {
        background: rgb(0, 150, 230);
    }

    .order-panel .submit-order:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.order-panel .form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 20px;
}

    .order-panel .form-message.success {
        background: #e6f7e6;
        color: #1f7b1f;
    }

    .order-panel .form-message.error {
        background: #ffe6e6;
        color: #b33;
    }

@media (max-width: 500px) {
    .order-panel {
        padding: 1.5rem 1rem;
    }

        .order-panel h2 {
            font-size: 1.3rem;
        }

        .order-panel .contact-methods button {
            font-size: 0.8rem;
            padding: 0.5rem 0.8rem;
        }
}

.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    font-family: "Nunito", sans-serif;
    border: 1px solid #e4eefb;
    min-width: 260px;
    max-width: 400px;
}

    .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 20px;
}

.toast-message {
    color: #1b3762;
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #91a7c4;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
}

    .toast-close:hover {
        color: #1b3762;
    }

.toast-notification.success {
    border-left: 4px solid #22c55e;
}

.toast-notification.error {
    border-left: 4px solid #ef4444;
}

@media (max-width: 600px) {
    .toast-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        border-radius: 10px;
    }
}