* {
    box-sizing: border-box;
}

:root {
    --black: #111111;
    --text: #303030;
    --muted: #8b8b8b;
    --line: #eeeeee;
    --soft: #f7f7f7;
    --pink: #f6dfe7;
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text);
}

body.layer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    color: #182ccb;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
video {
    max-width: 100%;
}

.app {
    min-height: 100vh;
    background: #ffffff;
}

.page-content {
    min-height: 100vh;
}


/* =====================================================
   PWA SPLASH — KOTTON
===================================================== */

.kotton-pwa-splash {
    display: none;
}

body.pwa:not(.pwa-splash-skip) .kotton-pwa-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: var(--safe-top) 0 var(--safe-bottom);

    background: #ffffff;
    color: #111111;

    overflow: hidden;
    pointer-events: auto;
}

body.pwa-splash-open {
    overflow: hidden;
}

.kotton-pwa-splash__inner {
    width: min(78vw, 390px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(.985);

    animation: kottonSplashLogoIn .42s cubic-bezier(.22,.8,.22,1) .08s forwards;
}

.kotton-pwa-splash__inner img {
    width: 100%;
    height: auto;
    display: block;
}

.kotton-pwa-splash.is-leaving .kotton-pwa-splash__inner {
    animation: kottonSplashLogoOut .42s cubic-bezier(.7,0,.2,1) forwards;
}

.kotton-pwa-splash.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

@keyframes kottonSplashLogoIn {
    0% {
        opacity: 0;
        transform: translate3d(-22px, 0, 0) scale(.985);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes kottonSplashLogoOut {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate3d(110vw, 0, 0) scale(1.02);
    }
}

@media (max-width: 699px) {
    .kotton-pwa-splash__inner {
        width: 78vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kotton-pwa-splash__inner,
    .kotton-pwa-splash.is-leaving .kotton-pwa-splash__inner {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* HEADER */

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 80;

    height: 68px;
    padding: 0 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;
    background: transparent;

    transition:
        background .22s ease,
        color .22s ease,
        border-color .22s ease,
        backdrop-filter .22s ease;
}

.site-header.is-dark,
body.layer-open .site-header {
    color: var(--black);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.site-header.is-scrolled {
    color: var(--black);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 205px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    display: block;
    width: 205px;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-header.is-dark .header-logo img,
.site-header.is-scrolled .header-logo img,
body.layer-open .header-logo img {
    filter: none;
}

.header-actions {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    position: relative;

    width: 26px;
    height: 26px;
    padding: 0;

    border: 0;
    background: transparent;
    color: currentColor;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-burger {
    width: 32px;
    height: 26px;
    margin-right: auto;
}

.header-burger svg {
    width: 32px;
    height: 24px;
}

.header-search-mobile {
    display: none;
}

.small-badge {
    position: absolute;
    right: -8px;
    top: -8px;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    border-radius: 999px;
    background: var(--pink);
    color: var(--black);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    line-height: 1;
    z-index: 2;
}

.page-catalog .site-header {
    color: #111111;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #eeeeee;
}

.page-catalog .header-logo img {
    filter: none;
}

/* APP BANNER */

.kotton-app-banner {
    display: none;
}

.kotton-install-sheet {
    display: none;
}

@media (max-width: 899px) {
    .kotton-app-banner {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 260;

        min-height: calc(88px + var(--safe-top));
        padding: calc(10px + var(--safe-top)) 14px 10px;

        display: flex;
        align-items: center;
        gap: 12px;

        background: #e9e9e9;
        color: #111111;
        border-bottom: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);

        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;

        transition:
            transform .28s ease,
            opacity .28s ease;
    }

    .kotton-app-banner.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .kotton-app-banner[hidden] {
        display: none;
    }

    body.has-app-banner .site-header {
        top: calc(88px + var(--safe-top));
    }

    body.has-app-banner .page-content {
        padding-top: calc(88px + var(--safe-top));
    }

    body.has-app-banner.page-product .page-content {
        padding-top: 0;
    }

    body.has-app-banner.page-product .site-header {
        top: calc(88px + var(--safe-top));
    }

    .kotton-app-banner__close {
        width: 28px;
        height: 44px;
        flex: 0 0 28px;

        padding: 0;
        border: 0;
        background: transparent;
        color: #111111;

        font-size: 34px;
        line-height: 1;
        font-weight: 300;
    }

    .kotton-app-banner__icon {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;

        border-radius: 12px;
        background: #ffffff;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
        box-shadow: 0 1px 5px rgba(0,0,0,.12);
    }

    .kotton-app-banner__icon img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .kotton-app-banner__content {
        min-width: 0;
        flex: 1;
    }

    .kotton-app-banner__title {
        color: #111111;
        font-size: 16px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .kotton-app-banner__text {
        margin-top: 2px;

        color: #6f6f6f;
        font-size: 13px;
        line-height: 1.2;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .kotton-app-banner__stars {
        margin-top: 5px;

        color: #000000;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 1px;
    }

    .kotton-app-banner__button {
        height: 42px;
        padding: 0 16px;
        flex: 0 0 auto;

        border: 0;
        border-radius: 3px;
        background: #000000;
        color: #ffffff;

        font-size: 13px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .04em;
    }

    .kotton-install-sheet {
        position: fixed;
        inset: 0;
        z-index: 500;
    }

    .kotton-install-sheet.is-open {
        display: block;
    }

    .kotton-install-sheet__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.36);
    }

    .kotton-install-sheet__panel {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: max(14px, var(--safe-bottom));

        padding: 28px 22px 22px;

        border-radius: 28px;
        background: #ffffff;
        color: #111111;

        box-shadow: 0 24px 80px rgba(0,0,0,.22);
        animation: kottonInstallIn .24s ease both;
    }

    .kotton-install-sheet__close {
        position: absolute;
        right: 18px;
        top: 14px;

        width: 34px;
        height: 34px;

        border: 0;
        background: transparent;
        color: #111111;

        font-size: 32px;
        line-height: 1;
        font-weight: 300;
    }

    .kotton-install-sheet__logo {
        width: 64px;
        height: 64px;

        margin-bottom: 16px;

        border-radius: 16px;
        background: #ffffff;
        overflow: hidden;

        box-shadow: 0 1px 8px rgba(0,0,0,.12);
    }

    .kotton-install-sheet__logo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .kotton-install-sheet h3 {
        margin: 0 0 12px;

        color: #111111;
        font-size: 24px;
        line-height: 1;
        letter-spacing: -.04em;
    }

    .kotton-install-sheet p {
        margin: 0;

        color: #555555;
        font-size: 16px;
        line-height: 1.5;
    }

    .kotton-install-sheet__button {
        width: 100%;
        height: 52px;

        margin-top: 22px;

        border: 0;
        border-radius: 999px;
        background: #111111;
        color: #ffffff;

        font-size: 14px;
        font-weight: 900;
        letter-spacing: .04em;
    }

    @keyframes kottonInstallIn {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.install-share-icon {
    width: 22px;
    height: 22px;
    margin: 0 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: -5px;
    color: #111111;
}

.install-share-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* HERO */

.hero {
    position: relative;

    height: 82vh;
    min-height: 640px;
    max-height: 860px;

    overflow: hidden;
    background: #eeeeee;
    color: #ffffff;
}

.hero-video,
.hero-fallback {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
    z-index: 1;
}

.hero-video-mobile {
    display: none;
}

.hero-fallback {
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.26)),
        url("https://kotton.com.ua/files/products/img_9134.800x800.jpeg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.02) 42%, rgba(0,0,0,.22)),
        radial-gradient(circle at 50% 46%, rgba(255,255,255,.14), rgba(255,255,255,0) 42%);

    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 0 24px;
}

.hero-kicker {
    margin-bottom: 22px;

    font-size: 14px;
    line-height: 1;
    letter-spacing: .32em;
    font-weight: 300;
}

.hero h1 {
    margin: 0;

    font-size: 70px;
    line-height: .9;
    letter-spacing: .22em;
    font-weight: 300;
}

.hero p {
    margin: 24px 0 0;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 300;
}

.hero-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-actions a,
.hero-actions button {
    height: 46px;
    padding: 0 22px;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.78);
    background: rgba(255,255,255,.16);
    color: #ffffff;

    display: flex;
    align-items: center;

    font-size: 14px;
    line-height: 1;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-actions a {
    background: #ffffff;
    color: #111111;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dots span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
}

.hero-dots span.active {
    width: 30px;
    background: #ffffff;
}

/* HOME SECTIONS */

.home-section {
    padding: 44px 52px 58px;
    background: #ffffff;
}

.section-head {
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.section-head h2 {
    margin: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.02em;

}

.section-head h2::after {
    content: "→";

    display: inline-block;

    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    transform: translateX(0);
    transition: transform .22s ease;
}

.section-head:hover h2::after {
    transform: translateX(8px);
}

.section-link {
    color: #777777;
    font-size: 14px;
    line-height: 1;
}

.product-slider {
    position: relative;
}

.product-row {
    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;

    padding-bottom: 2px;
}

.product-row::-webkit-scrollbar {
    display: none;
}

.product-card,
.more-card {
    flex: 0 0 calc((100% - 56px) / 5);
    min-width: 0;
    scroll-snap-align: start;
}

.product-card__photo,
.more-card {
    position: relative;

    display: block;
    aspect-ratio: 3 / 4.5;

    overflow: hidden;
    background: #f6f6f6;
}

.product-card__photo img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform .36s ease;
}

.product-card__photo:hover img {
    transform: scale(1.025);
}

.product-card__heart {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;

    width: 34px;
    height: 34px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    filter: drop-shadow(0 1px 3px rgba(0,0,0,.28));
}

.product-card__heart svg {
    width: 34px;
    height: 34px;

    fill: rgba(255,255,255,.66);
    stroke: #ffffff;
    stroke-width: 1.4;
}

.product-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    min-height: 86px;
    padding: 24px 16px 14px;

    display: grid;
    align-content: end;
    gap: 7px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.88) 42%, rgba(255,255,255,.98));

    transform: translateY(100%);
    opacity: 0;

    transition:
        transform .28s ease,
        opacity .28s ease;
}

.product-card__photo:hover .product-card__overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-card__name {
    display: block;

    color: #333333;
    font-size: 14px;
    line-height: 1.25;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__prices {
    display: flex;
    align-items: center;
    gap: 10px;

    white-space: nowrap;
}

.product-card__prices b {
    color: #111111;
    font-size: 14px;
    line-height: 1;
}

.product-card__prices em {
    color: #777777;
    font-size: 13px;
    line-height: 1;
    font-style: normal;
    
}

.more-card {
    border: 1px solid #eeeeee;

    display: grid;
    place-content: center;

    text-align: center;
    color: #111111;
}

.more-card span {
    font-size: 28px;
    line-height: 1;
}

.more-card em {
    margin-top: 10px;

    font-size: 14px;
    color: #777777;
    font-style: normal;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;

    width: 34px;
    height: 34px;
    margin-top: -17px;

    border: 0;
    border-radius: 50%;
    background: rgba(30,30,30,.78);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-arrow--prev {
    left: -17px;
}

.slider-arrow--next {
    right: -17px;
}

/* BANNERS */

.wide-banner {
    position: relative;

    min-height: 560px;
    padding: 58px 52px;

    display: flex;
    align-items: flex-end;

    color: #ffffff;
    background-image: var(--banner-desktop);
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.wide-banner::after {
    content: "";
    position: absolute;
    inset: 0;

    
}

.wide-banner > div {
    position: relative;
    z-index: 2;
}

.wide-banner span {
    display: block;
    margin-bottom: 12px;

    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 300;
}

.wide-banner h2 {
    margin: 0;

    font-size: 62px;
    line-height: .9;
    letter-spacing: -.06em;
    font-weight: 400;
}

.wide-banner a {
    margin-top: 22px;
    height: 42px;
    padding: 0 22px;

    border-radius: 999px;
    background: #ffffff;
    color: #111111;

    display: inline-flex;
    align-items: center;

    font-size: 14px;
}



/* BRAND TEXT */

.brand-text {
    padding: 78px 52px 90px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.brand-text__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.brand-text h2 {
    margin: 0 0 22px;

    color: #333333;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -.04em;
    font-weight: 800;
}

.brand-text p {
    margin: 0 0 18px;

    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}

.brand-text a {
    color: #0645d8;
    text-decoration: none;
    font-weight: 500;
}

.brand-text a:hover {
    text-decoration: underline;
}

.brand-text ul {
    margin: 0 0 18px;
    padding-left: 20px;

    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}

.brand-text__toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.brand-text__more {
    display: none;
}

.brand-text__toggle:checked ~ .brand-text__content .brand-text__more {
    display: block;
}

.brand-text__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
    align-items: start;
}

.brand-text__media {
    position: sticky;
    top: 110px;
}

.brand-text__media img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #f5f5f5;
}

.brand-text__button {
    display: inline-flex;
    align-items: center;

    margin-top: 2px;

    color: #444444;
    font-size: 14px;
    
    line-height: 1;

    text-decoration: underline;
    cursor: pointer;
}

.brand-text__button-close {
    display: none;
}

.brand-text__toggle:checked ~ .brand-text__button-open {
    display: none;
}

.brand-text__toggle:checked ~ .brand-text__button-close {
    display: inline-flex;
}


/* CATALOG PAGE */

.catalog-page {
    padding-top: 80px;
    padding-bottom: 90px;
    background: #ffffff;
}

.catalog-head {
    padding: 0 16px 10px;
}

.catalog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    color: #9b9b9b;
    font-size: 12px;
    line-height: 1;
}

.catalog-breadcrumbs a {
    color: #9b9b9b;
}

.catalog-breadcrumbs span:last-child {
    color: #303030;
}

.catalog-title {
    margin: 0;

    color: #111111;
    font-size: 28px;
    line-height: .95;
    letter-spacing: 0.02em;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-sticky-bar {
    position: sticky;
    top: 68px;
    z-index: 50;

    min-height: 64px;
    padding: 0 16px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.catalog-chips {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 8px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.catalog-chips::-webkit-scrollbar {
    display: none;
}

.catalog-chip {
    flex: 0 0 auto;

    height: 30px;
    padding: 0 18px;

    border-radius: 999px;
    border: 1px solid #3f3a3a;
    background: #ffffff;
    color: #3f3a3a;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.catalog-chip.active {
    background: #4b4545;
    color: #ffffff;
}

.catalog-tools {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;

    background: transparent;
    border: 0;
}

.catalog-view-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.catalog-view-btn {
    width: 28px;
    height: 28px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #cfcfcf;

    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-view-btn span {
    display: block;

    width: 22px;
    height: 22px;

    border: 2px solid currentColor;
    border-radius: 8px;
}

.catalog-view-btn.active {
    color: #111111;
}

.catalog-view-btn-split {
    gap: 3px;
}

.catalog-view-btn-split span {
    width: 10px;
    height: 22px;
    border-radius: 7px;
}

.catalog-count {
    padding-left: 18px;

    border-left: 1px solid #eeeeee;

    color: #9b9b9b;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.catalog-filter-btn {
    width: 34px;
    height: 34px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #111111;
}

.catalog-filter-btn svg {
    width: 30px;
    height: 30px;

    display: block;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.catalog-products-section {
    padding: 0 12px;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 8px;
}

.catalog-products-grid.is-split-view {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-product-card {
    position: relative;
    min-width: 0;
}

.catalog-product-photo {
    position: relative;

    display: block;
    aspect-ratio: 3 / 4.4;

    overflow: hidden;
    background: #f6f6f6;
    border-radius: 4px;
}

.catalog-product-photo img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.catalog-product-heart {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;

    width: 34px;
    height: 34px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    filter: drop-shadow(0 1px 3px rgba(0,0,0,.28));
}

.catalog-product-heart svg {
    width: 34px;
    height: 34px;

    fill: rgba(255,255,255,.68);
    stroke: #ffffff;
    stroke-width: 1.4;
}

.catalog-product-info {
    padding: 9px 4px 0;
}

.catalog-product-name {
    display: block;

    margin-bottom: 9px;

    color: #606060;
    font-size: 14px;
    line-height: 1.25;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-product-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.catalog-product-price {
    min-width: 0;

    display: flex;
    align-items: baseline;
    gap: 4px;

    white-space: nowrap;
}

.catalog-product-price span {
    color: #9b9b9b;
    font-size: 12px;
    line-height: 1;
}

.catalog-product-price b {
    color: #111111;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.catalog-product-price-retail {
    justify-content: flex-end;
}

.catalog-product-price-retail b {
    color: #686868;
    font-weight: 700;
}

.catalog-pagination {
    margin-top: 54px;

    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-pagination a,
.catalog-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;

    border-radius: 999px;
    background: #f5f5f5;
    color: #111111;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
}

.catalog-pagination span {
    background: #111111;
    color: #ffffff;
}

.catalog-empty {
    padding: 90px 20px;

    text-align: center;
    color: #999999;
    font-size: 18px;
}


/* =====================================================
   CATALOG SEO TEXT
===================================================== */

.catalog-seo-text {
    margin: 56px auto 0;
    padding: 0 12px;
}

.catalog-seo-text__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 0 0;

    border-top: 1px solid #eeeeee;
}



.catalog-seo-text h2 {
    max-width: 720px;
    margin: 0 0 18px;

    color: #111111;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1;
    font-weight: 850;
    letter-spacing: -.045em;
}

.catalog-seo-text__content {
    max-width: 860px;
    max-height: 118px;

    overflow: hidden;

    color: #666666;
    font-size: 15px;
    line-height: 1.62;

    position: relative;
}

.catalog-seo-text__content::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 48px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        #ffffff
    );

    pointer-events: none;
}

.catalog-seo-text.is-open .catalog-seo-text__content {
    max-height: none;
}

.catalog-seo-text.is-open .catalog-seo-text__content::after {
    display: none;
}

.catalog-seo-text__content p {
    margin: 0 0 14px;
}

.catalog-seo-text__content p:last-child {
    margin-bottom: 0;
}

.catalog-seo-text__content h2,
.catalog-seo-text__content h3,
.catalog-seo-text__content h4 {
    margin: 22px 0 12px;

    color: #111111;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.025em;
}

.catalog-seo-text__content ul,
.catalog-seo-text__content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.catalog-seo-text__content li {
    margin: 6px 0;
}

.catalog-seo-text__toggle {
    margin-top: 18px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #111111;

    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;

    cursor: pointer;
}

@media (max-width: 899px) {
    .catalog-seo-text {
        margin-top: 36px;
        padding: 0 16px;
    }

    .catalog-seo-text__inner {
        padding-top: 26px;
    }

    .catalog-seo-text h2 {
        font-size: 26px;
        line-height: 1.05;
    }

    .catalog-seo-text__content {
        max-height: 126px;
        font-size: 14px;
        line-height: 1.58;
    }
}

.catalog-load-nav__arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-load-nav {
    margin: 72px auto 86px;
    max-width: 520px;
    padding: 0 18px;
}

.catalog-load-nav__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
    color: #333;
    font-size: 16px;
}

.catalog-load-nav__range {
    position: relative;
    padding-top: 18px;
    text-align: center;
}

.catalog-load-nav__track {
    height: 6px;
    border-radius: 999px;
    background: #f4eeee;
    overflow: hidden;
}

.catalog-load-nav__track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #d7d2d6;
}

.catalog-load-nav__range b {
    display: inline-flex;
    min-width: 42px;
    height: 36px;
    margin-top: 14px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dedede;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
}

.catalog-load-nav__bottom {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    gap: 14px;
    align-items: center;
}

.catalog-load-nav__arrow,
.catalog-load-nav__more,
.catalog-load-nav__done {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
}

.catalog-load-nav__arrow {
    border: 0;
    background: #f3e5df;
    color: #111;
    font-size: 38px;
    line-height: 1;
}

.catalog-load-nav__arrow.is-disabled {
    color: #b9b9b9;
    opacity: .55;
}

.catalog-load-nav__more {
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 18px;
    cursor: pointer;
}

.catalog-load-nav__more:disabled {
    opacity: .55;
    cursor: wait;
}

.catalog-load-nav__done {
    border: 1px solid #eee;
    background: #fafafa;
    color: #777;
    font-size: 16px;
}

@media (max-width: 767px) {
    .catalog-load-nav {
        margin: 46px 12px 72px;
        padding: 0;
    }

    .catalog-load-nav__top {
        gap: 12px;
        font-size: 14px;
    }

    .catalog-load-nav__bottom {
        grid-template-columns: 42px 1fr 42px;
        gap: 10px;
    }

    .catalog-load-nav__arrow,
    .catalog-load-nav__more,
    .catalog-load-nav__done {
        height: 46px;
    }

    .catalog-load-nav__more {
        font-size: 16px;
    }
}


/* LAYERS */

.layer {
    position: fixed;
    inset: 0;
    z-index: 120;

    display: none;
}

.layer.is-open {
    display: block;
}

.layer-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.28);
}

.catalog-panel,
.search-panel,
.sheet-panel {
    position: absolute;

    background: rgba(255,255,255,.96);
    color: #111111;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.catalog-panel {
    left: 0;
    top: 0;
    bottom: 0;

    width: 470px;
    max-width: 94vw;

    box-shadow: 24px 0 70px rgba(0,0,0,.18);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);

    animation: panelIn .28s cubic-bezier(.22,.8,.22,1) both;
}

.search-panel {
    left: 50%;
    top: 90px;

    width: min(680px, calc(100vw - 40px));
    max-height: calc(100vh - 120px);

    transform: translateX(-50%);

    box-shadow: 0 24px 90px rgba(0,0,0,.14);
    border: 1px solid rgba(0,0,0,.06);

    animation: searchIn .22s ease both;
}

.sheet-panel {
    right: 0;
    top: 0;
    bottom: 0;

    width: 420px;
    max-width: 94vw;

    box-shadow: -24px 0 70px rgba(0,0,0,.16);

    animation: sheetIn .28s cubic-bezier(.22,.8,.22,1) both;
}

@keyframes panelIn {
    from {
        transform: translateX(-102%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes sheetIn {
    from {
        transform: translateX(102%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes searchIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.catalog-panel__head {
    position: sticky;
    top: 0;
    z-index: 4;

    height: 82px;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;

    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,.06);
}

.catalog-panel__logo {
    justify-self: center;

    width: 150px;
}

.catalog-panel__logo img {
    width: 150px;
    display: block;
}

.layer-close,
.layer-back {
    width: 42px;
    height: 42px;
    padding: 0;

    border: 0;
    background: transparent;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-close svg,
.layer-back svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-panel__body {
    padding: 24px 24px 46px;
}

.catalog-search-button {
    width: 100%;
    height: 56px;
    padding: 0 18px;

    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.14);
    background: rgba(255,255,255,.8);
    color: #999999;

    display: flex;
    align-items: center;
    gap: 14px;

    text-align: left;
}

.catalog-search-button svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: #111111;
    stroke-width: 2;
}

.catalog-quick,
.search-quick {
    margin-top: 16px;

    display: flex;
    gap: 9px;

    overflow-x: auto;
    scrollbar-width: none;
}

.catalog-quick::-webkit-scrollbar,
.search-quick::-webkit-scrollbar {
    display: none;
}

.catalog-quick a,
.search-quick a {
    flex: 0 0 auto;

    height: 36px;
    padding: 0 13px;

    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.1);
    background: #ffffff;

    display: flex;
    align-items: center;

    color: #333333;
    font-size: 14px;
}

.layer-title {
    margin: 28px 0 14px;

    color: #777777;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* CATALOG CARDS */

.catalog-grid {
    display: grid;
    gap: 12px;
}

.catalog-card {
    position: relative;

    min-height: 112px;

    overflow: hidden;
    border-radius: 18px;
    background: #f4f4f4;
    color: #161616;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.035);

    transition:
        transform .2s ease,
        background .2s ease;
}

.catalog-card:hover {
    background: #eeeeee;
    transform: translateX(2px);
}

.catalog-card summary,
.catalog-card-link {
    position: relative;

    min-height: 112px;
    padding: 22px 150px 22px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    list-style: none;
}

.catalog-card summary {
    cursor: pointer;
}

.catalog-card summary::-webkit-details-marker {
    display: none;
}



.catalog-card span {
    position: relative;
    z-index: 3;

    max-width: 100%;

    color: #171717;
    font-size: 18px;
    line-height: 1.02;
    letter-spacing: -.06em;
    font-weight: 800;
}

.catalog-card strong {
    position: relative;
    z-index: 3;

    display: block;
    margin-top: 8px;

    color: rgba(17, 17, 17, .46);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.catalog-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;

    width: 100px;
    height: 115px;

    object-fit: cover;
    object-position: center top;

    pointer-events: none;
}

.catalog-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;



    pointer-events: none;
}

.catalog-sub {
    position: relative;
    z-index: 4;

    padding: 16px 14px 16px;
    display: grid;
    gap: 7px;
}

.catalog-sub a {
    min-height: 42px;
    padding: 0 14px;

    border-radius: 12px;
    background: rgba(255,255,255,.82);

    display: flex;
    align-items: center;

    color: #333333;
    font-size: 15px;
}

.catalog-sub a:first-child {
    color: #111111;
    font-weight: 800;
}

/* SEARCH CATEGORY CARDS */

.search-category-card {
    position: relative;

    min-height: 92px;

    overflow: hidden;
    background: #f5f5f5;
    color: #222222;
}

.search-category-card summary,
.search-category-link {
    position: relative;

    min-height: 92px;
    padding: 20px 22px;

    display: flex;
    align-items: center;

    list-style: none;
}

.search-category-card summary {
    cursor: pointer;
}

.search-category-card summary::-webkit-details-marker {
    display: none;
}

.search-category-card span {
    position: relative;
    z-index: 2;

    max-width: 64%;

    color: #222222;
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -.05em;
    font-weight: 600;
}

.search-category-card img {
    position: absolute;
    right: 0;
    bottom: -8px;

    width: 38%;
    height: 116%;

    object-fit: contain;
    object-position: right bottom;

    pointer-events: none;
}

.search-sub {
    padding: 16px;
    display: grid;
    gap: 7px;
}

.search-sub a {
    min-height: 42px;
    padding: 0 14px;

    border-radius: 4px;
    background: rgba(255,255,255,.82);

    display: flex;
    align-items: center;

    color: #333333;
    font-size: 15px;
}

.search-sub a:first-child {
    color: #111111;
    font-weight: 700;
}

/* SEARCH */

.search-top {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.search-box {
    height: 58px;
    padding: 0 18px;

    border: 1px solid #d8d8d8;
    background: #ffffff;

    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box svg {
    width: 20px;
    height: 20px;
    flex: 0 0 29px;

    fill: none;
    stroke: #111111;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-box input {
    width: 100%;

    border: 0;
    outline: 0;
    background: transparent;

    color: #111111;
    font-size: 18px;
}

.search-box input::placeholder {
    color: #b4b4b4;
}

.search-tabs {
    height: 62px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #d8d8d8;
}

.search-tabs a,
.search-tabs button {
    position: relative;

    border: 0;
    background: transparent;
    color: #222222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.search-tabs a.active::after,
.search-tabs button.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;

    height: 3px;
    background: #111111;
}

.search-quick {
    margin: 0;
    padding: 18px 30px 8px;
}

.search-categories {
    padding: 12px 30px 38px;

    display: grid;
    gap: 10px;
}

/* SHEETS */

.sheet-head {
    min-height: 112px;
    padding: 44px 24px 20px;

    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;

    border-bottom: 1px solid #eeeeee;
}

.sheet-head h2 {
    margin: 0;

    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.account-hero {
    padding: 28px 24px 26px;
    border-bottom: 1px solid #eeeeee;
}

.account-hero h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.account-hero p {
    margin: 12px 0 22px;

    color: #666666;
    font-size: 16px;
    line-height: 1.45;
}

.black-button {
    width: 100%;
    height: 52px;

    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;

    font-size: 16px;
}

.sheet-list {
    display: grid;
}

.sheet-list a {
    min-height: 68px;
    padding: 0 24px;

    border-bottom: 1px solid #eeeeee;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 18px;
    font-weight: 700;
}

.sheet-list span {
    color: #999999;
}

.empty-layer {
    padding: 80px 24px;

    text-align: center;
    color: #999999;
    font-size: 18px;
}

/* FOOTER */

.site-footer {
    padding: 62px 52px 20px;

    border-top: 1px solid var(--line);

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;

    background: #ffffff;
}

.footer-col {
    align-content: start;
}

.footer-col h3 {
    margin: 0 0 10px;

    font-size: 16px;
    line-height: 1.2;
}

.footer-links {
    display: grid;
    gap: 14px;
}

.footer-col a {
    color: #4d4d4d;
    font-size: 15px;
}

.footer-accordion {
    display: grid;
    gap: 14px;
}

.footer-accordion summary {
    list-style: none;
    cursor: default;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

/* Десктоп: плюс не показываем */
.footer-accordion summary span {
    display: none;
}

/* Мобилка: футер становится аккордеоном */
@media (max-width: 899px) {
    .footer-accordion {
        gap: 0;
        border-bottom: 1px solid #eeeeee;
        padding: 0;
    }

    .footer-accordion summary {
        min-height: 54px;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .footer-accordion summary h3 {
        margin: 0;
    }

    .footer-accordion summary span {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;

        position: relative;
        display: block;
    }

    .footer-accordion summary span::before,
    .footer-accordion summary span::after {
        content: "";

        position: absolute;
        left: 50%;
        top: 50%;

        width: 10px;
        height: 2px;

        background: #807f7f;
        border-radius: 999px;

        transform: translate(-50%, -50%);
    }

    .footer-accordion summary span::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .footer-accordion[open] summary span::after {
        opacity: 0;
    }

    .footer-accordion .footer-links {
        padding: 0 0 18px;
    }
}

.footer-telegram-link {
    min-height: 64px;
    padding: 0 0 14px;

    border-bottom: 1px solid #999999;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
    gap: 14px;

    color: #111111;
}

.footer-telegram-link span {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.footer-telegram-link strong {
    color: #111111;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
}

.footer-telegram-link em {
    color: #777777;
    font-size: 14px;
    line-height: 1.35;
    font-style: normal;
}

.footer-telegram-link b {
    width: 38px;
    height: 38px;

    border-radius: 50%;
    background: #111111;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    transition:
        transform .22s ease,
        background .22s ease;
}

.footer-telegram-link:hover b {
    transform: translateX(4px);
    background: #000000;
}

.footer-app-buttons {
    margin-top: 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-store-btn {
    height: 48px;
    padding: 0 16px;

    border-radius: 4px;
    border: 1px solid #111111;
    background: #ffffff;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.footer-store-btn svg {
    width: 22px;
    height: 22px;

    fill: currentColor;
    stroke: none;
}

body.pwa .footer-app-buttons {
    display: none;
}

.footer-socials {
    margin-top: 26px;

    display: flex;
    gap: 18px;
}

.footer-social-icons {
    align-items: center;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #4a4343;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-icons a[aria-label="Facebook"] svg {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    grid-column: 1 / -1;

    margin-top: 10px;
    padding-top: 28px;

    border-top: 1px solid #eeeeee;

    display: flex;
    justify-content: center;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.footer-bottom__links a {
    color: #4d4d4d;
    font-size: 15px;
}

.footer-bottom__links a:hover {
    color: #111111;
}

.footer-bottom__sep {
    color: #9b9b9b;
}

/* MOBILE DOCK */

.mobile-dock {
    display: none;
}

/* TABLET */

@media (max-width: 1180px) {
    .header-search-mobile {
        display: flex;
        position: absolute;
        left: 82px;
        top: 50%;

        transform: translateY(-50%);
    }

    .header-search-desktop {
        display: none;
    }

    .header-burger {
        margin-right: 0;
    }

    .product-card,
    .more-card {
        flex-basis: calc((100% - 28px) / 3);
    }
}

/* MOBILE */

@media (max-width: 899px) {
    body {
        padding-bottom: calc(78px + var(--safe-bottom));
    }

    .desktop-only {
        display: none;
    }

    .site-header {
        height: calc(76px + var(--safe-top));
        padding: var(--safe-top) 24px 0;

        color: #ffffff;
    }

    .site-header.is-dark,
    body.layer-open .site-header {
        color: #111111;
        background: rgba(255,255,255,.94);
    }
    
    .site-header.is-scrolled {
        color: #111111;
        background: transparent;
    }

    .header-logo {
        width: 120px;
    }

    .header-logo img {
        width: 120px;
    }

    .header-actions {
        gap: 14px;
    }

    .header-search-mobile {
        left: 70px;
    }

    .header-icon {
        width: 25px;
        height: 25px;
    }

    .hero {
        height: 74vh;
        min-height: 520px;
        max-height: 720px;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: .22em;
    }

    .hero-kicker {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .hero p {
        margin-top: 18px;
        font-size: 17px;
    }

    .hero-actions {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        width: min(290px, calc(100vw - 48px));
    }

    .hero-actions a,
    .hero-actions button {
        justify-content: center;
        height: 46px;
    }

    .home-section {
        padding: 30px 16px 36px;
    }

    .section-head h2 {
        font-size: 16px;
    }

    .section-head h2::after {
        font-size: 18px;
    }

    .section-link {
        font-size: 13px;
    }

    .product-row {
        gap: 8px;
    }

    .product-card,
    .more-card {
        flex: 0 0 42%;
        min-width: 148px;
    }

    .product-card__overlay {
        position: static;

        padding: 9px 2px 0;
        min-height: 0;

        background: transparent;

        transform: none;
        opacity: 1;
    }

    .product-card__name {
        font-size: 13px;
        color: #555555;
    }

    .product-card__prices {
        gap: 6px;
    }

    .product-card__prices b,
    .product-card__prices em {
        font-size: 12px;
    }

    .product-card__heart {
        right: 8px;
        top: 8px;
    }

    .slider-arrow {
        display: none;
    }

    .wide-banner {
        min-height: 505px;
        padding: 36px 18px;
        background-image: var(--banner-mobile);
    }

    .wide-banner span {
        font-size: 12px;
    }

    .wide-banner h2 {
        font-size: 46px;
    }

    .brand-text {
        padding: 56px 24px 64px;
    }
    
    .brand-text__inner {
        max-width: none;
    }
    
    .brand-text h2 {
        font-size: 24px;
    }
    
    .brand-text p,
    .brand-text ul {
        font-size: 16px;
        line-height: 1.55;
    }
    
    .brand-text__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .brand-text__media {
        position: static;
    }
    
    .brand-text__media img {
        aspect-ratio: 4 / 5;
    }
    
    .brand-text h2 {
        font-size: 24px;
    }
    
    .brand-text p,
    .brand-text ul {
        font-size: 14px;
        line-height: 1.55;
    }

    .site-footer {
        padding: 48px 30px 110px;
    
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    
        border-top: 1px solid #eeeeee;
    }
    
    .footer-accordion {
        border-bottom: 0;
    }
    
    .footer-accordion summary {
        min-height: 52px;
    
        display: grid;
        grid-template-columns: minmax(0, 1fr) 32px;
        align-items: center;
        gap: 14px;
    
        cursor: pointer;
    }
    
    .footer-accordion summary h3 {
        margin: 0;
    
        color: #4a4343;
        font-size: 14px;
        line-height: 1.1;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    
    .footer-accordion summary span {
        width: 32px;
        height: 32px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        color: #8a8a8a;
        font-size: 22px;
        line-height: 1;
        font-weight: 300;
    }


    
    
    .footer-links {
        padding: 10px 0 28px;
    
        display: grid;
        gap: 26px;
    }
    
    .footer-col a {
        color: #4a4343;
        font-size: 14px;
        line-height: 1.2;
    }
    
    .footer-telegram-col {
        margin-top: 34px;
    }

    .footer-accordion summary h3 {
        transition: font-weight .18s ease, color .18s ease;
    }

    .footer-accordion[open] summary h3 {
        font-weight: 700;
    }
    
    .footer-telegram-col h3 {
        margin: 0 0 24px;
    
        color: #4a4343;
        font-size: 14px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -.04em;
    }
    
    .footer-telegram-link {
        min-height: 68px;
        padding-bottom: 16px;
    }
    
    .footer-telegram-link strong {
        font-size: 14px;
    }
    
    .footer-telegram-link em {
        margin-top: 2px;
    
        font-size: 14px;
        line-height: 1.35;
    }
    
    .footer-telegram-link b {
        background: transparent;
        color: #4a4343;
    
        font-size: 28px;
    }
    
    .footer-app-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    
        margin-top: 30px;
    }

    .footer-store-btn-ios,
.footer-store-btn-android {
    display: none;
}

body.is-ios .footer-store-btn-ios {
    display: flex;
}

body.is-android .footer-store-btn-android {
    display: flex;
}
    
    .footer-store-btn {
        height: 50px;
    
        border-radius: 6px;
    
        font-size: 18px;
        font-weight: 600;
    }
    
    .footer-store-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .footer-social-icons {
        margin-top: 34px;
        justify-content: center;
        gap: 26px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 26px;
    }

    .footer-bottom__links {
        gap: 8px 10px;
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-bottom__links a {
        font-size: 14px;
    }
    
    .footer-social-icons a {
        width: 50px;
        height: 50px;
    
        color: #ffffff;
        font-size: 0;
    }
    
    .footer-social-icons svg {
        width: 28px;
        height: 28px;
    
        color: #ffffff;
    }

    .mobile-dock {
        position: fixed;
        left: 18px;
        right: 18px;
        bottom: max(4px, var(--safe-bottom));
        z-index: 200;

        height: 66px;
        padding: 6px;

        border-radius: 999px;
        background: rgba(255,255,255,.58);

        backdrop-filter: blur(10px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);

        box-shadow:
            0 18px 44px rgba(0,0,0,.16),
            inset 0 0 0 1px rgba(255,255,255,.72);

        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
    }

    .mobile-dock__item {
        position: relative;

        height: 54px;
        min-width: 0;

        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #111111;

        display: flex;
        align-items: center;
        justify-content: center;

        transition:
            background .18s ease,
            transform .18s ease;
    }

    .mobile-dock__slider {
        position: absolute;
        left: 6px;
        top: 6px;
        z-index: 0;
    
        width: calc((100% - 12px) / 5);
        height: 54px;
    
        border-radius: 999px;
        background: rgba(0,0,0,.075);
    
        transform: translateX(0);
    
        transition:
            transform .32s cubic-bezier(.22, .9, .28, 1),
            opacity .2s ease;
    
        pointer-events: none;
    }
    
    .mobile-dock__item {
        z-index: 1;
    }
    
    .mobile-dock__item.active,
    .mobile-dock__item.is-layer-active {
        background: transparent;
    }

    .mobile-dock__item:active {
        transform: scale(.94);
    }

    .mobile-dock__item svg {
        width: 25px;
        height: 25px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2.15;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .dock-badge {
        position: absolute;
        top: 8px;
        right: 18px;

        min-width: 20px;
        height: 20px;
        padding: 0 5px;

        border-radius: 999px;
        background: #214b39;
        color: #ffffff;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 11px;
        font-weight: 700;
        line-height: 1;
    }

    .layer {
        z-index: 130;
    }

    .layer-backdrop {
        background: rgba(0,0,0,.18);
    }

    .catalog-panel,
    .search-panel,
    .sheet-panel {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;

        width: 100%;
        max-width: none;
        max-height: none;

        transform: none;

        box-shadow: none;
        border: 0;

        animation: mobileLayerIn .24s ease both;
    }

    body.layer-open .mobile-dock {
        z-index: 200;
    }
    
    .search-panel,
    .sheet-panel,
    .catalog-panel {
        padding-bottom: calc(84px + var(--safe-bottom));
    }

    @keyframes mobileLayerIn {
        from {
            opacity: 0;
            transform: translateX(24px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .catalog-panel__head {
        height: calc(76px + var(--safe-top));
        padding: var(--safe-top) 24px 0;
    }

    .catalog-panel__logo {
        width: 120px;
    }

    .catalog-panel__logo img {
        width: 120px;
    }

    .catalog-panel__body {
        padding: 22px 20px calc(120px + var(--safe-bottom));
    }

    .catalog-grid {
        gap: 12px;
    }
    
    .catalog-card {
        min-height: 118px;
        border-radius: 20px;
    }
    
    .catalog-card summary,
    .catalog-card-link {
        min-height: 118px;
        padding: 22px 142px 22px 22px;
    }
    
    .catalog-card span {
        font-size: 16px;
        line-height: .98;
        max-width: 100%;
    }
    
    .catalog-card strong {
        font-size: 13px;
    }
    
    .catalog-card img {
        right: 0;
        bottom: 0;
    
        width: 100px;
        height: 120px;
    
        object-fit: cover;
        object-position: center top;
    }
    
    .search-category-card {
        min-height: 104px;
    }
    
    .search-category-card summary,
    .search-category-link {
        min-height: 104px;
        padding: 22px 24px;
    }
    
    .search-category-card span {
        font-size: 16px;
        max-width: 64%;
    }
    
    .search-category-card img {
        width: 26%;
    }

    .search-top {
        padding: calc(18px + var(--safe-top)) 18px 18px;
    }

    .search-tabs {
        height: 64px;
    }

    .search-tabs a,
    .search-tabs button {
        font-size: 17px;
    }

    .search-categories {
        padding: 12px 30px calc(60px + var(--safe-bottom));
    }

    .sheet-head {
        min-height: calc(112px + var(--safe-top));
        padding-top: calc(44px + var(--safe-top));
    }


    .catalog-page {
        padding-top: calc(96px + var(--safe-top));
        padding-bottom: calc(130px + var(--safe-bottom));
    }

    .catalog-head {
        padding: 0 24px 24px;
    }

    .catalog-breadcrumbs {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .catalog-title {
        font-size: 18px;
    }



    .catalog-chip {
        height: 30px;
        padding: 0 18px;
        font-size: 12px;
    }


    .catalog-count {
        font-size: 16px;
    }

    .catalog-products-section {
        padding: 0;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 2px;
    }

    .catalog-products-grid.is-split-view {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .catalog-products-grid.is-split-view .catalog-product-photo {
        aspect-ratio: 3 / 4.25;
    }

    .catalog-product-photo {
        aspect-ratio: 3 / 4.55;
        border-radius: 4px;
    }

    .catalog-product-info {
        padding: 9px 8px 0;
    }

    .catalog-product-name {
        margin-bottom: 9px;
        color: #606060;
        font-size: 13px;
    }

    .catalog-product-prices {
        gap: 6px;
    }

    .catalog-product-price {
        gap: 4px;
    }

    .catalog-product-price span {
        font-size: 12px;
    }

    .catalog-product-price b {
        font-size: 13px;
    }

    .catalog-product-heart {
        right: 8px;
        top: 8px;
    }

    .catalog-product-heart,
    .catalog-product-heart svg {
        width: 32px;
        height: 32px;
    }



    .page-catalog .site-header {
        transition:
            transform .22s ease,
            opacity .22s ease;
    }
    
    .page-catalog.catalog-header-hidden .site-header {
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
    }
    

    .catalog-sticky-bar {
        top: calc(76px + var(--safe-top));
    
        min-height: auto;
        padding: 0;
    
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
    }
    
    .page-catalog.catalog-header-hidden .catalog-sticky-bar {
        top: 0;
    }
    
    .catalog-chips {
        width: 100%;
        padding: 12px 0 10px 24px;
        gap: 8px;
    
        display: flex;
        align-items: center;
    
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .catalog-tools {
        width: 100%;
        height: 54px;
        padding: 0 24px;
    
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 14px;
    
        background: rgba(255,255,255,.96);
        border-top: 1px solid #eeeeee;
    }
    
    .catalog-view-icons {
        justify-self: start;
        gap: 14px;
    }
    
    .catalog-count {
        display: block;
        justify-self: end;
    
        padding-left: 0;
        border-left: 0;
    
        font-size: 14px;
        color: #9b9b9b;
    }
    
    .catalog-filter-btn {
        justify-self: end;
    
        width: 34px;
        height: 34px;
    }

    
    .catalog-view-icons {
        gap: 12px;
    }
    
    .catalog-view-btn {
        width: 24px;
        height: 24px;
    }
    

    
    .catalog-filter-btn {
        width: 34px;
        height: 34px;
    }
    
    .catalog-products-section {
        padding-top: 0;
    }


    .catalog-filter-head {
        min-height: calc(76px + var(--safe-top));
        padding: calc(16px + var(--safe-top)) 18px 16px;
    }
    
    .catalog-filter-form {
        padding: 22px 18px 120px;
    }
    
    .catalog-filter-actions {
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }




}




/* =====================================================
   CLIENT ORDER VIEW — fixed readable header
===================================================== */

.page-order-view .site-header,
.page-order-view [data-header] {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.page-order-view .site-header a,
.page-order-view .site-header button,
.page-order-view [data-header] a,
.page-order-view [data-header] button {
    color: #111;
}

.page-order-view .site-header svg,
.page-order-view [data-header] svg {
    color: #111;
}






/* =====================================================
   ACCOUNT LAYER — compact profile
===================================================== */

.account-layer .sheet-panel {
    background: #f5f5f5;
}

.account-panel {
    overflow: hidden;
}

.account-head {
    position: sticky;
    top: 0;
    z-index: 5;

    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;

    min-height: 64px;
    padding: 8px 16px;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.account-head h2 {
    margin: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
}

.account-head-bell {
    position: relative;

    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.account-head-bell svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #111;
    stroke-width: 2;
}

.account-head-bell span,
.account-tile-notify i {
    position: absolute;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e6005c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    font-style: normal;
}

.account-head-bell span {
    top: 3px;
    right: 3px;
}

.account-scroll {
    height: calc(100dvh - 64px);
    overflow-y: auto;
    padding: 20px 16px 115px;
}

.account-user {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.account-avatar {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0c7b7, #e83d7e);
}

.account-avatar svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
}

.account-user strong {
    display: block;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.15;
}

.account-user span {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 14px;
}

.account-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.account-tile {
    position: relative;

    min-height: 106px;
    border: 0;
    border-radius: 17px;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #111;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.account-tile svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #111;
    stroke-width: 2;
}

.account-tile b {
    font-size: 26px;
    line-height: 1;
    font-weight: 650;
}

.account-tile em {
    font-style: normal;
    color: #777;
    font-size: 12px;
    font-weight: 500;
}

.account-tile-notify i {
    top: 10px;
    right: 12px;
}

.account-section {
    margin-top: 24px;
}

.account-section h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
}

.account-list {
    overflow: hidden;
    border-radius: 17px;
    background: #fff;
}

.account-list a {
    min-height: 58px;
    padding: 0 16px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;

    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.account-list a:last-child {
    border-bottom: 0;
}

.account-list b {
    color: #777;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
}

.account-login-btn {
    width: 100%;
    height: 52px;
    margin-top: 26px;

    border: 0;
    border-radius: 16px;
    background: #111;
    color: #fff;

    font-size: 15px;
    font-weight: 700;
}

/* notifications */

.account-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-notification-item {
    padding: 14px 15px;
    border-radius: 16px;
    background: #fff;
}

.account-notification-item.is-new {
    box-shadow: inset 3px 0 0 #e6005c;
}

.account-notification-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.account-notification-item span {
    display: block;
    margin-top: 5px;
    color: #555;
    font-size: 14px;
    line-height: 1.35;
}

.account-notification-item em {
    display: block;
    margin-top: 8px;
    color: #999;
    font-size: 12px;
    font-style: normal;
}

/* account badge */

.account-badge,
.account-small-badge {
    background: #e6005c;
}

.account-layer [hidden] {
    display: none !important;
}

.account-notification-item {
    width: 100%;
    border: 0;
    text-align: left;
}

.account-notification-empty {
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    color: #777;
    font-size: 14px;
    text-align: center;
}


.account-login-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-login-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.account-login-form label span {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.account-login-form input {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    padding: 0 14px;
    font-size: 16px;
    outline: none;
}

.account-login-form input:focus {
    box-shadow: 0 0 0 2px #111 inset;
}

.account-login-error {
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffe8e8;
    color: #b42318;
    font-size: 14px;
    font-weight: 600;
}

.account-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.account-auth {
    margin-top: 24px;
}

.account-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;

    padding: 4px;
    border-radius: 18px;
    background: rgba(0,0,0,.06);
}

.account-auth-tabs button {
    height: 44px;

    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #555555;

    font-size: 15px;
    font-weight: 800;
}

.account-auth-tabs button.is-active {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.account-auth-help {
    color: #777777;
    font-size: 13px;
    line-height: 1.35;
}

.account-type-title {
    margin-top: 2px;

    color: #111111;
    font-size: 15px;
    font-weight: 800;
}

.account-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.account-type-option {
    cursor: pointer;
}

.account-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-option span {
    min-height: 46px;
    padding: 0 14px;

    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.1);
    background: #ffffff;
    color: #333333;

    display: flex;
    align-items: center;

    font-size: 15px;
    font-weight: 700;
}

.account-type-option input:checked + span {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.account-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.account-auth-actions {
    margin-top: 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.account-auth-actions .account-login-btn {
    height: 54px;
    margin: 0;

    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 800;
}

.account-register-open-btn {
    background: #ffffff;
    color: #111111;
    border: 1px solid #dddddd;
}

.account-notification-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-notification-group + .account-notification-group {
    margin-top: 18px;
}

.account-notification-group-title {
    padding: 0 4px;
    color: #777;
    font-size: 13px;
    font-weight: 700;
}

.account-notification-item.is-read {
    opacity: 0.65;
    box-shadow: none;
}

.account-notification-item.is-read strong,
.account-notification-item.is-read span {
    color: #777;
}


.account-notification-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 4px 2px;
}

.account-notification-group-head strong {
    display: inline;
    font-size: 15px;
    font-weight: 800;
    color: #555;
}

.account-notification-group-head span {
    display: inline;
    margin-left: 6px;
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.account-notification-group-head button {
    appearance: none;
    -webkit-appearance: none;

    border: 0;
    outline: none;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.06);
    color: #111;

    padding: 7px 11px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
}

.account-notification-group-head button:active {
    transform: scale(0.96);
}




/* =====================================================
   ACCOUNT ORDERS — CLEAN PREMIUM
===================================================== */

.page-account-orders {
    background: #f7f7f7;
}

.page-account-orders .page-content {
    padding-top: 0;
}

.account-orders-page {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    padding: 118px 0 130px;
}

/* HEADER */

.account-orders-hero {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.account-orders-back {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #111;

    text-decoration: none;
    font-size: 24px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.account-orders-hero h1 {
    margin: 0;

    font-size: 34px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #111;
}

.account-orders-hero p {
    margin: 7px 0 0;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #777;
}

/* SEARCH */

.account-orders-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.account-orders-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 10px;
}

.account-orders-search input {
    width: 100%;
    height: 52px;

    border: 1px solid rgba(0, 0, 0, 0.06);
    outline: none;
    border-radius: 12px;

    background: #fff;
    color: #111;

    padding: 0 16px;

    font-size: 15px;
    font-weight: 500;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.025);
}

.account-orders-search input:focus {
    border-color: rgba(0, 0, 0, 0.22);
}

.account-orders-search input::placeholder {
    color: #9a9a9a;
}

.account-orders-search button {
    height: 52px;

    border: 0;
    border-radius: 12px;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 750;

    cursor: pointer;
}

/* FILTER TABS */

.account-orders-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

    padding-bottom: 22px;
    margin-bottom: 2px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.account-orders-tabs a {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.07);

    background: #fff;
    color: #222;

    padding: 0 14px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;
}

.account-orders-tabs a:hover {
    border-color: rgba(0, 0, 0, 0.18);
}

.account-orders-tabs a.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ACTIVE FILTER */

.account-orders-active-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin: 18px 0;
    padding: 13px 16px;

    border-radius: 12px;
    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.06);
}

.account-orders-active-filter span {
    color: #555;
    font-size: 14px;
    font-weight: 550;
}

.account-orders-active-filter a {
    color: #b42323;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

/* LIST */

.account-orders-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

/* CARD */

.account-order-card {
    background: #fff;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.055);

    padding: 22px 24px;

    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.035);
}

.account-order-card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 18px;

    padding-bottom: 18px;
    margin-bottom: 18px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-order-card__top h2 {
    margin: 0;

    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #111;
}

.account-order-card__top span {
    display: block;
    margin-top: 6px;

    color: #777;
    font-size: 14px;
    font-weight: 500;
}

/* STATUS */

.account-order-status {
    min-height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    padding: 0 13px;

    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.account-order-status.is-new {
    background: #f2f2f2;
    color: #444;
}

.account-order-status.is-build {
    background: #fff2dc;
    color: #9a5a00;
}

.account-order-status.is-prepare {
    background: #edf4ff;
    color: #2452a3;
}

.account-order-status.is-sent {
    background: #e8f8ee;
    color: #18753a;
}

.account-order-status.is-exchange {
    background: #eef0ff;
    color: #3040aa;
}

.account-order-status.is-return,
.account-order-status.is-cancel {
    background: #ffeaea;
    color: #b42323;
}

/* INFO AREA */

.account-order-card__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1.2fr 1.35fr;
    gap: 0;

    margin-bottom: 18px;

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
}

.account-order-info-box {
    min-width: 0;

    padding: 15px 16px;

    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.account-order-info-box:last-child {
    border-right: 0;
}

.account-order-info-box span {
    display: block;

    margin-bottom: 7px;

    color: #8a8a8a;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 650;
}

.account-order-info-box strong {
    display: block;

    color: #111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 750;

    overflow-wrap: anywhere;
}

/* PAYMENT STATES */

.account-order-info-box.is-paid,
.account-order-ttn.is-ready {
    background: #f0faf3;
}

.account-order-info-box.is-paid strong,
.account-order-ttn.is-ready strong {
    color: #18753a;
}

.account-order-info-box.is-checking,
.account-order-info-box.is-wait,
.account-order-ttn.is-wait {
    background: #fff8ec;
}

.account-order-info-box.is-checking strong,
.account-order-info-box.is-wait strong,
.account-order-ttn.is-wait strong {
    color: #9a5a00;
}

/* BOTTOM */

.account-order-card__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.account-order-client {
    min-width: 0;
}

.account-order-client strong {
    display: block;

    color: #111;
    font-size: 15px;
    font-weight: 750;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-order-client span {
    display: block;

    margin-top: 4px;

    color: #8a8a8a;
    font-size: 13px;
    font-weight: 500;
}

.account-order-card__button {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111;
    color: #fff;

    padding: 0 22px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 750;
}

/* EMPTY */

.account-orders-empty {
    margin-top: 24px;

    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.055);

    padding: 44px 24px;

    text-align: center;

    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.035);
}

.account-orders-empty__icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.account-orders-empty h2 {
    margin: 0 0 8px;

    color: #111;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.account-orders-empty p {
    max-width: 360px;

    margin: 0 auto 18px;

    color: #777;
    font-size: 15px;
    line-height: 1.45;
}

.account-orders-empty a {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111;
    color: #fff;

    padding: 0 18px;

    text-decoration: none;
    font-weight: 750;
}

/* MOBILE FILTER DRAWER */

.account-orders-filter-open.mobile-only {
    display: none;
}

.account-orders-filter-drawer[hidden] {
    display: none !important;
}

.account-orders-filter-drawer.is-open {
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.account-orders-filter-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.36);
}

.account-orders-filter-panel {
    position: absolute;
    right: 0;
    top: 0;

    width: min(390px, 92vw);
    height: 100%;

    background: #fff;

    border-radius: 22px 0 0 22px;

    padding: calc(20px + env(safe-area-inset-top)) 16px 20px;

    box-shadow: -18px 0 55px rgba(0, 0, 0, 0.18);

    transform: translateX(100%);
    transition: transform .24s ease;
}

.account-orders-filter-drawer.is-open .account-orders-filter-panel {
    transform: translateX(0);
}

.account-orders-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.account-orders-filter-head h2 {
    margin: 0;

    color: #111;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.account-orders-filter-head button {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f2f2f2;
    color: #111;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.account-orders-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-orders-filter-list a {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px;

    background: #f6f6f6;
    color: #111;

    padding: 0 14px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
}

.account-orders-filter-list a.is-active {
    background: #111;
    color: #fff;
}

.account-orders-filter-reset {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 14px;

    border-radius: 14px;

    background: #ffeaea;
    color: #b42323;

    text-decoration: none;

    font-weight: 750;
}

/* RESPONSIVE */

@media (min-width: 901px) {
    .account-orders-filter-drawer,
    .account-orders-filter-open {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .account-orders-page {
        width: calc(100% - 24px);
        padding: 84px 0 112px;
    }

    .account-orders-hero {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .account-orders-back {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .account-orders-hero h1 {
        font-size: 28px;
    }

    .account-orders-hero p {
        font-size: 14px;
    }

    .account-orders-toolbar {
        grid-template-columns: 1fr;
    }

    .account-orders-search {
        grid-template-columns: minmax(0, 1fr) 84px;
        gap: 8px;
    }

    .account-orders-search input {
        height: 48px;
        border-radius: 12px;
        padding: 0 13px;
        font-size: 14px;
    }

    .account-orders-search button {
        height: 48px;
        border-radius: 12px;
        padding: 0 12px;
    }

    .account-orders-filter-open.mobile-only {
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        border: 0;
        border-radius: 12px;

        background: #111;
        color: #fff;

        font-size: 14px;
        font-weight: 750;
    }

    .account-orders-filter-open span {
        height: 22px;

        display: inline-flex;
        align-items: center;

        border-radius: 999px;

        background: rgba(255, 255, 255, 0.16);

        padding: 0 8px;

        font-size: 12px;
    }

    .account-orders-tabs {
        display: none;
    }

    .account-orders-active-filter {
        border-radius: 12px;
        margin: 14px 0;
    }

    .account-order-card {
        border-radius: 16px;
        padding: 16px;
    }

    .account-order-card__top {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .account-order-card__top h2 {
        font-size: 20px;
    }

    .account-order-status {
        width: fit-content;
        min-height: 32px;
        font-size: 12px;
    }

    .account-order-card__grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .account-order-info-box {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 13px;
    }

    .account-order-info-box:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .account-order-info-box:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .account-order-info-box strong {
        font-size: 14px;
    }

    .account-order-card__bottom {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .account-order-card__button {
        width: 100%;
        height: 46px;
        border-radius: 12px;
    }

    .account-orders-filter-panel {
        top: auto;
        bottom: 0;

        width: 100%;
        height: auto;
        max-height: 86vh;

        border-radius: 22px 22px 0 0;

        transform: translateY(100%);
    }

    .account-orders-filter-drawer.is-open .account-orders-filter-panel {
        transform: translateY(0);
    }
}

/* =====================================================
   ACCOUNT ORDERS — APP STYLE
===================================================== */

.page-account-orders {
    background: #f7f7f7;
}

.page-account-orders .page-content {
    padding-top: 0;
}

.account-orders-page {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    padding: 118px 0 130px;
}

/* HEADER */

.account-orders-hero {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.account-orders-back {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #111;

    text-decoration: none;
    font-size: 24px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.account-orders-hero h1 {
    margin: 0;

    font-size: 34px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #111;
}

.account-orders-hero p {
    margin: 7px 0 0;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #777;
}

/* SEARCH */

.account-orders-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.account-orders-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 10px;
}

.account-orders-search input {
    width: 100%;
    height: 52px;

    border: 1px solid rgba(0, 0, 0, 0.06);
    outline: none;
    border-radius: 12px;

    background: #fff;
    color: #111;

    padding: 0 16px;

    font-size: 15px;
    font-weight: 500;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.025);
}

.account-orders-search input:focus {
    border-color: rgba(0, 0, 0, 0.22);
}

.account-orders-search input::placeholder {
    color: #9a9a9a;
}

.account-orders-search button {
    height: 52px;

    border: 0;
    border-radius: 12px;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 750;

    cursor: pointer;
}

/* FILTER TABS */

.account-orders-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

    padding-bottom: 22px;
    margin-bottom: 2px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.account-orders-tabs a {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.07);

    background: #fff;
    color: #222;

    padding: 0 14px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;
}

.account-orders-tabs a:hover {
    border-color: rgba(0, 0, 0, 0.18);
}

.account-orders-tabs a.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ACTIVE FILTER */

.account-orders-active-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin: 18px 0;
    padding: 13px 16px;

    border-radius: 12px;
    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.06);
}

.account-orders-active-filter span {
    color: #555;
    font-size: 14px;
    font-weight: 550;
}

.account-orders-active-filter a {
    color: #b42323;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

/* LIST */

.account-orders-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

/* CARD */

.account-order-card {
    background: #fff;

    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.055);

    padding: 22px 24px;

    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.035);
}

.account-order-card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;

    padding-bottom: 16px;
    margin-bottom: 16px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-order-title-block {
    min-width: 0;
}

.account-order-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.account-order-title-row h2 {
    margin: 0;

    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #111;
}

.account-order-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 7px;
}

.account-order-subline span {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: #777;
    font-size: 14px;
    font-weight: 500;
}

.account-order-subline span + span::before {
    content: "";

    width: 4px;
    height: 4px;

    border-radius: 50%;
    background: #d0d0d0;

    margin-right: 12px;
}

/* STATUS */

.account-order-status {
    min-height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    padding: 0 13px;

    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.account-order-status.is-new {
    background: #f2f2f2;
    color: #444;
}

.account-order-status.is-build {
    background: #fff2dc;
    color: #9a5a00;
}

.account-order-status.is-prepare {
    background: #edf4ff;
    color: #2452a3;
}

.account-order-status.is-sent {
    background: #e8f8ee;
    color: #18753a;
}

.account-order-status.is-exchange {
    background: #eef0ff;
    color: #3040aa;
}

.account-order-status.is-return,
.account-order-status.is-cancel {
    background: #ffeaea;
    color: #b42323;
}

/* MOBILE ARROW */

.account-order-mobile-open {
    display: none;
}

/* PREVIEW PHOTOS */

.account-order-preview {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;
}

.account-order-preview__item {
    position: relative;

    width: 72px;
    height: 92px;

    flex: 0 0 72px;

    overflow: hidden;

    background: #f6f6f6;
    border-radius: 10px;
}

.account-order-preview__item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.account-order-preview__item span {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.48);
    color: #fff;

    font-size: 16px;
    font-weight: 850;
}

/* INFO AREA */

.account-order-card__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1.2fr 1.35fr;
    gap: 0;

    margin-bottom: 16px;

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
}

.account-order-info-box {
    min-width: 0;

    padding: 15px 16px;

    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.account-order-info-box:last-child {
    border-right: 0;
}

.account-order-info-box span {
    display: block;

    margin-bottom: 7px;

    color: #8a8a8a;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 650;
}

.account-order-info-box strong {
    display: block;

    color: #111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 750;

    overflow-wrap: anywhere;
}

/* PAYMENT / TTN STATES */

.account-order-info-box.is-paid,
.account-order-ttn.is-ready {
    background: #f0faf3;
}

.account-order-info-box.is-paid strong,
.account-order-ttn.is-ready strong {
    color: #18753a;
}

.account-order-info-box.is-checking,
.account-order-info-box.is-wait,
.account-order-ttn.is-wait {
    background: #fff8ec;
}

.account-order-info-box.is-checking strong,
.account-order-info-box.is-wait strong,
.account-order-ttn.is-wait strong {
    color: #9a5a00;
}

/* BUTTON */

.account-order-card__button {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111;
    color: #fff;

    padding: 0 22px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 750;
}

.account-order-card__button--full {
    width: 100%;
}

/* EMPTY */

.account-orders-empty {
    margin-top: 24px;

    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.055);

    padding: 44px 24px;

    text-align: center;

    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.035);
}

.account-orders-empty__icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.account-orders-empty h2 {
    margin: 0 0 8px;

    color: #111;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.account-orders-empty p {
    max-width: 360px;

    margin: 0 auto 18px;

    color: #777;
    font-size: 15px;
    line-height: 1.45;
}

.account-orders-empty a {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111;
    color: #fff;

    padding: 0 18px;

    text-decoration: none;
    font-weight: 750;
}

/* PAGINATION */

.account-orders-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 24px;
}

.account-orders-pagination a,
.account-orders-pagination span {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    padding: 0 16px;

    font-size: 14px;
    font-weight: 750;
}

.account-orders-pagination a {
    background: #111;
    color: #fff;
    text-decoration: none;
}

.account-orders-pagination span {
    background: #fff;
    color: #777;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* MOBILE FILTER DRAWER */

.account-orders-filter-open.mobile-only {
    display: none;
}

.account-orders-filter-drawer[hidden] {
    display: none !important;
}

.account-orders-filter-drawer.is-open {
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.account-orders-filter-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.36);
}

.account-orders-filter-panel {
    position: absolute;
    right: 0;
    top: 0;

    width: min(390px, 92vw);
    height: 100%;

    background: #fff;

    border-radius: 22px 0 0 22px;

    padding: calc(20px + env(safe-area-inset-top)) 16px 20px;

    box-shadow: -18px 0 55px rgba(0, 0, 0, 0.18);

    transform: translateX(100%);
    transition: transform .24s ease;
}

.account-orders-filter-drawer.is-open .account-orders-filter-panel {
    transform: translateX(0);
}

.account-orders-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.account-orders-filter-head h2 {
    margin: 0;

    color: #111;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.account-orders-filter-head button {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f2f2f2;
    color: #111;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.account-orders-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-orders-filter-list a {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px;

    background: #f6f6f6;
    color: #111;

    padding: 0 14px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
}

.account-orders-filter-list a.is-active {
    background: #111;
    color: #fff;
}

.account-orders-filter-reset {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 14px;

    border-radius: 14px;

    background: #ffeaea;
    color: #b42323;

    text-decoration: none;

    font-weight: 750;
}

/* RESPONSIVE */

@media (min-width: 901px) {
    .account-orders-filter-drawer,
    .account-orders-filter-open {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .account-orders-page {
        width: calc(100% - 24px);
        padding: 84px 0 112px;
    }

    .account-orders-hero {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .account-orders-back {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .account-orders-hero h1 {
        font-size: 28px;
    }

    .account-orders-hero p {
        font-size: 14px;
    }

    .account-orders-toolbar {
        grid-template-columns: 1fr;
    }

    .account-orders-search {
        grid-template-columns: minmax(0, 1fr) 84px;
        gap: 8px;
    }

    .account-orders-search input {
        height: 48px;
        border-radius: 12px;
        padding: 0 13px;
        font-size: 14px;
    }

    .account-orders-search button {
        height: 48px;
        border-radius: 12px;
        padding: 0 12px;
    }

    .account-orders-filter-open.mobile-only {
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        border: 0;
        border-radius: 12px;

        background: #111;
        color: #fff;

        font-size: 14px;
        font-weight: 750;
    }

    .account-orders-filter-open span {
        height: 22px;

        display: inline-flex;
        align-items: center;

        border-radius: 999px;

        background: rgba(255, 255, 255, 0.16);

        padding: 0 8px;

        font-size: 12px;
    }

    .account-orders-tabs {
        display: none;
    }

    .account-orders-active-filter {
        border-radius: 12px;
        margin: 14px 0;
    }

    .account-orders-list {
        gap: 10px;
        margin-top: 16px;
    }

    .account-order-card {
        position: relative;

        border-radius: 0;
        border-left: 3px solid #18bf00;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);

        padding: 16px 14px 17px;

        box-shadow: none;
    }

    .account-order-card__top {
        grid-template-columns: minmax(0, 1fr) 34px;
        align-items: flex-start;

        gap: 10px;

        padding-bottom: 0;
        margin-bottom: 10px;

        border-bottom: 0;
    }

    .account-order-title-row {
        display: block;
    }

    .account-order-title-row h2 {
        font-size: 19px;
        line-height: 1.25;
    }

    .account-order-status {
        width: fit-content;

        min-height: 0;

        margin-top: 8px;
        padding: 0;

        background: transparent !important;
        color: #18bf00;

        font-size: 18px;
        font-weight: 500;
    }

    .account-order-subline {
        margin-top: 5px;
    }

    .account-order-subline span {
        font-size: 15px;
    }

    .account-order-subline span + span::before {
        display: none;
    }

    .account-order-mobile-open {
        width: 34px;
        height: 34px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        background: transparent;
        color: #777;

        padding: 0;
    }

    .account-order-mobile-open svg {
        width: 23px;
        height: 23px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .account-order-preview {
        gap: 12px;
        margin: 14px 0 12px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .account-order-preview::-webkit-scrollbar {
        display: none;
    }

    .account-order-preview__item {
        width: 58px;
        height: 78px;
        flex-basis: 58px;

        border-radius: 0;
        background: #f7f7f7;
    }

    .account-order-card__grid {
        grid-template-columns: 1fr 1fr;

        border-radius: 0;
        border: 0;

        margin-bottom: 14px;

        background: transparent;
    }

    .account-order-info-box {
        border: 0;
        background: transparent !important;

        padding: 4px 0;
    }

    .account-order-info-box span {
        margin-bottom: 4px;
        font-size: 13px;
        font-weight: 400;
    }

    .account-order-info-box strong {
        font-size: 16px;
        font-weight: 500;
    }

    .account-order-info-box.is-paid strong,
    .account-order-ttn.is-ready strong {
        color: #18bf00;
    }

    .account-order-info-box.is-checking strong,
    .account-order-info-box.is-wait strong,
    .account-order-ttn.is-wait strong {
        color: #9a5a00;
    }

    .account-order-card__button {
        display: none;
    }

    .account-orders-pagination {
        justify-content: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .account-orders-pagination a,
    .account-orders-pagination span {
        width: 100%;
    }

    .account-orders-filter-panel {
        top: auto;
        bottom: 0;

        width: 100%;
        height: auto;
        max-height: 86vh;

        border-radius: 22px 22px 0 0;

        transform: translateY(100%);
    }

    .account-orders-filter-drawer.is-open .account-orders-filter-panel {
        transform: translateY(0);
    }
}


/* =====================================================
   ACCOUNT ORDERS — STATUS BAR + CHIPS
===================================================== */

/* Цветная полоса карточки по статусу */

@media (max-width: 900px) {
    .account-order-card {
        border-left-width: 4px;
        border-left-style: solid;
    }

    .account-order-card.is-new {
        border-left-color: #8f8f8f;
    }

    .account-order-card.is-build {
        border-left-color: #d98a00;
    }

    .account-order-card.is-prepare {
        border-left-color: #2452a3;
    }

    .account-order-card.is-sent {
        border-left-color: #18a84a;
    }

    .account-order-card.is-exchange {
        border-left-color: #4b5bdc;
    }

    .account-order-card.is-return,
    .account-order-card.is-cancel {
        border-left-color: #d92d20;
    }
}

/* Статус заказа как красивый бейдж */

.account-order-status {
    gap: 7px;
}

.account-order-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

@media (max-width: 900px) {
    .account-order-status {
        display: inline-flex !important;
        align-items: center;
        gap: 7px;

        min-height: 34px;
        margin-top: 10px;

        padding: 0 12px !important;
        border-radius: 999px;

        font-size: 14px !important;
        line-height: 1;
        font-weight: 800 !important;

        background: #f2f2f2 !important;
    }

    .account-order-status.is-new {
        color: #555 !important;
        background: #f2f2f2 !important;
    }

    .account-order-status.is-build {
        color: #9a5a00 !important;
        background: #fff0d8 !important;
    }

    .account-order-status.is-prepare {
        color: #2452a3 !important;
        background: #e9f1ff !important;
    }

    .account-order-status.is-sent {
        color: #18753a !important;
        background: #e8f8ee !important;
    }

    .account-order-status.is-exchange {
        color: #3040aa !important;
        background: #edf0ff !important;
    }

    .account-order-status.is-return,
    .account-order-status.is-cancel {
        color: #b42323 !important;
        background: #ffe8e8 !important;
    }
}

/* Оплата и ТТН как аккуратные чипсы */

@media (max-width: 900px) {
    .account-order-card__grid {
        gap: 8px 12px;
    }

    .account-order-info-box {
        min-width: 0;
    }

    .account-order-info-box span {
        color: #8a8a8a;
        font-size: 13px;
        line-height: 1.15;
        font-weight: 600;
    }

    .account-order-info-box strong {
        display: inline-flex;
        align-items: center;

        min-height: 30px;
        max-width: 100%;

        border-radius: 999px;
        padding: 0 10px;

        background: #f2f2f2;
        color: #111;

        font-size: 14px;
        line-height: 1;
        font-weight: 800;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .account-order-info-box:first-child strong,
    .account-order-info-box:nth-child(2) strong {
        background: transparent;
        padding: 0;
        border-radius: 0;

        font-size: 17px;
        font-weight: 700;
    }

    .account-order-payment.is-paid strong,
    .account-order-ttn.is-ready strong {
        color: #18753a;
        background: #e8f8ee;
    }

    .account-order-payment.is-checking strong,
    .account-order-payment.is-wait strong,
    .account-order-ttn.is-wait strong {
        color: #9a5a00;
        background: #fff0d8;
    }

    .account-order-ttn strong {
        max-width: 170px;
    }
}

/* Фото чуть аккуратнее */

@media (max-width: 900px) {
    .account-order-preview__item {
        width: 62px;
        height: 84px;
        flex-basis: 62px;

        border-radius: 6px;
        background: #f4f4f4;
    }

    .account-order-preview__item img {
        object-fit: cover;
    }

    .account-order-preview__item span {
        font-size: 14px;
        font-weight: 800;
    }
}

/* Стрелка аккуратнее */

@media (max-width: 900px) {
    .account-order-mobile-open {
        color: #9a9a9a;
        transition: transform .18s ease, color .18s ease;
    }

    .account-order-mobile-open:active {
        transform: scale(0.92);
        color: #111;
    }
}



/* =====================================================
   ACCOUNT ORDERS — STATIC PHOTO
===================================================== */

.account-orders-page .account-order-photo {
    width: 64px;
    height: 84px;
    max-width: 64px;
    max-height: 84px;

    margin: 12px 0 14px;

    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
}

.account-orders-page .account-order-photo img {
    width: 100%;
    height: 100%;
    max-width: none;

    display: block;
    object-fit: cover;
}

@media (max-width: 700px) {
    .account-orders-page .account-order-photo {
        width: 58px;
        height: 76px;
        max-width: 58px;
        max-height: 76px;

        margin: 10px 0 12px;
        border-radius: 10px;
    }
}






/* =====================================================
   INFO PAGE — CLEAN DOCUMENT STYLE
===================================================== */

.page-info,
.page-info .page-content {
    background: #f5f5f6;
}

.page-info .site-header {
    color: #111111;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #e9e9e9;
}

.page-info .header-logo img {
    filter: none;
}

.info-page {
    min-height: 100vh;
    padding: 100px 24px 80px;
    background: #f5f5f6;
}

.info-page__hero,
.info-page__content {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
}

/* Верх страницы */

.info-page__hero {
    margin-bottom: 18px;
}

.info-page__back {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e4e4e4;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;

    font-size: 22px;
    line-height: 1;

    transition:
        transform .18s ease,
        border-color .18s ease;
}

.info-page__back:hover {
    transform: translateX(-2px);
    border-color: #bbbbbb;
}

.info-page__hero h1 {
    max-width: 760px;
    margin: 0;

    color: #111111;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
    text-transform: none;
}

/* Сам документ */

.info-page__content {
    padding: 34px 42px 44px;

    border: 1px solid #e9e9e9;
    border-radius: 14px;
    background: #ffffff;
    color: #252525;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .025);
}

.info-page__content h2 {
    margin: 0 0 20px;

    color: #111111;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: -.025em;
    text-transform: none;
}

.info-page__content h2:not(:first-child) {
    margin-top: 36px;
}

/* Разделы оферты */

.info-page__content h3 {
    margin: 32px 0 12px;
    padding-top: 24px;

    border-top: 1px solid #eeeeee;

    color: #111111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
    letter-spacing: -.015em;
}

.info-page__content h3:first-of-type {
    margin-top: 24px;
    padding-top: 0;
    border-top: 0;
}

.info-page__lead {
    margin: 0 0 26px !important;
    padding: 15px 18px;

    border-radius: 10px;
    background: #f6f6f7;
    color: #222222 !important;
}

.info-page__lead strong {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

/* Основной текст */

.info-page__content p,
.info-page__content li {
    color: #333333;
    font-size: 15px;
    line-height: 1.65;
}

.info-page__content p {
    margin: 0 0 14px;
}

.info-page__content ul,
.info-page__content ol {
    margin: 10px 0 18px;
    padding-left: 22px;
}

.info-page__content li {
    margin-bottom: 7px;
    padding-left: 2px;
}

.info-page__content li::marker {
    color: #777777;
}

.info-page__content strong {
    color: #111111;
    font-weight: 700;
}

.info-page__content em {
    color: #606060;
    font-style: italic;
}

/* Служебные блоки остальных инфостраниц */

.info-page__green-link {
    color: #008a4a;
    font-weight: 700;
}

.info-page__danger {
    color: #e5241f !important;
}

.info-page__card {
    margin: 18px 0;
    padding: 18px 20px;

    border: 1px solid #ececec;
    border-radius: 12px;
    background: #f8f8f8;
}

.info-contact-block {
    margin-bottom: 28px;
}

.info-contact-center {
    margin-top: 34px;
    text-align: center;
}

.info-contact-actions {
    margin-top: 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.info-contact-actions a {
    min-height: 48px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #111111;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

/* Планшет */

@media (max-width: 900px) {
    .info-page {
        padding-top: 92px;
    }

    .info-page__hero h1 {
        font-size: 29px;
    }
}

/* Мобильный */

@media (max-width: 700px) {
    .info-page {
        padding: 82px 12px 72px;
    }

    .info-page__hero {
        margin-bottom: 14px;
    }

    .info-page__back {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .info-page__hero h1 {
        font-size: 25px;
        line-height: 1.1;
        letter-spacing: -.025em;
    }

    .info-page__content {
        padding: 24px 18px 30px;

        border-radius: 12px;
        box-shadow: none;
    }

    .info-page__content h2 {
        margin-bottom: 18px;
        font-size: 21px;
    }

    .info-page__content h3 {
        margin-top: 26px;
        padding-top: 20px;

        font-size: 17px;
        line-height: 1.35;
    }

    .info-page__lead {
        margin-bottom: 22px !important;
        padding: 13px 14px;
    }

    .info-page__lead strong {
        font-size: 14px;
    }

    .info-page__content p,
    .info-page__content li {
        font-size: 14px;
        line-height: 1.6;
    }

    .info-page__content p {
        margin-bottom: 13px;
    }

    .info-page__content ul,
    .info-page__content ol {
        padding-left: 19px;
    }

    .info-contact-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* =====================================================
   ACCOUNT INFO VIEWS
===================================================== */

.account-list button {
    width: 100%;
    min-height: 68px;
    padding: 0 24px;

    border: 0;
    border-bottom: 1px solid #eeeeee;
    background: transparent;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;
    font-size: 15px;
    font-weight: 500;
}

.account-list button b {
    color: #999;
    font-size: 28px;
    font-weight: 400;
}

.account-info-view {
    padding: 0;
}

.account-info-content {
    padding: 24px;
}

.account-info-content h2 {
    margin: 0 0 18px;

    color: #111;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.account-info-content h2:not(:first-child) {
    margin-top: 34px;
}

.account-info-content h3 {
    margin: 26px 0 10px;

    color: #111;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.25;
}

.account-info-content p,
.account-info-content li {
    color: #111;
    font-size: 14px;
    line-height: 1.55;
}

.account-info-content p {
    margin: 0 0 14px;
}

.account-info-content ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.account-info-content hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.account-info-content .info-page__green-link {
    color: #008a4a;
    font-weight: 700;
}

.account-info-content .info-page__danger {
    color: #ff1e12 !important;
}

.account-info-content .info-contact-center {
    text-align: center;
}

.account-info-content .info-contact-actions {
    display: grid;
    gap: 12px;
}

.account-info-content .info-contact-actions a {
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #111;
    color: #fff;

    font-size: 15px;
    font-weight: 850;
}



/* =====================================================
   DROPSHIPPING / COOPERATION — CLEAN KOTTON STYLE
===================================================== */

.page-dropshipping,
.page-dropshipping .page-content,
.page-hidden-products,
.page-hidden-products .page-content {
    background: #f7f7f7;
}

/* header на этих страницах всегда светлый */

.page-dropshipping .site-header,
.page-hidden-products .site-header {
    color: #111;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.page-dropshipping .header-logo img,
.page-hidden-products .header-logo img {
    filter: none;
}

.dropshipping-page,
.hidden-products-page {
    min-height: 100vh;
    padding: 104px 20px 80px;
    background: #f7f7f7;
}

.dropshipping-hero,
.dropshipping-tabs,
.dropshipping-panel,
.hidden-products-hero,
.hidden-products-block {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   HERO
===================================================== */

.dropshipping-hero,
.hidden-products-hero {
    margin-bottom: 22px;
}

.dropshipping-back,
.hidden-products-back {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #fff;
    color: #111;

    font-size: 25px;
    line-height: 1;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.dropshipping-hero h1,
.hidden-products-hero h1 {
    margin: 0;

    color: #111;
    font-size: 38px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.dropshipping-hero p,
.hidden-products-hero p {
    max-width: 640px;
    margin: 12px 0 0;

    color: #555;
    font-size: 16px;
    line-height: 1.42;
    font-weight: 500;
}

/* =====================================================
   TABS  / KOTTON STYLE
===================================================== */

.dropshipping-tabs {
    margin: 24px auto 22px;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    overflow: hidden;
    border-radius: 18px;
    background: #e9e9e9;
}

.dropshipping-tabs button {
    min-height: 72px;
    padding: 0 14px;

    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .85);
    background: transparent;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;

    transition:
        background .18s ease,
        box-shadow .18s ease;
}

.dropshipping-tabs button:last-child {
    border-right: 0;
}

.dropshipping-tabs button.is-active {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

/* =====================================================
   MAIN PANEL
===================================================== */

.dropshipping-panel,
.hidden-products-block {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* белая карточка только для текста/faq, но без огромных отступов */

.dropshipping-panel > .dropshipping-intro,
.dropshipping-panel > .dropshipping-content,
.dropshipping-panel > .dropshipping-faq,
.dropshipping-panel > .dropshipping-downloads,
.dropshipping-panel > .hidden-products-block {
    width: 100%;
}

/* =====================================================
   INFO TEXT — меньше, плотнее, аккуратнее
===================================================== */

.dropshipping-intro {
    padding: 28px 32px 18px;
    border-radius: 18px 18px 0 0;
    background: #fff;
    text-align: center;
}

.dropshipping-intro h2 {
    margin: 0 0 10px;

    color: #111;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.dropshipping-intro p {
    max-width: 660px;
    margin: 0 auto;

    color: #333;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

.dropshipping-content {
    padding: 8px 32px 32px;
    border-radius: 0 0 18px 18px;
    background: #fff;
}

.dropshipping-content h3 {
    margin: 26px 0 10px;

    color: #111;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.dropshipping-content p,
.dropshipping-content li {
    color: #222;
    font-size: 15px;
    line-height: 1.48;
    font-weight: 500;
}

.dropshipping-content p {
    margin: 0 0 12px;
}

.dropshipping-content ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.dropshipping-content li {
    margin-bottom: 7px;
}

.dropshipping-telegram {
    min-width: 180px;
    height: 44px;
    margin-top: 14px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

/* =====================================================
   FAQ — компактно
===================================================== */

.dropshipping-faq {
    padding: 28px 32px;
    border-radius: 18px;
    background: #fff;

    display: grid;
    gap: 10px;
}

.dropshipping-faq details {
    overflow: hidden;
    border-radius: 14px;
    background: #f4f4f4;
}

.dropshipping-faq summary {
    min-height: 56px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    color: #111;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;

    cursor: pointer;
    list-style: none;
}

.dropshipping-faq summary::-webkit-details-marker {
    display: none;
}

.dropshipping-faq summary::after {
    content: "+";

    width: 32px;
    height: 32px;
    flex: 0 0 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #fff;
    color: #111;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.dropshipping-faq details[open] summary::after {
    content: "−";
}

.dropshipping-faq p {
    margin: 0;
    padding: 0 16px 16px;

    color: #222;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

.dropshipping-faq-actions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.dropshipping-faq-actions a {
    height: 44px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #111;
    color: #fff;

    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

/* =====================================================
   DOWNLOADS — ближе к старому сайту, но аккуратнее
===================================================== */

.dropshipping-downloads {
    display: grid;
    gap: 22px;
}

.dropshipping-download-card {
    min-height: 118px;

    display: grid;
    grid-template-columns: 155px minmax(0, 1fr) 260px;
    align-items: stretch;

    overflow: hidden;

    border-radius: 0;
    background: #dedede;
    color: #111;

    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.dropshipping-download-card::before {
    content: "CSV файл";

    min-height: 118px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(0, 0, 0, .15);

    color: #111;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.dropshipping-download-card[href*="xml"]::before {
    content: "XML файл";
}

.dropshipping-download-card strong {
    display: flex;
    align-items: center;

    padding: 0 26px;

    color: #111;
    font-size: 17px;
    line-height: 1.32;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.dropshipping-download-card span {
    display: flex;
    align-items: center;

    padding: 0 26px;

    color: #333;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.dropshipping-download-card b {
    margin: auto;

    min-width: 160px;
    height: 44px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #f7eeee;
    color: #111;

    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* если внутри карточки strong + span должны идти колонкой */

.dropshipping-download-card strong {
    grid-column: 2;
    grid-row: 1;
}

.dropshipping-download-card span {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding-bottom: 26px;
}

.dropshipping-download-card strong {
    align-self: start;
    padding-top: 26px;
}

.dropshipping-download-card b {
    grid-column: 3;
    grid-row: 1;
}

/* =====================================================
   HIDDEN PRODUCTS
===================================================== */

.hidden-products-block {
    padding: 0;
}

/* days */

.hidden-products-days {
    margin: 0 0 22px;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hidden-products-days a {
    min-width: 92px;
    height: 44px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: #fff;
    color: #111;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .08),
        0 6px 16px rgba(0, 0, 0, .05);

    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.hidden-products-days a.is-active {
    background: #111;
    color: #fff;
}

/* list */

.hidden-products-list {
    display: grid;
    gap: 12px;
}

.hidden-product-card {
    min-height: 118px;
    padding: 10px 16px;

    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: center;

    border-radius: 0;
    background: #fff;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.hidden-product-card__photo {
    width: 82px;
    height: 108px;

    display: block;
    overflow: hidden;

    border-radius: 6px;
    background: #eee;
}

.hidden-product-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hidden-product-card__body {
    min-width: 0;
}

.hidden-product-card__name {
    display: block;
    margin-bottom: 7px;

    color: #00804a;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.hidden-product-card__meta,
.hidden-product-card__sizes,
.hidden-product-card__date {
    margin-top: 4px;

    color: #111;
    font-size: 14px;
    line-height: 1.32;
    font-weight: 600;
}

.hidden-product-card__date {
    color: #555;
}





.hidden-products-empty {
    padding: 24px;
    background: #fff;
    color: #777;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {
    .dropshipping-page,
    .hidden-products-page {
        padding: calc(90px + var(--safe-top)) 14px calc(96px + var(--safe-bottom));
    }

    .dropshipping-hero h1,
    .hidden-products-hero h1 {
        font-size: 31px;
    }

    .dropshipping-hero p,
    .hidden-products-hero p {
        font-size: 14px;
        line-height: 1.4;
    }

    .dropshipping-back,
    .hidden-products-back {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .dropshipping-tabs {
        margin: 20px auto 18px;

        display: flex;
        overflow-x: auto;
        scrollbar-width: none;

        border-radius: 16px;
    }

    .dropshipping-tabs::-webkit-scrollbar {
        display: none;
    }

    .dropshipping-tabs button {
        min-width: 150px;
        min-height: 54px;

        flex: 0 0 auto;

        border-right: 1px solid rgba(255, 255, 255, .9);

        font-size: 14px;
        white-space: nowrap;
    }

    .dropshipping-intro {
        padding: 22px 18px 12px;
        text-align: left;
    }

    .dropshipping-intro h2 {
        font-size: 21px;
    }

    .dropshipping-intro p,
    .dropshipping-content p,
    .dropshipping-content li,
    .dropshipping-faq p {
        font-size: 14px;
        line-height: 1.42;
    }

    .dropshipping-content {
        padding: 4px 18px 22px;
    }

    .dropshipping-content h3 {
        margin-top: 22px;
        font-size: 18px;
    }

    .dropshipping-faq {
        padding: 18px;
        gap: 8px;
    }

    .dropshipping-faq summary {
        min-height: 52px;
        padding: 0 14px;
        font-size: 14px;
    }

    .dropshipping-faq p {
        padding: 0 14px 14px;
    }

    .dropshipping-telegram,
    .dropshipping-faq-actions a {
        width: 100%;
    }

    /* mobile downloads */

    .dropshipping-downloads {
        gap: 14px;
    }

    .dropshipping-download-card {
        min-height: 112px;
        grid-template-columns: 82px minmax(0, 1fr);
        grid-template-rows: auto auto;

        border-radius: 0;
    }

    .dropshipping-download-card::before {
        grid-column: 1;
        grid-row: 1 / span 2;

        min-height: 112px;

        font-size: 13px;
    }

    .dropshipping-download-card strong {
        grid-column: 2;
        grid-row: 1;

        padding: 18px 14px 0;

        align-self: start;

        font-size: 15px;
        line-height: 1.25;
    }

    .dropshipping-download-card span {
        grid-column: 2;
        grid-row: 1;

        padding: 42px 14px 0;

        align-self: start;

        font-size: 13px;
        line-height: 1.35;
    }

    .dropshipping-download-card b {
        grid-column: 2;
        grid-row: 2;

        width: calc(100% - 28px);
        min-width: 0;
        height: 38px;
        margin: 8px 14px 14px;

        font-size: 12px;
    }

    /* mobile hidden */

    .hidden-products-days {
        justify-content: flex-start;
        gap: 8px;

        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .hidden-products-days::-webkit-scrollbar {
        display: none;
    }

    .hidden-products-days a {
        min-width: 78px;
        height: 38px;
        padding: 0 14px;

        flex: 0 0 auto;

        font-size: 13px;
    }

    .hidden-product-card {
        min-height: 104px;
        padding: 9px 10px;

        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .hidden-product-card__photo {
        width: 72px;
        height: 96px;
        border-radius: 5px;
    }

    .hidden-product-card__name {
        font-size: 14px;
    }

    .hidden-product-card__meta,
    .hidden-product-card__sizes,
    .hidden-product-card__date {
        font-size: 13px;
    }

}


/* =====================================================
   HIDDEN PRODUCTS — BEAUTIFUL PAGINATION
===================================================== */

.hidden-products-pagination {
    width: fit-content;
    max-width: 100%;
    margin: 28px auto 0;
    padding: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border-radius: 999px;
    background: #eeeeee;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .7),
        0 8px 24px rgba(0, 0, 0, .04);
}

.hidden-products-pagination a,
.hidden-products-pagination__dots {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    color: #111;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    text-decoration: none;
}

.hidden-products-pagination a {
    background: transparent;

    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.hidden-products-pagination a:hover {
    background: #fff;
}

.hidden-products-pagination a.is-active {
    background: #111;
    color: #fff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.hidden-products-pagination a:active {
    transform: scale(.94);
}

.hidden-products-pagination__arrow {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.hidden-products-pagination__dots {
    min-width: 28px;
    padding: 0 4px;

    color: #777;
    font-size: 18px;
    font-weight: 800;
}

.hidden-products-pagination a.is-disabled {
    opacity: .35;
    pointer-events: none;
}

/* MOBILE */

@media (max-width: 760px) {
    .hidden-products-pagination {
        width: 100%;
        justify-content: flex-start;

        overflow-x: auto;
        scrollbar-width: none;

        border-radius: 18px;
    }

    .hidden-products-pagination::-webkit-scrollbar {
        display: none;
    }

    .hidden-products-pagination a,
    .hidden-products-pagination__dots {
        min-width: 36px;
        height: 36px;
        padding: 0 11px;

        flex: 0 0 auto;

        font-size: 13px;
    }

    .hidden-products-pagination__arrow {
        min-width: 42px !important;
    }
}



/* =====================================================
   PWA SAFE AREA
===================================================== */

body.pwa {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

body.pwa .site-header {
    padding-top: env(safe-area-inset-top);
    height: calc(82px + env(safe-area-inset-top));
}

@media (max-width: 899px) {
    body.pwa {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    body.pwa .site-header {
        height: calc(76px + env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
    }

    body.pwa .mobile-dock {
        bottom: max(4px, env(safe-area-inset-bottom));
    }
}


.catalog-filter-btn {
    position: relative;
}

.catalog-filter-btn.is-active {
    color: #111111;
}

.catalog-filter-count {
    position: absolute;
    right: -5px;
    top: -4px;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    border-radius: 999px;
    background: #111111;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.catalog-filter-panel {
    background: #ffffff;
}

.catalog-filter-head {
    position: sticky;
    top: 0;
    z-index: 4;

    min-height: 82px;
    padding: 20px 22px;

    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid #eeeeee;
}

.catalog-filter-head h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1;
    letter-spacing: -.05em;
}

.catalog-filter-form {
    padding: 24px 24px 120px;
}

.catalog-filter-block {
    padding: 0 0 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid #eeeeee;
}

.catalog-filter-title {
    margin-bottom: 14px;

    color: #111111;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.catalog-filter-radio,
.catalog-filter-check {
    min-height: 32px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #333333;
    font-size: 14px;
    cursor: pointer;
}

.catalog-filter-radio input,
.catalog-filter-check input {
    width: 20px;
    height: 20px;
    accent-color: #111111;
}

.catalog-filter-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.catalog-filter-price label {
    display: grid;
    gap: 7px;
}

.catalog-filter-price span {
    color: #888888;
    font-size: 13px;
}

.catalog-filter-price input {
    width: 100%;
    height: 48px;
    padding: 0 14px;

    border: 1px solid #dddddd;
    border-radius: 12px;
    outline: 0;

    font-size: 16px;
}

.catalog-filter-price input:focus {
    border-color: #111111;
}

.catalog-filter-actions {
    position: sticky;
    bottom: 0;

    margin: 0 -24px -120px;
    padding: 14px 24px calc(14px + var(--safe-bottom));

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-top: 1px solid #eeeeee;

    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}

.catalog-filter-actions a,
.catalog-filter-actions button {
    height: 50px;

    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
}

.catalog-filter-actions a {
    border: 1px solid #dddddd;
    color: #333333;
    background: #ffffff;
}

.catalog-filter-actions button {
    border: 0;
    background: #111111;
    color: #ffffff;
}


.catalog-filter-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-filter-size {
    cursor: pointer;
}

.catalog-filter-size input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-filter-size span {
    min-width: 48px;
    height: 38px;
    padding: 0 14px;

    border-radius: 999px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #333333;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

.catalog-filter-size input:checked + span {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.catalog-filter-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-filter-color {
    cursor: pointer;
}

.catalog-filter-color input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-filter-color span {
    min-height: 38px;
    padding: 0 14px;

    border-radius: 999px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #333333;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

.catalog-filter-color input:checked + span {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}


/* FAVORITES */

.favorites-panel {
    background: #ffffff;
}

.favorites-head {
    position: sticky;
    top: 0;
    z-index: 4;

    min-height: 82px;
    padding: 20px 22px;

    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid #eeeeee;
}

.favorites-head h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1;
    letter-spacing: -.05em;
}

.favorites-body {
    padding: 18px 18px 120px;
}

.favorites-empty {
    padding: 80px 20px;

    text-align: center;
    color: #999999;
    font-size: 16px;
}

.favorites-list {
    display: grid;
    gap: 12px;
}

.favorites-item {
    position: relative;

    display: grid;
    grid-template-columns: 86px 1fr 34px;
    gap: 12px;
    align-items: center;

    padding: 10px 0;

    border-bottom: 1px solid #eeeeee;
}

.favorites-item__photo {
    display: block;

    width: 86px;
    aspect-ratio: 3 / 4;

    overflow: hidden;
    background: #f5f5f5;
}

.favorites-item__photo img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.favorites-item__name {
    display: block;

    margin-bottom: 8px;

    color: #333333;
    font-size: 14px;
    line-height: 1.25;
}

.favorites-item__prices {
    display: grid;
    gap: 5px;
}

.favorites-item__prices b,
.favorites-item__prices em {
    font-size: 13px;
    line-height: 1;
    font-style: normal;
}

.favorites-item__prices b {
    color: #111111;
}

.favorites-item__prices em {
    color: #777777;
}

.favorites-item__remove {
    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;
    background: #f5f5f5;
    color: #111111;

    font-size: 24px;
    line-height: 1;
}

[data-favorite-toggle] {
    border: 0;
    padding: 0;
    cursor: pointer;
}

[data-favorite-toggle].is-favorite svg path {
    fill: #ab609c;
    stroke: #ab609c;
}


/* AUTH TOAST */

.kotton-toast {
    position: fixed;
    left: 50%;
    top: 96px;
    z-index: 500;

    max-width: calc(100vw - 32px);
    padding: 14px 20px;

    border-radius: 999px;
    background: #111111;
    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    transform: translateX(-50%) translateY(-16px);
    opacity: 0;
    pointer-events: none;

    box-shadow: 0 18px 50px rgba(0,0,0,.22);

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.kotton-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 899px) {
    .kotton-toast {
        top: calc(86px + var(--safe-top));
        font-size: 14px;
    }
}



/* =====================================================
   ACCOUNT SETTINGS / PUSH TOGGLES
===================================================== */

.account-settings-view {
    padding: 22px 20px 34px;
}

.account-settings-block {
    display: grid;
    gap: 16px;
}

.account-settings-block h3,
.account-settings-empty h3 {
    margin: 0;

    color: #111111;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.04em;
    padding-top: 30px;
}

.account-settings-block p,
.account-settings-empty p {
    margin: 0;

    color: #777777;
    font-size: 15px;
    line-height: 1.45;
}

.account-push-settings-form {
    display: grid;
    gap: 10px;
}

.account-push-toggle {
    position: relative;

    min-height: 78px;
    padding: 14px 14px 14px 16px;

    border-radius: 18px;
    background: #f7f7f7;

    display: grid;
    grid-template-columns: 1fr 50px;
    align-items: center;
    gap: 14px;

    cursor: pointer;
    user-select: none;
}

.account-push-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-push-toggle span {
    min-width: 0;

    display: grid;
    gap: 5px;
}

.account-push-toggle strong {
    color: #111111;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 850;
}

.account-push-toggle em {
    color: #777777;
    font-size: 13px;
    line-height: 1.3;
    font-style: normal;
}

.account-push-toggle i {
    position: relative;

    width: 50px;
    height: 30px;

    border-radius: 999px;
    background: #d8d8d8;

    transition:
        background .2s ease,
        box-shadow .2s ease;
}

.account-push-toggle i::after {
    content: "";

    position: absolute;
    left: 3px;
    top: 3px;

    width: 24px;
    height: 24px;

    border-radius: 50%;
    background: #ffffff;

    box-shadow: 0 2px 8px rgba(0,0,0,.16);

    transition: transform .2s ease;
}

.account-push-toggle input:checked ~ i {
    background: #111111;
}

.account-push-toggle input:checked ~ i::after {
    transform: translateX(20px);
}

.account-push-toggle:active {
    transform: scale(.99);
}

.account-push-settings-status {
    min-height: 42px;
    padding: 0 14px;

    border-radius: 14px;

    display: flex;
    align-items: center;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.account-push-settings-status.is-success {
    background: #eefbea;
    color: #158000;
}

.account-push-settings-status.is-error {
    background: #ffecec;
    color: #b42323;
}

.account-settings-empty {
    display: grid;
    gap: 10px;
    padding: 6px 0;
}





/* =====================================================
   KOTTON PUSH PROMPT
===================================================== */

.kotton-push-prompt {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    z-index: 9999;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
}

.kotton-push-prompt.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.kotton-push-prompt__card {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.kotton-push-prompt__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
}

.kotton-push-prompt__content {
    min-width: 0;
    padding-right: 28px;
}

.kotton-push-prompt__content strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
}

.kotton-push-prompt__content span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(17, 17, 17, .64);
}

.kotton-push-prompt__button {
    grid-column: 1 / -1;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.kotton-push-prompt__button:disabled {
    opacity: .65;
}

.kotton-push-prompt__close {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .06);
    color: #111;
    font-size: 20px;
    line-height: 1;
}

@media (min-width: 900px) {
    .kotton-push-prompt {
        left: auto;
        right: 24px;
        bottom: 24px;
        width: 360px;
    }
}


/* =====================================================
   ACCOUNT SITE SETTINGS — language / currency
===================================================== */

.account-settings-group {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.account-settings-label {
    color: #111111;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.account-segmented {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.account-segmented--currency {
    grid-template-columns: repeat(3, 1fr);
}

.account-segmented label {
    position: relative;
    min-width: 0;
}

.account-segmented input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-segmented span {
    min-height: 42px;
    padding: 0 12px;

    border-radius: 999px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #555555;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.account-segmented input:checked + span {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.account-site-settings-status {
    margin-top: 14px;

    color: #777777;
    font-size: 13px;
    line-height: 1.35;
}

.account-site-settings-status.is-success {
    color: #1f7a3f;
}

.account-site-settings-status.is-error {
    color: #b42318;
}

.account-list button span em,
.account-list a span em {
    display: block;
    margin-top: 4px;

    color: #999999;
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
}


/* =====================================================
   ACCOUNT DETAILS
===================================================== */

.account-details-view {
    padding-bottom: 28px;
}

.account-details-card {
    margin: 18px 16px 16px;
    padding: 18px;

    border-radius: 24px;
    background: #111111;
    color: #ffffff;

    display: flex;
    align-items: center;
    gap: 14px;
}

.account-details-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.account-details-avatar svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-details-main {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.account-details-main strong {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.account-details-main span {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.25;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-details-list {
    margin: 0 16px 18px;

    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #eeeeee;

    overflow: hidden;
}

.account-details-row {
    min-height: 58px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-bottom: 1px solid #f0f0f0;
}

.account-details-row:last-child {
    border-bottom: 0;
}

.account-details-row span {
    color: #888888;
    font-size: 13px;
    line-height: 1.2;
}

.account-details-row strong {
    min-width: 0;

    color: #111111;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    text-align: right;

    overflow: hidden;
    text-overflow: ellipsis;
}


/* =====================================================
   REVIEWS PAGE — KOTTON
===================================================== */

.reviews-page {
    min-height: 100vh;
    padding: 118px 0 72px;
    background: #ffffff;
}

.reviews-hero {
    padding: 0 16px 34px;
    background: #ffffff;
    color: #111111;
}

.reviews-hero__inner {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding-bottom: 28px;
    border-bottom: 1px solid #eeeeee;
}

.reviews-hero span {
    display: inline-flex;
    margin-bottom: 18px;

    color: #999999;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reviews-hero h1 {
    max-width: 760px;
    margin: 0;

    color: #111111;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .96;
    font-weight: 850;
    letter-spacing: -.045em;
}

.reviews-hero p {
    max-width: 560px;
    margin: 18px 0 0;

    color: #777777;
    font-size: 15px;
    line-height: 1.5;
}

.reviews-section {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding-top: 10px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;

    background: #eeeeee;
    border: 1px solid #eeeeee;
}

.review-card {
    min-height: 230px;
    padding: 24px;

    background: #ffffff;
    border-radius: 0;
    border: 0;
    box-shadow: none;

    display: flex;
    flex-direction: column;
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: #f3f3f3;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    text-transform: uppercase;
}

.review-card__head strong {
    display: block;

    color: #111111;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
}

.review-card__head span {
    display: block;
    margin-top: 5px;

    color: #aaaaaa;
    font-size: 12px;
    line-height: 1;
}

.review-card__text {
    margin-top: 22px;

    color: #222222;
    font-size: 15px;
    line-height: 1.55;
}

.review-card__answer {
    margin-top: 20px;
    padding-top: 16px;

    border-top: 1px solid #eeeeee;
    background: transparent;
    border-radius: 0;
}

.review-card__answer strong {
    display: block;
    margin-bottom: 8px;

    color: #111111;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-card__answer p {
    margin: 0;

    color: #777777;
    font-size: 14px;
    line-height: 1.45;
}

.reviews-empty {
    padding: 34px;

    background: #fafafa;
    border: 1px solid #eeeeee;

    color: #777777;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1180px) {
    .reviews-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 699px) {
    .reviews-page {
        padding-top: calc(88px + env(safe-area-inset-top));
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }

    .reviews-hero {
        padding-bottom: 24px;
    }

    .reviews-hero__inner {
        width: calc(100vw - 32px);
        padding-bottom: 22px;
    }

    .reviews-hero span {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .reviews-hero h1 {
        font-size: 36px;
        line-height: .95;
    }

    .reviews-hero p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.45;
    }

    .reviews-section {
        width: calc(100vw - 32px);
        padding-top: 0;
    }

    .reviews-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;

        background: transparent;
        border: 0;
    }

    .review-card {
        min-height: 0;
        padding: 18px;

        border: 1px solid #eeeeee;
        border-radius: 18px;
    }

    .review-card__text {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.5;
    }
}


/* =====================================================
   REVIEWS FORM — elegant
===================================================== */

.reviews-message {
    margin: 0 0 16px;
    padding: 15px 18px;

    border-radius: 0;
    border: 1px solid transparent;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.reviews-message--success {
    background: #f5fbf7;
    border-color: #dcefe3;
    color: #1f7a3f;
}

.reviews-message--error {
    background: #fff6f5;
    border-color: #f3d4d0;
    color: #b42318;
}

.reviews-form--elegant {
    margin: 0 0 34px;
    padding: 0;

    border: 1px solid #eeeeee;
    background: #ffffff;

    display: grid;
    grid-template-columns: .82fr 1.18fr;
}

.reviews-form__intro {
    padding: 34px;

    background:
        linear-gradient(135deg, #fafafa 0%, #ffffff 68%);
    border-right: 1px solid #eeeeee;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.reviews-form__intro span {
    color: #999999;
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reviews-form__intro h2 {
    max-width: 360px;
    margin: auto 0 0;

    color: #111111;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.045em;
}

.reviews-form__intro p {
    max-width: 360px;
    margin: 0;

    color: #777777;
    font-size: 15px;
    line-height: 1.5;
}

.reviews-form__fields {
    padding: 34px;

    display: grid;
    gap: 18px;
}

.reviews-form__fields label {
    display: grid;
    gap: 9px;
}

.reviews-form__fields label span {
    color: #111111;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .03em;
}

.reviews-form__fields input,
.reviews-form__fields textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;

    border: 1px solid #dddddd;
    border-radius: 0;
    background: #ffffff;
    color: #111111;

    font-size: 15px;
    line-height: 1.45;
    outline: none;

    transition:
        border-color .18s ease,
        background .18s ease;
}

.reviews-form__fields textarea {
    min-height: 124px;
    padding-top: 15px;
    resize: vertical;
}

.reviews-form__fields input:focus,
.reviews-form__fields textarea:focus {
    border-color: #111111;
    background: #fcfcfc;
}

.reviews-form__fields button {
    justify-self: start;

    min-height: 50px;
    padding: 0 28px;

    border: 0;
    background: #111111;
    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;

    cursor: pointer;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.reviews-form__fields button:hover {
    transform: translateY(-1px);
}

.reviews-form__fields button:active {
    transform: translateY(0);
    opacity: .82;
}

.reviews-form__fields em {
    color: #999999;
    font-size: 12px;
    line-height: 1.35;
    font-style: normal;
}

.reviews-form__check {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 899px) {
    .reviews-form--elegant {
        grid-template-columns: 1fr;
    }

    .reviews-form__intro {
        padding: 24px;
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
        gap: 20px;
    }

    .reviews-form__intro h2 {
        margin: 0;
        font-size: 32px;
    }

    .reviews-form__fields {
        padding: 24px;
    }
}

@media (max-width: 699px) {
    .reviews-form--elegant {
        margin-bottom: 22px;
        border-radius: 18px;
        overflow: hidden;
    }

    .reviews-form__intro,
    .reviews-form__fields {
        padding: 18px;
    }

    .reviews-form__intro h2 {
        font-size: 28px;
    }

    .reviews-form__intro p {
        font-size: 14px;
    }

    .reviews-form__fields input,
    .reviews-form__fields textarea {
        font-size: 16px;
    }

    .reviews-form__fields button {
        width: 100%;
        justify-self: stretch;
    }
}


/* =====================================================
   ACCOUNT SETTINGS — mobile scroll fix
===================================================== */

.account-scroll.account-settings-view {
    height: calc(100dvh - 64px);
    max-height: calc(100dvh - 64px);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    padding: 22px 20px calc(160px + var(--safe-bottom));
}

.account-scroll.account-settings-view .account-settings-block + .account-settings-block {
    margin-top: 22px;
}

.account-site-settings-status[hidden],
.account-push-settings-status[hidden] {
    display: none !important;
}

@media (max-width: 899px) {
    .account-scroll.account-settings-view {
        padding-bottom: calc(190px + var(--safe-bottom));
    }
}

/* =====================================================
   ACCOUNT PUSH LOCK OVERLAY
===================================================== */

.account-push-toggles {
    position: relative;
    display: grid;
    gap: 12px;
}

.account-push-lock {
    position: absolute;
    inset: 0;
    z-index: 5;

    display: block;

    padding: 0;
    border: 0;
    background: rgba(255,255,255,.01);

    cursor: pointer;
}

.account-push-lock[hidden] {
    display: none !important;
}

.account-push-hint {
    margin: 0 0 14px;
    padding: 15px 16px;

    border-radius: 18px;
    background: #111111;
    color: #ffffff;

    opacity: 0;
    transform: translateY(6px);

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.account-push-hint[hidden] {
    display: none !important;
}

.account-push-hint.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.account-push-hint strong {
    display: block;

    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 850;
}

.account-push-hint span {
    display: block;
    margin-top: 6px;

    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.35;
}


/* =====================================================
   ACCOUNT — BALANCE HISTORY
===================================================== */

.account-tile-balance {
    width: 100%;
}

.account-balance-view {
    padding-bottom: calc(28px + var(--safe-bottom));
}

.account-balance-summary {
    margin-bottom: 18px;
    padding: 22px;

    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #171717,
            #303030
        );
    color: #ffffff;

    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.account-balance-summary span {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1;
}

.account-balance-summary strong {
    display: block;

    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -.035em;
}

.account-balance-summary small {
    display: block;

    margin-top: 14px;

    color: rgba(255, 255, 255, .54);
    font-size: 12px;
    line-height: 1;
}

.account-balance-history {
    overflow: hidden;

    border-radius: 20px;
    background: #ffffff;
}

.account-balance-operation {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;

    padding: 16px;

    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.account-balance-operation:last-child {
    border-bottom: 0;
}

.account-balance-operation__icon {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
    font-weight: 650;
}

.account-balance-operation.is-plus .account-balance-operation__icon {
    background: #eaf8ef;
    color: #188545;
}

.account-balance-operation.is-minus .account-balance-operation__icon {
    background: #fff0f0;
    color: #cf3838;
}

.account-balance-operation__content {
    min-width: 0;
}

.account-balance-operation__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.account-balance-operation__top strong {
    min-width: 0;

    color: #111111;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.account-balance-operation__top b {
    flex: 0 0 auto;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 750;
    white-space: nowrap;
}

.account-balance-operation.is-plus .account-balance-operation__top b {
    color: #188545;
}

.account-balance-operation.is-minus .account-balance-operation__top b {
    color: #cf3838;
}

.account-balance-operation__order {
    margin-top: 5px;

    color: #555555;
    font-size: 12px;
    line-height: 1.3;
}

.account-balance-operation__bottom {
    margin-top: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: #999999;
    font-size: 11px;
    line-height: 1.3;
}

.account-balance-operation__bottom em {
    color: #777777;
    font-style: normal;
    white-space: nowrap;
}

.account-balance-empty {
    padding: 52px 22px;

    border-radius: 20px;
    background: #ffffff;

    text-align: center;
}

.account-balance-empty__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    border-radius: 18px;
    background: #f0f0f0;
    color: #111111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;
    font-weight: 650;
}

.account-balance-empty h3 {
    margin: 0 0 9px;

    color: #111111;
    font-size: 19px;
    line-height: 1.2;
}

.account-balance-empty p {
    max-width: 320px;
    margin: 0 auto;

    color: #777777;
    font-size: 14px;
    line-height: 1.5;
}


/* =====================================================
   ACCOUNT LOYALTY — KOTTON
===================================================== */

.account-loyalty-head {
    color: #ffffff;
    background: #25213c;
    border-bottom-color: rgba(255, 255, 255, .08);
}

.account-loyalty-head h2 {
    color: #ffffff;
}

.account-loyalty-head .layer-back {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.account-loyalty-view {
    padding: 0 0 120px;
    background:
        linear-gradient(
            180deg,
            #25213c 0,
            #25213c 590px,
            #ffffff 590px,
            #ffffff 100%
        );
}

.account-loyalty-top {
    padding: 18px 18px 26px;
}

/* КАРТА */

.account-loyalty-card {
    position: relative;

    min-height: 245px;
    padding: 22px;

    overflow: hidden;

    border-radius: 30px;
    background:
        linear-gradient(
            110deg,
            #e8e1ff 0%,
            #d9d3f8 62%,
            #cac3ec 62%,
            #dcd6fa 100%
        );

    color: #262238;

    box-shadow:
        0 22px 50px rgba(13, 10, 31, .20);
}

.account-loyalty-card::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 38%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.15)
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.20) 0,
            rgba(255,255,255,.20) 42px,
            rgba(120,102,180,.06) 42px,
            rgba(120,102,180,.06) 84px
        );

    pointer-events: none;
}

.account-loyalty-card::after {
    content: "K";

    position: absolute;
    right: 22px;
    bottom: 5px;

    color: rgba(64, 49, 105, .08);

    font-size: 112px;
    line-height: 1;
    font-weight: 950;
}

.account-loyalty-card__head,
.account-loyalty-card__discount,
.account-loyalty-card__bottom {
    position: relative;
    z-index: 2;
}

.account-loyalty-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.account-loyalty-card__head span {
    display: block;

    margin-bottom: 5px;

    color: rgba(38, 34, 56, .60);

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.account-loyalty-card__head strong {
    display: block;

    color: #262238;

    font-size: 20px;
    line-height: 1.12;
    font-weight: 900;
}

.account-loyalty-card__type {
    min-width: 92px;
    height: 42px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #302948;
    color: #ffffff;

    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
}

.account-loyalty-card__discount {
    margin-top: 36px;
}

.account-loyalty-card__discount > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(38, 34, 56, .65);

    font-size: 14px;
    font-weight: 750;
}

.account-loyalty-card__discount > div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.account-loyalty-card__discount strong {
    color: #262238;

    font-size: 72px;
    line-height: .8;
    font-weight: 950;
    letter-spacing: -.07em;
}

.account-loyalty-card__discount em {
    max-width: 115px;
    padding-bottom: 4px;

    color: rgba(38, 34, 56, .70);

    font-size: 13px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 750;
}

.account-loyalty-card__bottom {
    margin-top: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.account-loyalty-card__bottom span,
.account-loyalty-card__bottom b {
    color: #353048;

    font-size: 13px;
    line-height: 1.25;
    font-weight: 850;
}

/* ОБЩИЙ ПРОГРЕСС ПОД КАРТОЙ */

.account-loyalty-progress {
    margin-top: 24px;
    color: #ffffff;
}

.account-loyalty-progress__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.account-loyalty-progress__head strong {
    display: block;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.15;
    font-weight: 900;
}

.account-loyalty-progress__head span {
    display: block;

    margin-top: 6px;

    color: rgba(255,255,255,.68);

    font-size: 13px;
    line-height: 1.35;
    font-weight: 650;
}

.account-loyalty-progress__head > b {
    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 950;
}

.account-loyalty-progress__track {
    height: 7px;
    margin-top: 18px;

    overflow: hidden;

    border-radius: 999px;
    background: rgba(255,255,255,.11);
}

.account-loyalty-progress__track i {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #cfc5ff,
            #ffffff
        );
}

/* СТАТУС-БАР */

.account-loyalty-status {
    margin: 0 18px;
    padding: 22px 18px 20px;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 18px 50px rgba(31, 25, 61, .10);
}

.account-loyalty-status__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.account-loyalty-status__head span {
    display: block;

    margin-bottom: 5px;

    color: #938da2;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.account-loyalty-status__head strong {
    display: block;

    max-width: 260px;

    color: #242033;

    font-size: 19px;
    line-height: 1.2;
    font-weight: 900;
}

.account-loyalty-status__head > b {
    min-width: 58px;
    height: 58px;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 19px;

    background: #eeeaff;
    color: #4a3e79;

    font-size: 19px;
    font-weight: 950;
}

.account-loyalty-statusbar {
    position: relative;

    margin-top: 26px;
    padding-top: 12px;
}

.account-loyalty-statusbar__line {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 29px;

    height: 5px;

    overflow: hidden;

    border-radius: 999px;
    background: #e9e7ed;
}

.account-loyalty-statusbar__line i {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #8372d4,
            #a99df0
        );
}

.account-loyalty-statusbar__levels {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 4px;
}

.account-loyalty-statusbar__level {
    min-width: 0;

    text-align: center;

    opacity: .48;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.account-loyalty-statusbar__level.is-reached,
.account-loyalty-statusbar__level.is-current {
    opacity: 1;
}

.account-loyalty-statusbar__level.is-current {
    transform: translateY(-3px);
}

.account-loyalty-statusbar__point {
    width: 38px;
    height: 38px;
    margin: 0 auto 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 4px solid #ffffff;
    border-radius: 50%;

    background: #e5e2eb;
    color: #8a8495;

    box-shadow: 0 0 0 1px #ddd9e4;
}

.account-loyalty-statusbar__level.is-reached
.account-loyalty-statusbar__point {
    background: #7664c9;
    color: #ffffff;

    box-shadow:
        0 0 0 1px #7664c9,
        0 6px 14px rgba(95, 76, 177, .24);
}

.account-loyalty-statusbar__level.is-current
.account-loyalty-statusbar__point {
    width: 44px;
    height: 44px;

    margin-top: -3px;
    margin-bottom: 8px;

    background: #302948;
    color: #ffffff;

    box-shadow:
        0 0 0 4px rgba(131,114,212,.18),
        0 7px 18px rgba(48,41,72,.25);
}

.account-loyalty-statusbar__point svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-loyalty-statusbar__level strong {
    display: block;

    color: #282333;

    font-size: 13px;
    line-height: 1.1;
    font-weight: 950;
}

.account-loyalty-statusbar__level span {
    display: block;

    margin-top: 4px;

    color: #8f8998;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 750;
}

.account-loyalty-status__next {
    margin-top: 22px;
    padding: 15px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #e9e3ff,
            #f5f2ff
        );
}

.account-loyalty-status__next span {
    display: block;

    color: #867f96;

    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.account-loyalty-status__next strong {
    display: block;

    margin-top: 4px;

    color: #302948;

    font-size: 17px;
    line-height: 1.1;
    font-weight: 950;
}

.account-loyalty-status__next > b {
    color: #6656b8;

    font-size: 22px;
    font-weight: 950;
}

/* ПРЕДЛОЖЕНИЯ */

.account-loyalty-offers {
    margin-top: 30px;
    padding: 28px 18px 0;

    background: #ffffff;
}

.account-loyalty-offers h3 {
    margin: 0 0 17px;

    color: #15131b;

    font-size: 24px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.account-loyalty-offer-card {
    position: relative;

    min-height: 150px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #f0e9ff 0%,
            #f8e3ec 100%
        );

    color: #1e1a28;
}

.account-loyalty-offer-card::after {
    content: "";

    position: absolute;
    width: 150px;
    height: 150px;
    right: -48px;
    top: -50px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);
}

.account-loyalty-offer-card > div,
.account-loyalty-offer-card > b {
    position: relative;
    z-index: 2;
}

.account-loyalty-offer-card span {
    display: block;

    color: #847c90;

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.account-loyalty-offer-card strong {
    display: block;

    margin-top: 7px;

    color: #1e1a28;

    font-size: 21px;
    line-height: 1.1;
    font-weight: 950;
}

.account-loyalty-offer-card p {
    max-width: 270px;
    margin: 8px 0 0;

    color: #686171;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.account-loyalty-offer-card > b {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #ffffff;
    color: #4c3d7c;

    font-size: 30px;
    font-weight: 950;

    box-shadow:
        0 10px 25px rgba(48, 41, 72, .12);
}

/* ПЛИТКА В ПРОФИЛЕ */

.account-tile-loyalty > b {
    background: #eeeaff;
    color: #514283;
}

/* НЕАВТОРИЗОВАННЫЙ */

.account-loyalty-empty {
    margin: 20px 18px;
    padding: 34px 22px;

    border-radius: 24px;
    background: #ffffff;

    text-align: center;
}

.account-loyalty-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 21px;

    background: #302948;
    color: #ffffff;

    font-size: 28px;
    font-weight: 950;
}

.account-loyalty-empty h3 {
    margin: 0;

    color: #1d1a25;

    font-size: 22px;
    font-weight: 950;
}

.account-loyalty-empty p {
    max-width: 310px;
    margin: 10px auto 0;

    color: #746e7c;

    font-size: 14px;
    line-height: 1.45;
}

/* МОБИЛЬНЫЙ */

@media (max-width: 430px) {

    .account-loyalty-view {
        background:
            linear-gradient(
                180deg,
                #25213c 0,
                #25213c 570px,
                #ffffff 570px,
                #ffffff 100%
            );
    }

    .account-loyalty-card {
        min-height: 235px;
        padding: 20px;
        border-radius: 27px;
    }

    .account-loyalty-card__type {
        min-width: 78px;
        height: 38px;
        padding: 0 12px;

        font-size: 11px;
    }

    .account-loyalty-card__discount strong {
        font-size: 64px;
    }

    .account-loyalty-card__discount em {
        max-width: 98px;
        font-size: 11px;
    }

    .account-loyalty-status {
        margin-left: 14px;
        margin-right: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .account-loyalty-statusbar__level strong {
        font-size: 12px;
    }

    .account-loyalty-statusbar__level span {
        font-size: 9px;
    }

    .account-loyalty-statusbar__point {
        width: 34px;
        height: 34px;
    }

    .account-loyalty-statusbar__level.is-current
    .account-loyalty-statusbar__point {
        width: 40px;
        height: 40px;
    }

    .account-loyalty-offers {
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* =====================================================
   LOYALTY COUPONS — KOTTON
===================================================== */

/* Заголовок блока */

.account-loyalty-offers__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin-bottom: 17px;
}

.account-loyalty-offers__head h3 {
    margin: 0;
}

.account-loyalty-offers__head > span {
    min-width: 28px;
    height: 28px;
    padding: 0 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #eeeaff;
    color: #514283;

    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

/* =====================================================
   КАРУСЕЛЬ
===================================================== */

.account-loyalty-offers__track {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 2px 0 5px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.account-loyalty-offers__track::-webkit-scrollbar {
    display: none;
}

.account-loyalty-offers__track.has-one
.account-loyalty-offer-card {
    flex-basis: 100%;
}

.account-loyalty-offers__track.has-many
.account-loyalty-offer-card {
    flex-basis: calc(88% - 4px);
}

/* =====================================================
   КАРТОЧКА ПРОМОКОДА
===================================================== */

.account-loyalty-offer-card {
    position: relative;

    flex: 0 0 100%;
    min-width: 0;
    min-height: 220px;
    padding: 22px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px;
    grid-template-rows: 1fr auto;
    gap: 16px 14px;

    overflow: hidden;

    border: 0;
    border-radius: 26px;

    color: #201b2a;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    box-shadow:
        0 14px 36px rgba(38, 29, 65, .11);
}

/* Декоративный круг */

.account-loyalty-offer-card::before {
    content: "";

    position: absolute;
    right: -48px;
    top: -54px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .34);

    pointer-events: none;
}

/* Второй декоративный круг */

.account-loyalty-offer-card::after {
    content: "";

    position: absolute;
    right: 28px;
    bottom: -82px;

    width: 142px;
    height: 142px;

    border: 24px solid rgba(255, 255, 255, .2);
    border-radius: 50%;

    pointer-events: none;
}

/* Цветовые темы */

.account-loyalty-offer-card--theme-1 {
    background:
        linear-gradient(
            135deg,
            #eee7ff 0%,
            #f7e2eb 100%
        );
}

.account-loyalty-offer-card--theme-2 {
    background:
        linear-gradient(
            135deg,
            #dff4ec 0%,
            #ebf7df 100%
        );
}

.account-loyalty-offer-card--theme-3 {
    background:
        linear-gradient(
            135deg,
            #dfeeff 0%,
            #eae6ff 100%
        );
}

.account-loyalty-offer-card--theme-4 {
    background:
        linear-gradient(
            135deg,
            #ffe7dc 0%,
            #fff1d9 100%
        );
}

.account-loyalty-offer-card--theme-5 {
    background:
        linear-gradient(
            135deg,
            #eef4cf 0%,
            #e2f1dd 100%
        );
}

/* Контент */

.account-loyalty-offer-card__content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.account-loyalty-offer-card__kicker {
    display: block;

    margin: 0;

    color: rgba(44, 37, 56, .57);

    font-size: 10px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.account-loyalty-offer-card__title {
    display: block;

    max-width: 260px;
    margin-top: 9px;

    color: #211c2b;

    font-size: 23px;
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: -.035em;

    overflow-wrap: anywhere;
}

.account-loyalty-offer-card__description {
    max-width: 270px;
    margin: 11px 0 0;

    color: rgba(44, 37, 56, .69);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.account-loyalty-offer-card__date {
    display: block;

    margin-top: 10px;

    color: rgba(44, 37, 56, .56);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
}

/* Большой знак справа */

.account-loyalty-offer-card__symbol {
    position: relative;
    z-index: 2;

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    align-self: center;

    border-radius: 22px;

    background: rgba(255, 255, 255, .78);
    color: #4c3d7c;

    font-size: 31px;
    line-height: 1;
    font-weight: 950;

    box-shadow:
        0 10px 28px rgba(50, 40, 78, .12);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Кнопка */

.account-loyalty-offer-card__action {
    position: relative;
    z-index: 3;

    grid-column: 1 / -1;

    width: 100%;
    height: 45px;
    padding: 0 18px;

    border: 0;
    border-radius: 15px;

    background: #302948;
    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .055em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.account-loyalty-offer-card__action:hover {
    background: #3c3458;

    box-shadow:
        0 9px 22px rgba(48, 41, 72, .2);
}

.account-loyalty-offer-card__action:active {
    transform: scale(.985);
}

/* =====================================================
   ТОЧКИ КАРУСЕЛИ
===================================================== */

.account-loyalty-offers__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 13px;
}

.account-loyalty-offers__dots i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 999px;

    background: #ddd9e6;

    cursor: pointer;

    transition:
        width .2s ease,
        background-color .2s ease;
}

.account-loyalty-offers__dots i.is-active {
    width: 24px;
    background: #6555ad;
}

/* =====================================================
   НИЖНЯЯ ШТОРКА ПРОМОКОДА
===================================================== */

body.loyalty-coupon-sheet-open {
    overflow: hidden;
}

.loyalty-coupon-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000;

    pointer-events: none;
}

.loyalty-coupon-sheet[hidden] {
    display: none;
}

.loyalty-coupon-sheet.is-open {
    pointer-events: auto;
}

.loyalty-coupon-sheet__backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    padding: 0;

    border: 0;

    background: rgba(11, 9, 17, .42);

    opacity: 0;

    transition: opacity .28s ease;
}

.loyalty-coupon-sheet.is-open
.loyalty-coupon-sheet__backdrop {
    opacity: 1;
}

/* Панель располагается над правой шторкой аккаунта */

.loyalty-coupon-sheet__panel {
    position: absolute;
    right: 0;
    bottom: 0;

    width: min(100%, 520px);
    max-height: min(88vh, 760px);

    padding:
        14px
        22px
        calc(24px + env(safe-area-inset-bottom));

    overflow-y: auto;
    overscroll-behavior: contain;

    border-radius: 30px 30px 0 0;

    background: #ffffff;
    color: #1c1922;

    box-shadow:
        0 -22px 65px rgba(19, 14, 31, .2);

    transform: translate3d(0, 105%, 0);

    transition:
        transform .32s cubic-bezier(.22, .8, .24, 1);

    -webkit-overflow-scrolling: touch;
}

.loyalty-coupon-sheet.is-open
.loyalty-coupon-sheet__panel {
    transform: translate3d(0, 0, 0);
}

/* Ручка */

.loyalty-coupon-sheet__handle {
    width: 42px;
    height: 5px;
    margin: 0 auto 17px;

    border-radius: 999px;

    background: #dedce3;
}

/* Крестик */

.loyalty-coupon-sheet__close {
    position: absolute;
    top: 15px;
    right: 17px;

    width: 38px;
    height: 38px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f3f2f5;
    color: #24202c;

    font-size: 27px;
    line-height: 1;
    font-weight: 300;

    cursor: pointer;
}

/* Контент */

.loyalty-coupon-sheet__content {
    padding-top: 11px;
}

.loyalty-coupon-sheet__content[hidden] {
    display: none;
}

.loyalty-coupon-sheet__eyebrow {
    display: block;

    padding-right: 48px;

    color: #817a8c;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.loyalty-coupon-sheet__content h3 {
    max-width: 390px;
    margin: 10px 0 0;

    color: #1e1a27;

    font-size: 30px;
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.045em;
}

.loyalty-coupon-sheet__short {
    max-width: 420px;
    margin: 14px 0 0;

    color: #6b6572;

    font-size: 15px;
    line-height: 1.5;
}

/* Срок */

.loyalty-coupon-sheet__expire {
    margin-top: 20px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-radius: 16px;

    background: #f5f3fa;
}

.loyalty-coupon-sheet__expire span {
    color: #827b8d;

    font-size: 12px;
    font-weight: 750;
}

.loyalty-coupon-sheet__expire strong {
    color: #302948;

    font-size: 14px;
    font-weight: 950;
}

/* Код */

.loyalty-coupon-sheet__code {
    margin-top: 18px;
}

.loyalty-coupon-sheet__code > span {
    display: block;

    margin-bottom: 8px;

    color: #817a8c;

    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.loyalty-coupon-sheet__code > div {
    min-height: 64px;
    padding: 9px 10px 9px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    border: 1px dashed #b9b1cf;
    border-radius: 18px;

    background: #f8f6fc;
}

.loyalty-coupon-sheet__code strong {
    min-width: 0;

    color: #302948;

    font-size: 21px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .07em;

    overflow-wrap: anywhere;
}

.loyalty-coupon-sheet__code button {
    height: 42px;
    padding: 0 15px;

    flex: 0 0 auto;

    border: 0;
    border-radius: 13px;

    background: #302948;
    color: #ffffff;

    font-size: 11px;
    font-weight: 900;

    cursor: pointer;
}

.loyalty-coupon-sheet__code button.is-copied {
    background: #5f9d72;
}

/* Условия */

.loyalty-coupon-sheet__conditions {
    margin-top: 25px;
}

.loyalty-coupon-sheet__conditions h4 {
    margin: 0 0 10px;

    color: #24202c;

    font-size: 17px;
    line-height: 1.2;
    font-weight: 950;
}

.loyalty-coupon-sheet__conditions > div {
    color: #6f6976;

    font-size: 14px;
    line-height: 1.58;
}

/* Переход к товарам */

.loyalty-coupon-sheet__products {
    width: 100%;
    min-height: 56px;
    margin-top: 27px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 18px;

    background: #111111;
    color: #ffffff;

    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .055em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 12px 28px rgba(17, 17, 17, .18);

    cursor: pointer;

    transition:
        transform .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.loyalty-coupon-sheet__products:hover {
    background: #2a2a2a;
    color: #ffffff;

    box-shadow: 0 15px 34px rgba(17, 17, 17, .24);
}

.loyalty-coupon-sheet__products:active {
    transform: scale(.985);
}

.loyalty-coupon-sheet__products:visited {
    color: #ffffff;
}

/* =====================================================
   МОБИЛЬНАЯ ВЕРСИЯ
===================================================== */

@media (max-width: 699px) {

    .account-loyalty-offers {
        padding-right: 0;
    }

    .account-loyalty-offers__head {
        padding-right: 18px;
    }

    .account-loyalty-offers__track {
        padding-right: 18px;
    }

    .account-loyalty-offers__track.has-one {
        padding-right: 18px;
    }

    .account-loyalty-offers__track.has-many
    .account-loyalty-offer-card {
        flex-basis: 88%;
    }

    .account-loyalty-offer-card {
        min-height: 215px;
        padding: 20px;

        grid-template-columns: minmax(0, 1fr) 60px;

        border-radius: 24px;
    }

    .account-loyalty-offer-card__title {
        font-size: 21px;
    }

    .account-loyalty-offer-card__symbol {
        width: 58px;
        height: 58px;

        border-radius: 19px;

        font-size: 27px;
    }

    .loyalty-coupon-sheet__panel {
        width: 100%;
        max-height: 90vh;

        padding:
            12px
            18px
            calc(100px + env(safe-area-inset-bottom));

        border-radius: 28px 28px 0 0;
    }

    .loyalty-coupon-sheet__content h3 {
        padding-right: 38px;

        font-size: 27px;
    }
}

@media (max-width: 390px) {

    .account-loyalty-offer-card {
        grid-template-columns: minmax(0, 1fr) 52px;
        padding: 18px;
    }

    .account-loyalty-offer-card__title {
        font-size: 19px;
    }

    .account-loyalty-offer-card__description {
        font-size: 12px;
    }

    .account-loyalty-offer-card__symbol {
        width: 52px;
        height: 52px;

        border-radius: 17px;

        font-size: 24px;
    }

    .loyalty-coupon-sheet__code > div {
        align-items: stretch;
        flex-direction: column;
    }

    .loyalty-coupon-sheet__code button {
        width: 100%;
    }
}


/* =====================================================
   COUPON PRODUCTS PAGE
===================================================== */

.promo-catalog-page {
    padding-top: 96px;
}

/* Верхний блок предложения */

.promo-catalog-page .catalog-head {
    padding: 28px 24px 26px;

    background:
        linear-gradient(
            135deg,
            #f0ebff 0%,
            #f8e7ef 100%
        );

    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.promo-catalog-page .catalog-breadcrumbs {
    margin-bottom: 14px;

    color: rgba(38, 31, 49, .55);
}

.promo-catalog-page .catalog-breadcrumbs a {
    color: rgba(38, 31, 49, .55);
}

.promo-catalog-page .catalog-breadcrumbs span:last-child {
    color: rgba(38, 31, 49, .72);
}

.promo-catalog-page .catalog-title {
    max-width: 760px;

    color: #211b2a;

    font-size: clamp(32px, 4vw, 36px);
    line-height: .95;
    font-weight: 950;
    letter-spacing: -.045em;
}

/* Краткое описание */

.promo-catalog-description {
    max-width: 620px;
    margin: 16px 0 0;

    color: rgba(46, 39, 55, .68);

    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}

/* Промокод */

.promo-catalog-code {
    width: fit-content;
    min-width: 220px;
    margin-top: 22px;
    padding: 12px 16px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px dashed rgba(76, 61, 124, .35);
    border-radius: 16px;

    background: rgba(255, 255, 255, .72);

    box-shadow:
        0 10px 28px rgba(48, 41, 72, .08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.promo-catalog-code span {
    color: rgba(48, 41, 72, .58);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.promo-catalog-code strong {
    color: #302948;

    font-size: 20px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;
}

/* Полоса над товарами */

.promo-catalog-page .catalog-sticky-bar {
    top: 68px;

    min-height: 68px;

    background: rgba(255, 255, 255, .96);
}

.promo-catalog-page .catalog-chip.active {
    height: 34px;
    padding: 0 18px;

    border: 0;

    background: #302948;
    color: #ffffff;

    font-weight: 850;
}

.promo-catalog-page .catalog-count {
    color: #8f8998;
}

/* Сетка товаров */

.promo-catalog-page .catalog-products-section {
    padding-top: 18px;
}

.promo-catalog-page .catalog-products-grid {
    gap: 38px 10px;
}

/* Карточки */

.promo-catalog-page .catalog-product-photo {
    border-radius: 8px;
}

.promo-catalog-page .catalog-product-card {
    transition: transform .2s ease;
}

.promo-catalog-page .catalog-product-card:hover {
    transform: translateY(-2px);
}

/* Пустая страница */

.promo-catalog-page .catalog-empty {
    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8c8792;

    font-size: 17px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 899px) {

    .promo-catalog-page {
        padding-top: 68px;
    }

    .promo-catalog-page .catalog-head {
        padding: 24px 16px 22px;

        border-radius: 0 0 26px 26px;
    }

    .promo-catalog-page .catalog-breadcrumbs {
        margin-bottom: 12px;

        font-size: 11px;
    }

    .promo-catalog-page .catalog-title {
        font-size: 34px;
        line-height: .98;
    }

    .promo-catalog-description {
        max-width: 100%;
        margin-top: 13px;

        font-size: 15px;
        line-height: 1.45;
    }

    .promo-catalog-code {
        width: 100%;
        min-width: 0;
        margin-top: 18px;
        padding: 13px 15px;

        justify-content: space-between;
    }

    .promo-catalog-code strong {
        font-size: 18px;
    }

    .promo-catalog-page .catalog-sticky-bar {
        top: 68px;

        min-height: 60px;
        padding: 0 12px;
    }

    .promo-catalog-page .catalog-products-section {
        padding: 14px 8px 0;
    }

    .promo-catalog-page .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 6px;
    }
}

@media (max-width: 390px) {

    .promo-catalog-page .catalog-title {
        font-size: 30px;
    }

    .promo-catalog-code {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}



/* =====================================================
   NAVIGATION COUPONS
===================================================== */

.navigation-coupons {
    margin: 24px 0 28px;
}

.navigation-coupons__head {
    padding: 0 30px;
    margin-bottom: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.navigation-coupons__head span {
    color: #15131b;

    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.navigation-coupons__head strong {
    min-width: 25px;
    height: 25px;
    padding: 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #f0edf6;
    color: #625a70;

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.navigation-coupons__track {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 2px 5px;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.navigation-coupons__track::-webkit-scrollbar {
    display: none;
}

.navigation-coupon-card {
    position: relative;

    min-height: 178px;
    padding: 19px;

    flex: 0 0 100%;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 16px;
    align-items: start;

    overflow: hidden;

    border-radius: 24px;

    color: #1e1a28;

    scroll-snap-align: start;

    box-shadow:
        0 13px 30px rgba(52, 42, 70, .1);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.navigation-coupons__track.has-many
.navigation-coupon-card {
    flex-basis: 88%;
}

.navigation-coupon-card:hover {
    color: #1e1a28;

    transform: translateY(-2px);

    box-shadow:
        0 17px 36px rgba(52, 42, 70, .15);
}

.navigation-coupon-card:active {
    transform: scale(.985);
}

.navigation-coupon-card::before {
    content: "";

    position: absolute;
    width: 165px;
    height: 165px;
    right: -55px;
    top: -62px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .34);
}

.navigation-coupon-card::after {
    content: "";

    position: absolute;
    width: 105px;
    height: 105px;
    left: -52px;
    bottom: -58px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .24);
}

.navigation-coupon-card--theme-1 {
    background:
        linear-gradient(
            135deg,
            #f0e9ff 0%,
            #f8e3ec 100%
        );
}

.navigation-coupon-card--theme-2 {
    background:
        linear-gradient(
            135deg,
            #e4f4ff 0%,
            #eee8ff 100%
        );
}

.navigation-coupon-card--theme-3 {
    background:
        linear-gradient(
            135deg,
            #fff0dc 0%,
            #ffe4e8 100%
        );
}

.navigation-coupon-card--theme-4 {
    background:
        linear-gradient(
            135deg,
            #e7f8ed 0%,
            #e5f1ff 100%
        );
}

.navigation-coupon-card--theme-5 {
    background:
        linear-gradient(
            135deg,
            #f4e8ff 0%,
            #e8ecff 100%
        );
}

.navigation-coupon-card__content,
.navigation-coupon-card__symbol,
.navigation-coupon-card__arrow {
    position: relative;
    z-index: 2;
}

.navigation-coupon-card__content {
    min-width: 0;
}

.navigation-coupon-card__label {
    display: block;

    color: #847c90;

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.navigation-coupon-card__title {
    display: block;

    margin-top: 8px;

    color: #1e1a28;

    font-size: 21px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.035em;
}

.navigation-coupon-card__description {
    max-width: 280px;
    margin: 9px 0 0;

    color: #716a7d;

    font-size: 12px;
    line-height: 1.42;
    font-weight: 650;
}

.navigation-coupon-card__bottom {
    margin-top: 16px;

    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.navigation-coupon-card__bottom b {
    min-height: 29px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;

    border-radius: 9px;

    background: rgba(255, 255, 255, .62);
    color: #302948;

    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navigation-coupon-card__bottom em {
    color: #7c7488;

    font-size: 10px;
    line-height: 1;
    font-style: normal;
    font-weight: 750;
}

.navigation-coupon-card__symbol {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 19px;

    background: rgba(255, 255, 255, .56);
    color: #403653;

    font-size: 27px;
    line-height: 1;
    font-weight: 950;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navigation-coupon-card__arrow {
    position: absolute;
    right: 19px;
    bottom: 18px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #302948;
    color: #ffffff;
}

.navigation-coupon-card__arrow svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 390px) {

    .navigation-coupon-card {
        min-height: 170px;
        padding: 17px;

        grid-template-columns: minmax(0, 1fr) 52px;

        border-radius: 22px;
    }

    .navigation-coupon-card__title {
        font-size: 19px;
    }

    .navigation-coupon-card__symbol {
        width: 52px;
        height: 52px;

        border-radius: 17px;

        font-size: 24px;
    }

    .navigation-coupon-card__arrow {
        right: 17px;
        bottom: 16px;
    }
}