:root {
    --blue: #1763d5;
    --blue-dark: #0e4fb6;
    --text: #111827;
    --muted: #7c8493;
    --border: #e8ebf1;
    --surface: #f6f8fb;
    --white: #ffffff;
    --container-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Arial,
                sans-serif;
}

body.menu-open {
    overflow: hidden;
}

button,
        input {
    font: inherit;
}

button,
        a,
        input {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-top {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto
                auto
                minmax(260px, 1fr)
                auto
                auto;
    align-items: center;
    gap: 24px;
}

.header-logo {
    display: flex;
    flex-direction: column;
    color: var(--text);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.header-logo strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.header-logo span {
    margin-top: 5px;
    color: #626b78;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.header-city {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    color: #555f70;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header-city:hover {
    color: var(--blue);
}

.header-city svg,
        .header-nav svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-search {
    height: 44px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid #f0f2f6;
    border-radius: 10px;
}

.header-search:focus-within {
    border-color: #b7cff5;
    box-shadow: 0 0 0 3px rgba(23, 99, 213, 0.08);
}

.header-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    padding: 0 16px;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
}

.header-search input::placeholder {
    color: #a0a7b3;
}

.header-search button {
    width: 48px;
    height: 100%;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: #667085;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.header-search button:hover {
    color: var(--blue);
}

.header-search svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.header-phone {
    display: flex;
    flex-direction: column;
    color: var(--text);
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone strong {
    font-size: 15px;
    font-weight: 700;
}

.header-phone span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

.header-navigation {
    border-top: 1px solid #f4f5f7;
}

.header-navigation-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3f4754;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-nav a:hover,
        .header-nav a.is-active {
    color: var(--blue);
}

.header-nav a.is-active {
    font-weight: 600;
}

.header-appointment {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    color: #fff;
    background: var(--blue);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(23, 99, 213, 0.14);
    transition: background-color 0.2s ease,
                transform 0.2s ease;
}

.header-appointment:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.header-menu-button,
        .header-mobile-info {
    display: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    visibility: hidden;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease,
                visibility 0.25s ease;
}

.menu-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

main {
    min-height: 1px;
}

@media (max-width: 1100px) {
    .header-top {
        grid-template-columns: auto
                    auto
                    minmax(200px, 1fr)
                    auto;
        gap: 18px;
    }

    .header-nav {
        gap: 18px;
    }

    .header-nav a {
        font-size: 12px;
    }

    .header-appointment {
        padding-inline: 18px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-top {
        min-height: 72px;
        grid-template-columns: auto 1fr auto;
    }

    .header-city,
            .header-search-desktop,
            .header-phone {
        display: none;
    }

    .header-menu-button {
        width: 42px;
        height: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        justify-self: end;
        background: #f4f7fc;
        border: 0;
        border-radius: 8px;
        cursor: pointer;
    }

    .header-menu-button span {
        width: 20px;
        height: 2px;
        display: block;
        background: var(--text);
        border-radius: 2px;
        transition: transform 0.25s ease,
                    opacity 0.25s ease;
    }

    .header-menu-button.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .header-menu-button.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(15, 31, 56, 0.1);
        opacity: 0;
        transition: max-height 0.35s ease,
                    opacity 0.25s ease,
                    visibility 0.25s ease;
    }

    .header-navigation.is-open {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
    }

    .header-navigation-inner {
        min-height: 0;
        display: block;
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .header-nav a {
        min-height: 48px;
        justify-content: space-between;
        padding: 0 4px;
        border-bottom: 1px solid #f0f2f5;
        font-size: 14px;
    }

    .header-appointment {
        width: 100%;
        min-height: 48px;
        margin-top: 18px;
    }

    .header-mobile-info {
        display: flex;
        flex-direction: column;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
    }

    .header-mobile-info a {
        color: var(--text);
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
    }

    .header-mobile-info span {
        margin-top: 5px;
        color: var(--muted);
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 24px), var(--container-width));
    }

    .header-top {
        min-height: 64px;
    }

    .header-logo strong {
        font-size: 18px;
    }

    .header-logo span {
        font-size: 8px;
    }

    .header-navigation.is-open {
        max-height: calc(100vh - 64px);
    }

    .header-search {
        height: 42px;
        border-radius: 8px;
    }

    .header-search input {
        padding-left: 13px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .container {
        width: min(calc(100% - 20px), var(--container-width));
    }

    .header-logo strong {
        font-size: 16px;
    }

    .header-menu-button {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
            *::before,
            *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(
            circle at 54% 36%,
            rgba(215, 226, 246, 0.8),
            transparent 32%
        ),
        linear-gradient(
            105deg,
            #f7f9fd 0%,
            #f4f7fc 53%,
            #edf3fb 100%
        );
}

.hero-container {
    position: relative;
}

.breadcrumbs {
    position: relative;
    z-index: 5;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa2af;
    font-size: 11px;
}

.breadcrumbs a {
    color: #858e9d;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumbs span {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-grid {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: minmax(310px, 1fr)
        minmax(270px, 0.78fr)
        285px;
    align-items: stretch;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 17px 20px 44px 0;
}

.hero-title {
    max-width: 520px;
    margin: 0;
    color: #15171c;
    font-size: clamp(38px, 3.55vw, 51px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.hero-description {
    max-width: 515px;
    margin: 18px 0 0;
    color: #3f4651;
    font-size: 15px;
    line-height: 1.65;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 34px;
    margin-top: 28px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-feature-icon {
    width: 27px;
    height: 27px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue);
    border: 1px solid #d9e5f9;
    border-radius: 50%;
}

.hero-feature-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    padding-top: 1px;
}

.hero-feature-text strong {
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-feature-text small {
    max-width: 105px;
    margin-top: 3px;
    color: #7d8591;
    font-size: 9px;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-1px);
}

.hero-button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 7px 17px rgba(23, 99, 213, 0.17);
}

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

.hero-button-secondary {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.75);
}

.hero-button-secondary:hover {
    color: #fff;
    background: var(--blue);
}

.hero-person {
    position: relative;
    min-height: 390px;
    align-self: end;
    overflow: hidden;
}

.hero-person::before {
    content: "";
    position: absolute;
    inset: 8% -5% 0;
    background: radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, 0.9),
            rgba(231, 238, 248, 0.15) 60%,
            transparent 72%
        );
}

.hero-person img {
    position: absolute;
    right: -7%;
    bottom: 0;
    width: 112%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: multiply;
}

.hero-steps {
    position: relative;
    z-index: 5;
    align-self: center;
    margin: 0 0 22px;
    padding: 22px 24px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(225, 230, 239, 0.82);
    border-radius: 10px;
    box-shadow: 0 11px 28px rgba(50, 71, 105, 0.09);
    backdrop-filter: blur(8px);
}

.hero-steps h2 {
    margin: 0 0 16px;
    color: #22262d;
    font-size: 17px;
    font-weight: 600;
}

.hero-steps-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-step {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: start;
    gap: 10px;
}

.hero-step-number {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #edf4ff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.hero-step-content {
    display: flex;
    flex-direction: column;
}

.hero-step-content strong {
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-step-content small {
    max-width: 185px;
    margin-top: 3px;
    color: #858c98;
    font-size: 9px;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: minmax(300px, 1fr)
            minmax(230px, 0.65fr)
            260px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-features {
        gap: 18px;
    }

    .hero-steps {
        padding-inline: 19px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: end;
    }

    .hero-content {
        padding: 12px 0 42px;
    }

    .hero-title {
        font-size: clamp(36px, 5.5vw, 46px);
    }

    .hero-description {
        max-width: 500px;
    }

    .hero-features {
        grid-template-columns: repeat(2, auto);
        gap: 20px 28px;
    }

    .hero-person {
        min-height: 410px;
    }

    .hero-person img {
        right: -16%;
        width: 126%;
    }

    .hero-steps {
        grid-column: 1 / -1;
        width: 100%;
        margin: 0 0 30px;
    }

    .hero-steps-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .hero-step {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .hero-step-content small {
        max-width: none;
    }
}

@media (max-width: 680px) {
    .breadcrumbs {
        min-height: 44px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding: 15px 0 28px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 42px);
        letter-spacing: -1px;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-features {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 22px;
    }

    .hero-feature-text strong {
        font-size: 12px;
    }

    .hero-feature-text small {
        max-width: none;
        font-size: 10px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 26px;
    }

    .hero-button {
        width: 100%;
        min-height: 46px;
    }

    .hero-person {
        width: calc(100% + 24px);
        min-height: 330px;
        margin-left: -12px;
        order: 2;
    }

    .hero-person img {
        right: 50%;
        width: 330px;
        height: 350px;
        transform: translateX(50%);
        object-position: center top;
    }

    .hero-steps {
        width: 100%;
        margin: 0 0 24px;
        order: 3;
        padding: 20px;
    }

    .hero-steps-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-step {
        grid-template-columns: 26px 1fr;
        gap: 10px;
    }

    .hero-step-content strong {
        font-size: 12px;
    }

    .hero-step-content small {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-person {
        min-height: 300px;
    }

    .hero-person img {
        width: 300px;
        height: 320px;
    }

    .hero-steps {
        padding-inline: 16px;
    }
}

.brands-strip {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #e9edf3;
}

.brands-strip .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.brands-strip-title {
    margin: 0 0 18px;
    color: #464d58;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: none;
}

.brands-strip-list {
    display: grid;
    grid-template-columns: repeat(7, minmax(90px, 1fr));
    align-items: center;
    gap: 28px;
}

.brand-logo {
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #131820;
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.brand-logo:hover {
    color: var(--blue);
    transform: translateY(-2px);
}

.brands-scroll-hint {
    display: none;
}

@media (max-width: 1100px) {
    .brands-strip-list {
        gap: 18px;
    }
}

@media (max-width: 900px) {
    .brands-strip .container {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .brands-strip-list {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
        gap: 20px 24px;
    }

    .brand-logo {
        min-height: 58px;
    }
}

@media (max-width: 600px) {
    .brands-strip .container {
        width: 100%;
        max-width: none;
        padding-top: 16px;
        padding-right: 0;
        padding-bottom: 14px;
        padding-left: 0;
    }

    .brands-strip-title {
        margin: 0 16px 14px;
        color: #464d58;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.4;
    }

    .brands-strip-list {
        display: flex;
        align-items: stretch;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 16px 12px;
        scroll-padding-inline: 16px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .brands-strip-list::-webkit-scrollbar {
        display: none;
    }

    .brand-logo {
        min-width: 138px;
        min-height: 74px;
        flex: 0 0 138px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 10px 12px;
        background: #ffffff;
        border: 1px solid #edf0f5;
        border-radius: 10px;
        box-shadow: 0 5px 14px rgba(20, 40, 75, 0.05);
    }

    .brand-logo:hover {
        transform: none;
    }

    .brand-logo-zeiss {
        min-width: 98px;
        flex-basis: 98px;
    }

    .brands-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        padding: 0 16px;
        color: #8b93a1;
        font-size: 10px;
        line-height: 1.3;
    }

    .brands-scroll-hint span {
        color: var(--blue);
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 380px) {
    .brands-strip-title {
        margin-right: 12px;
        margin-left: 12px;
    }

    .brands-strip-list {
        gap: 10px;
        padding-right: 12px;
        padding-left: 12px;
        scroll-padding-inline: 12px;
    }

    .brand-logo {
        min-width: 126px;
        min-height: 70px;
        flex-basis: 126px;
        padding: 9px 10px;
    }

    .brand-logo-zeiss {
        min-width: 92px;
        flex-basis: 92px;
    }

    .brands-scroll-hint {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (hover: none) {
    .brand-logo:hover {
        color: #131820;
        transform: none;
    }

    .brand-logo-hoya:hover {
        color: #1763b9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-logo {
        transition: none;
    }

    .brands-strip-list {
        scroll-behavior: auto;
    }
}

.products-section {
    padding: 26px 0 36px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border-bottom: 1px solid #edf0f5;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.products-header h2 {
    margin: 0;
    color: #181b21;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.products-filter-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    color: var(--blue, #1763d5);
    background: #ffffff;
    border: 1px solid #c9d9f2;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.products-filter-button:hover {
    color: #ffffff;
    background: var(--blue, #1763d5);
    border-color: var(--blue, #1763d5);
}

.products-filter-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.products-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 3px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.products-tabs::-webkit-scrollbar {
    display: none;
}

.products-tab {
    min-height: 34px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #4f5661;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    scroll-snap-align: start;
    transition: color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.products-tab:hover {
    color: var(--blue, #1763d5);
    border-color: #bcd1f1;
}

.products-tab.is-active {
    color: #ffffff;
    background: var(--blue, #1763d5);
    border-color: var(--blue, #1763d5);
    box-shadow: 0 5px 13px rgba(23, 99, 213, 0.16);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 12px;
    background: #ffffff;
    border: 1px solid #ebedf2;
    border-radius: 8px;
    box-shadow: 0 6px 19px rgba(31, 49, 79, 0.05);
    transition: transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(31, 49, 79, 0.09);
}

.product-card-brand-row {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-label {
    min-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: #ffffff;
    border-radius: 3px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.product-card-label-purple {
    background: #8a3bb5;
}

.product-card-label-orange {
    background: #ff9d43;
}

.product-card-brand-name {
    color: #31363e;
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 48px;
    margin: 10px 0 0;
    color: #15191f;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.25px;
}

.product-card-description {
    min-height: 44px;
    margin: 12px 0 0;
    color: #555d69;
    font-size: 10px;
    line-height: 1.55;
}

.product-card-details {
    display: grid;
    gap: 7px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.product-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #737b87;
    font-size: 8.5px;
    line-height: 1.4;
}

.product-card-details svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    fill: none;
    stroke: #9aa5b4;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card-price {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    justify-content: start;
    column-gap: 4px;
    margin-top: auto;
    padding-top: 18px;
}

.product-card-price span {
    color: #2b3038;
    font-size: 10px;
    font-weight: 500;
}

.product-card-price strong {
    color: #12161c;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.product-card-price small {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: #7f8793;
    font-size: 8px;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 15px;
}

.product-card-more {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d5bab;
    background: #ffffff;
    border: 1px solid #d4deed;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
}

.product-card-more:hover {
    color: #ffffff;
    background: var(--blue, #1763d5);
    border-color: var(--blue, #1763d5);
}

.products-message {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #747d8a;
    background: #ffffff;
    border: 1px solid #e8ecf2;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.products-message.is-error {
    color: #a93e3e;
    background: #fffafa;
    border-color: #efd8d8;
}

.products-footer {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.products-show-more {
    min-width: 280px;
    min-height: 40px;
    padding: 0 20px;
    color: var(--blue, #1763d5);
    background: #ffffff;
    border: 1px solid #87afe9;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.products-show-more:hover {
    color: #ffffff;
    background: var(--blue, #1763d5);
}

.products-mobile-hint {
    display: none;
}

body.filters-open {
    overflow: hidden;
}

.filters-overlay {
    position: fixed;
    inset: 0;
    z-index: 1990;
    visibility: hidden;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    transition: opacity 0.25s ease,
        visibility 0.25s ease;
}

.filters-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

.filters-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    width: min(420px, 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    background: #ffffff;
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease,
        visibility 0.3s ease;
}

.filters-panel.is-open {
    visibility: visible;
    transform: translateX(0);
}

.filters-panel-header {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #edf0f4;
}

.filters-panel-header h3 {
    margin: 0;
    color: #171b22;
    font-size: 21px;
    font-weight: 600;
}

.filters-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #313844;
    background: #f4f6f9;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.filters-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.filters-form {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px 110px;
}

.filter-group {
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid #edf0f4;
}

.filter-group legend {
    width: 100%;
    margin-bottom: 14px;
    padding: 0;
    color: #222832;
    font-size: 14px;
    font-weight: 600;
}

.filter-price {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.filter-price label > span {
    display: block;
    margin-bottom: 6px;
    color: #7b8491;
    font-size: 10px;
}

.filter-price input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    color: #252b34;
    background: #ffffff;
    border: 1px solid #dde3eb;
    border-radius: 7px;
    outline: none;
}

.filter-price input:focus {
    border-color: #9dbce9;
    box-shadow: 0 0 0 3px rgba(23, 99, 213, 0.08);
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.filter-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    color: #4d5663;
    font-size: 12px;
    cursor: pointer;
}

.filter-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.filter-checkbox span {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-checkbox span::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #cdd5df;
}

.filter-checkbox span::before {
    border-radius: 4px;
}

.filter-checkbox input:checked + span::before {
    background: var(--blue, #1763d5)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 12 4 4 8-9' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / 13px no-repeat;
    border-color: var(--blue, #1763d5);
}

.filters-placeholder {
    grid-column: 1 / -1;
    margin: 0;
    color: #929aa6;
    font-size: 11px;
}

.filters-actions {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 16px 24px;
    background: #ffffff;
    border-top: 1px solid #e8ecf2;
}

.filters-reset,
.filters-submit {
    min-height: 45px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.filters-reset {
    color: #596270;
    background: #ffffff;
    border: 1px solid #dce2ea;
}

.filters-submit {
    color: #ffffff;
    background: var(--blue, #1763d5);
    border: 1px solid var(--blue, #1763d5);
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-card h3,
    .product-card-description {
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .products-section {
        padding: 21px 0 28px;
    }

    .products-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .products-header h2 {
        font-size: 19px;
    }

    .products-filter-button {
        width: 40px;
        padding: 0;
    }

    .products-filter-button span {
        display: none;
    }

    .products-tabs {
        width: calc(100% + 24px);
        margin-right: -12px;
        margin-left: -12px;
        padding-right: 12px;
        padding-left: 12px;
        scroll-padding-inline: 12px;
    }

    .products-grid {
        width: calc(100% + 24px);
        display: flex;
        gap: 12px;
        margin-right: -12px;
        margin-left: -12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 12px 14px;
        scroll-padding-inline: 12px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        min-width: min(84vw, 310px);
        flex: 0 0 min(84vw, 310px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .product-card:hover {
        transform: none;
    }

    .products-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        color: #8a929e;
        font-size: 10px;
    }

    .products-mobile-hint span {
        color: var(--blue, #1763d5);
        font-size: 14px;
    }

    .products-show-more {
        width: 100%;
        min-width: 0;
    }

    .filters-panel {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .products-header h2 {
        font-size: 18px;
    }

    .product-card {
        min-width: 86vw;
        flex-basis: 86vw;
    }

    .filters-panel-header {
        min-height: 64px;
        padding-inline: 16px;
    }

    .filters-form {
        padding-right: 16px;
        padding-left: 16px;
    }

    .filter-options {
        grid-template-columns: 1fr;
    }

    .filters-actions {
        grid-template-columns: 105px 1fr;
        padding: 13px 16px;
    }
}

.lens-benefits-section {
    padding: 22px 0 30px;
    background: linear-gradient(
            180deg,
            #fbfcfe 0%,
            #ffffff 100%
        );
}

.lens-levels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lens-level-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 15px;
    padding: 18px 18px 17px;
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 9px;
    box-shadow: 0 6px 20px rgba(27, 48, 82, 0.05);
    transition: transform 0.2s ease,
        box-shadow 0.2s ease;
}

.lens-level-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(27, 48, 82, 0.09);
}

.lens-level-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.lens-level-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lens-level-standard .lens-level-icon {
    color: #8150d5;
    background: #f0eaff;
}

.lens-level-premium .lens-level-icon {
    color: #1763d5;
    background: #eaf2ff;
}

.lens-level-individual .lens-level-icon {
    color: #1d9b63;
    background: #e7f7ef;
}

.lens-level-content {
    min-width: 0;
}

.lens-level-content h3 {
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.lens-level-standard h3 {
    color: #7545bd;
}

.lens-level-premium h3 {
    color: #1763d5;
}

.lens-level-individual h3 {
    color: #178b57;
}

.lens-level-intro {
    min-height: 38px;
    margin: 6px 0 0;
    color: #707986;
    font-size: 9px;
    line-height: 1.5;
}

.lens-level-content ul {
    display: grid;
    gap: 7px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.lens-level-content li {
    color: #4d5561;
    font-size: 9px;
    line-height: 1.35;
}

.lens-level-for {
    margin: 13px 0 0;
    color: #565e6a;
    font-size: 8px;
    line-height: 1.45;
}

.lens-level-price {
    margin-top: 4px;
    color: #1763d5;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.why-us {
    margin-top: 22px;
    padding: 15px 14px 16px;
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 9px;
    box-shadow: 0 6px 20px rgba(27, 48, 82, 0.05);
}

.why-us .container > h2 {
    margin: 0 0 11px;
    color: #171b21;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.why-us-item {
    min-width: 0;
    text-align: center;
}

.why-us-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    color: #1763d5;
    background: #ffffff;
    border: 1px solid #9ec0f2;
    border-radius: 50%;
}

.why-us-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-us-item h3 {
    margin: 0;
    color: #22272f;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
}

.why-us-item p {
    margin: 4px 0 0;
    color: #737b87;
    font-size: 8px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .lens-level-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding-inline: 15px;
    }

    .lens-level-icon {
        width: 42px;
        height: 42px;
    }

    .why-us-grid {
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .lens-levels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lens-level-card:last-child {
        grid-column: 1 / -1;
    }

    .why-us-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .why-us-item:nth-child(4),
    .why-us-item:nth-child(5) {
        transform: translateX(50%);
    }
}

@media (max-width: 650px) {
    .lens-benefits-section {
        padding: 18px 0 24px;
        overflow: hidden;
    }

    .lens-levels {
        width: calc(100% + 24px);
        display: flex;
        gap: 12px;
        margin-right: -12px;
        margin-left: -12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 12px 12px;
        scroll-padding-inline: 12px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .lens-levels::-webkit-scrollbar {
        display: none;
    }

    .lens-level-card,
    .lens-level-card:last-child {
        min-width: min(86vw, 330px);
        flex: 0 0 min(86vw, 330px);
        grid-column: auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .lens-level-card:hover {
        transform: none;
    }

    .lens-level-intro {
        min-height: 0;
    }

    .why-us {
        margin-top: 15px;
        padding: 15px 12px 18px;
    }

.why-us .container > h2 {
        font-size: 16px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
    }

    .why-us-item:nth-child(4),
    .why-us-item:nth-child(5) {
        transform: none;
    }

    .why-us-item:last-child {
        grid-column: 1 / -1;
    }

    .why-us-item h3 {
        font-size: 11px;
    }

    .why-us-item p {
        font-size: 9px;
    }
}

@media (max-width: 380px) {
    .lens-level-card,
    .lens-level-card:last-child {
        min-width: 88vw;
        flex-basis: 88vw;
        padding: 15px 13px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-item:last-child {
        grid-column: auto;
    }
}

@media (hover: none) {
    .lens-level-card:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(27, 48, 82, 0.05);
    }
}

.selection-process {
    padding: 27px 0 34px;
    background: #ffffff;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
}

.selection-process h2 {
    margin: 0;
    color: #181c22;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.25px;
}

.selection-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    margin-top: 27px;
}

.selection-process-list::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    left: 0;
    height: 1px;
    background: #dbe5f4;
}

.selection-process-item {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.selection-process-number {
    position: relative;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    color: #1763d5;
    background: #ffffff;
    border: 1px solid #7ca8e8;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffffff;
}

.selection-process-number::before {
    content: "";
    position: absolute;
    top: -4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: #1763d5;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.selection-process-number span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.selection-process-item h3 {
    margin: 13px 0 0;
    color: #242930;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
}

.selection-process-item p {
    margin: 5px 0 0;
    color: #737c89;
    font-size: 8px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .selection-process-list {
        gap: 12px;
    }

    .selection-process-item h3 {
        font-size: 9.5px;
    }

    .selection-process-item p {
        font-size: 7.5px;
    }
}

@media (max-width: 900px) {
    .selection-process {
        padding: 25px 0 30px;
    }

    .selection-process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .selection-process-list::before {
        display: none;
    }

    .selection-process-item::before {
        content: "";
        position: absolute;
        top: 22px;
        left: calc(50% + 23px);
        width: calc(100% - 46px + 18px);
        height: 1px;
        background: #dbe5f4;
    }

    .selection-process-item:nth-child(3n)::before {
        display: none;
    }

    .selection-process-item h3 {
        font-size: 11px;
    }

    .selection-process-item p {
        font-size: 9px;
    }
}

@media (max-width: 650px) {
    .selection-process {
        padding: 23px 0 28px;
        overflow: hidden;
    }

    .selection-process h2 {
        font-size: 17px;
    }

    .selection-process-list {
        width: calc(100% + 24px);
        display: flex;
        gap: 12px;
        margin-right: -12px;
        margin-left: -12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 12px 14px;
        scroll-padding-inline: 12px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .selection-process-list::-webkit-scrollbar {
        display: none;
    }

    .selection-process-item {
        min-width: 150px;
        flex: 0 0 150px;
        padding: 18px 12px 16px;
        background: #ffffff;
        border: 1px solid #e8edf4;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(30, 49, 80, 0.05);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .selection-process-item::before {
        display: none;
    }

    .selection-process-number {
        width: 43px;
        height: 43px;
        box-shadow: none;
    }

    .selection-process-item h3 {
        margin-top: 12px;
        font-size: 11px;
    }

    .selection-process-item p {
        font-size: 9px;
    }
}

@media (max-width: 380px) {
    .selection-process-item {
        min-width: 145px;
        flex-basis: 145px;
    }

    .selection-process h2 {
        font-size: 16px;
    }
}

.faq-consultation {
    padding: 26px 0 30px;
    background: #ffffff;
    border-bottom: 1px solid #edf0f4;
}

.faq-section-title {
    margin: 0 0 18px;
    color: #181c22;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.faq-consultation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: stretch;
    gap: 18px;
}

.faq-list {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8ecf2;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(27, 48, 82, 0.04);
}

.faq-item + .faq-item {
    border-top: 1px solid #edf0f4;
}

.faq-question {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 17px;
    color: #22272f;
    background: #ffffff;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease,
        background-color 0.2s ease;
}

.faq-question:hover {
    color: #1763d5;
    background: #fbfcff;
}

.faq-question span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.faq-question svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: #1763d5;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question {
    color: #1763d5;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: #fbfcff;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 17px;
    color: #68717e;
    font-size: 10px;
    line-height: 1.65;
    transition: padding 0.3s ease;
}

.faq-item.is-open .faq-answer-inner {
    padding-top: 2px;
    padding-bottom: 16px;
}

.consultation-card {
    position: relative;
    min-height: 320px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    overflow: hidden;
    background: radial-gradient(
            circle at 85% 25%,
            rgba(255, 255, 255, 0.9),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #f4f7fd 0%,
            #eaf1fc 100%
        );
    border: 1px solid #e4eaf4;
    border-radius: 9px;
    box-shadow: 0 7px 22px rgba(29, 50, 86, 0.06);
}

.consultation-content {
    position: relative;
    z-index: 2;
    padding: 23px 0 22px 22px;
}

.consultation-content h2 {
    max-width: 280px;
    margin: 0;
    color: #1b2027;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.consultation-content > p {
    max-width: 285px;
    margin: 13px 0 0;
    color: #626b78;
    font-size: 10px;
    line-height: 1.6;
}

.consultation-list {
    display: grid;
    gap: 8px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.consultation-list li {
    position: relative;
    padding-left: 19px;
    color: #56606d;
    font-size: 9px;
    line-height: 1.4;
}

.consultation-list li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 1px;
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #27a868;
    border-left: 2px solid #27a868;
    transform: rotate(-45deg);
}

.consultation-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 0 18px;
    color: #ffffff;
    background: #1763d5;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(23, 99, 213, 0.17);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease,
        transform 0.2s ease;
}

.consultation-button:hover {
    background: #0e4fb6;
    transform: translateY(-1px);
}

.consultation-person {
    position: relative;
    align-self: end;
    height: 100%;
}

.consultation-person::before {
    content: "";
    position: absolute;
    inset: 12% -10% 0;
    background: radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.9),
            transparent 68%
        );
}

.consultation-person img {
    position: absolute;
    right: -4px;
    bottom: 0;
    z-index: 1;
    width: 205px;
    height: 285px;
    object-fit: contain;
    object-position: center bottom;
}

@media (max-width: 1100px) {
    .faq-consultation-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
    }

    .consultation-card {
        grid-template-columns: minmax(0, 1fr) 155px;
    }

    .consultation-person img {
        right: -18px;
        width: 185px;
    }
}

@media (max-width: 900px) {
    .faq-consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-card {
        min-height: 290px;
        grid-template-columns: minmax(0, 1fr) 240px;
    }

    .consultation-content {
        padding: 25px 0 24px 25px;
    }

    .consultation-content h2 {
        font-size: 18px;
    }

    .consultation-content > p {
        max-width: 390px;
        font-size: 11px;
    }

    .consultation-list li {
        font-size: 10px;
    }

    .consultation-person img {
        right: 10px;
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 650px) {
    .faq-consultation {
        padding: 23px 0 26px;
    }

    .faq-section-title {
        font-size: 17px;
    }

    .faq-question {
        min-height: 56px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .faq-question span {
        font-size: 11px;
    }

    .faq-answer-inner {
        padding-right: 14px;
        padding-left: 14px;
        font-size: 10px;
    }

    .consultation-card {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .consultation-content {
        padding: 22px 20px 0;
    }

    .consultation-content h2 {
        font-size: 18px;
    }

    .consultation-content > p {
        max-width: none;
    }

    .consultation-button {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        font-size: 10px;
    }

    .consultation-person {
        width: 100%;
        height: 230px;
        margin-top: 18px;
    }

    .consultation-person img {
        right: 50%;
        width: 205px;
        height: 235px;
        transform: translateX(50%);
    }
}

@media (max-width: 380px) {
    .faq-question {
        gap: 12px;
    }

    .faq-question span {
        font-size: 10.5px;
    }

    .consultation-content {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer,
    .faq-answer-inner,
    .faq-question svg {
        transition: none;
    }
}

.site-info-strip {
    background: #ffffff;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.site-info-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.site-info-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #20252c;
    text-decoration: none;
}

a.site-info-item {
    transition: color 0.2s ease,
        opacity 0.2s ease;
}

a.site-info-item:hover {
    color: var(--blue, #1763d5);
}

.site-info-icon {
    width: 32px;
    height: 32px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue, #1763d5);
}

.site-info-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-info-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.site-info-content strong {
    color: #22272f;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    text-shadow: none;
}

.site-info-content small {
    margin-top: 3px;
    color: #7b8390;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: none;
}

@media (max-width: 1100px) {
    .site-info-strip-inner {
        gap: 18px;
    }

    .site-info-item {
        gap: 11px;
    }

    .site-info-content strong {
        font-size: 10.5px;
    }

    .site-info-content small {
        font-size: 8.5px;
    }
}

@media (max-width: 900px) {
    .site-info-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-info-item {
        min-height: 72px;
        padding: 12px 18px;
    }

    .site-info-item:nth-child(odd) {
        border-right: 1px solid #edf0f4;
    }

    .site-info-item:nth-child(-n + 2) {
        border-bottom: 1px solid #edf0f4;
    }
}

@media (max-width: 600px) {
    .site-info-strip-inner {
        grid-template-columns: 1fr;
        padding-top: 0;
        padding-bottom: 0;
    }

    .site-info-item {
        min-height: 68px;
        padding: 14px 0;
        border-right: 0 !important;
        border-bottom: 1px solid #edf0f4;
    }

    .site-info-item:last-child {
        border-bottom: 0;
    }

    .site-info-icon {
        width: 36px;
        height: 36px;
    }

    .site-info-icon svg {
        width: 23px;
        height: 23px;
    }

    .site-info-content strong {
        font-size: 12px;
    }

    .site-info-content small {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .site-info-item {
        gap: 10px;
    }

    .site-info-content strong {
        font-size: 11.5px;
    }

    .site-info-content small {
        font-size: 9.5px;
    }
}

@media (hover: none) {
    a.site-info-item:hover {
        color: #20252c;
    }
}

.site-footer {
    color: #ffffff;
    background: radial-gradient(
            circle at 25% 0%,
            rgba(48, 87, 137, 0.16),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #0f2238 0%,
            #10263f 48%,
            #0d2137 100%
        );
}

.site-footer .container {
    padding-top: 28px;
    padding-bottom: 14px;
}

.site-footer-main {
    display: grid;
    grid-template-columns: 1.35fr
        repeat(3, minmax(130px, 0.85fr))
        1fr;
    align-items: start;
    gap: 46px;
}

.site-footer-brand {
    min-width: 0;
}

.site-footer-logo {
    display: inline-flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1;
    text-decoration: none;
}

.site-footer-logo strong {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.site-footer-logo span {
    margin-top: 6px;
    color: #b9c6d5;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.site-footer-brand > p {
    margin: 20px 0 0;
    color: #c2ccd8;
    font-size: 9px;
    line-height: 1.55;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
}

.site-footer-socials a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #d8e1eb;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.site-footer-socials a:hover {
    color: #ffffff;
    background: #1763d5;
    transform: translateY(-2px);
}

.site-footer-socials svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-column h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.site-footer-column > a {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    margin-top: 0;
    color: #bfcad6;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-column > a + a {
    margin-top: 10px;
}

.site-footer-column > a:hover {
    color: #ffffff;
}

.site-footer-contacts a {
    width: 100%;
}

.site-footer-contacts svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    margin-top: 1px;
    fill: none;
    stroke: #c5d2df;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer-contacts span {
    min-width: 0;
}

.site-footer-bottom {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 25px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-bottom p {
    margin: 0;
    color: #8698aa;
    font-size: 8px;
    line-height: 1.45;
}

.site-footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer-legal > span {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.site-footer-legal a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8fa0b1;
    font-size: 8px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-legal a:hover {
    color: #ffffff;
}

.site-footer-legal svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .site-footer-main {
        grid-template-columns: 1.2fr
            repeat(3, minmax(115px, 0.8fr))
            1fr;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .site-footer .container {
        padding-top: 30px;
    }

    .site-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 40px;
    }

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

    .site-footer-brand > p {
        max-width: 300px;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .site-footer .container {
        padding-top: 27px;
        padding-bottom: 16px;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer-brand {
        grid-column: auto;
        padding-bottom: 24px;
    }

    .site-footer-logo strong {
        font-size: 22px;
    }

    .site-footer-brand > p {
        font-size: 10px;
    }

    .site-footer-column {
        padding: 18px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .site-footer-column h2 {
        margin-bottom: 13px;
        font-size: 12px;
    }

    .site-footer-column > a {
        font-size: 10px;
    }

    .site-footer-column > a + a {
        margin-top: 11px;
    }

    .site-footer-bottom {
        margin-top: 10px;
        padding-top: 18px;
    }

    .site-footer-bottom p {
        font-size: 9px;
    }

    .site-footer-legal {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .site-footer-legal > span {
        display: none;
    }

    .site-footer-legal a {
        font-size: 9px;
    }
}

@media (max-width: 380px) {
    .site-footer-logo strong {
        font-size: 20px;
    }

    .site-footer-socials a {
        width: 30px;
        height: 30px;
    }
}

@media (hover: none) {
    .site-footer-socials a:hover {
        color: #d8e1eb;
        background: rgba(255, 255, 255, 0.08);
        transform: none;
    }
}

:root {
    --blue: #145fd1;
    --blue-dark: #0d4fb7;
    --text: #15171b;
    --muted: #747d8b;
    --border: #e8ebf1;
    --surface: #f6f8fc;
    --white: #ffffff;
    --container-width: 1180px;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

.container {
    width: min(calc(100% - 60px), 1180px);
}

.header-top {
    min-height: 87px;
    gap: 28px;
}

.header-logo strong {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.7px;
}

.header-logo span {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.1px;
}

.header-city {
    font-size: 11px;
}

.header-search {
    height: 42px;
    background: #f7f8fb;
    border-color: #eef1f5;
    border-radius: 9px;
}

.header-search input {
    padding-left: 18px;
    font-size: 11px;
    font-weight: 400;
}

.header-search input::placeholder {
    color: #9ca4b1;
}

.header-phone strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.header-phone span {
    margin-top: 3px;
    font-size: 9px;
}

.header-navigation-inner {
    min-height: 59px;
}

.header-nav {
    gap: 38px;
}

.header-nav a {
    font-size: 11px;
    font-weight: 500;
}

.header-nav a.is-active {
    font-weight: 700;
}

.header-appointment {
    min-height: 41px;
    padding-inline: 25px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: none;
}

.hero {
    background: radial-gradient(circle at 58% 35%, rgba(216, 227, 245, 0.75), transparent 31%),
        linear-gradient(104deg, #f8f9fc 0%, #f4f7fc 52%, #edf3fb 100%);
}

.breadcrumbs {
    min-height: 51px;
    font-size: 9px;
}

.hero-grid {
    min-height: 390px;
    grid-template-columns: minmax(390px, 1.04fr)
        minmax(290px, 0.82fr)
        290px;
}

.hero-content {
    padding-top: 15px;
    padding-bottom: 44px;
}

.hero-title {
    max-width: 510px;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.35px;
}

.hero-description {
    max-width: 505px;
    margin-top: 17px;
    color: #343a43;
    font-size: 13px;
    line-height: 1.63;
}

.hero-features {
    gap: 32px;
    margin-top: 27px;
}

.hero-feature {
    gap: 9px;
}

.hero-feature-icon {
    width: 25px;
    height: 25px;
}

.hero-feature-icon svg {
    width: 15px;
    height: 15px;
}

.hero-feature-text strong {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
}

.hero-feature-text small {
    margin-top: 2px;
    font-size: 8px;
    line-height: 1.35;
}

.hero-actions {
    gap: 12px;
    margin-top: 32px;
}

.hero-button {
    min-height: 40px;
    padding-inline: 24px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.hero-button-primary {
    box-shadow: none;
}

.hero-person img {
    right: -9%;
    width: 116%;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: normal;
}

.hero-steps {
    margin-bottom: 21px;
    padding: 21px 22px 19px;
    border-radius: 9px;
    box-shadow: 0 10px 27px rgba(50, 71, 105, 0.08);
}

.hero-steps h2 {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.25px;
}

.hero-steps-list {
    gap: 13px;
}

.hero-step {
    grid-template-columns: 24px 1fr;
    gap: 9px;
}

.hero-step-number {
    width: 21px;
    height: 21px;
    font-size: 10px;
    font-weight: 700;
}

.hero-step-content strong {
    font-size: 10px;
    font-weight: 600;
}

.hero-step-content small {
    margin-top: 2px;
    font-size: 8px;
}

.brands-strip .container {
    padding-top: 19px;
    padding-bottom: 17px;
}

.brands-strip-title {
    margin-bottom: 16px;
    font-size: 10px;
    font-weight: 500;
}

.brands-strip-list {
    gap: 35px;
}

.brand-logo {
    min-height: 49px;
}

.brand-logo img {
    display: block;
    width: auto;
    max-width: 108px;
    max-height: 42px;
    object-fit: contain;
}

.brand-logo-zeiss img {
    max-width: 48px;
    max-height: 48px;
}

.products-section {
    padding-top: 24px;
    padding-bottom: 34px;
}

.products-header h2 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.45px;
}

.products-tabs {
    margin-top: 14px;
}

.products-tab {
    min-height: 31px;
    padding-inline: 16px;
    border-radius: 6px;
    font-size: 9px;
}

.products-filter-button {
    min-height: 35px;
    font-size: 10px;
}

.products-grid {
    gap: 11px;
    margin-top: 14px;
}

.product-card {
    min-height: 348px;
    padding: 13px 13px 11px;
    border-radius: 7px;
    box-shadow: 0 5px 17px rgba(31, 49, 79, 0.045);
}

.product-card h3 {
    min-height: 42px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.product-card-description {
    min-height: 41px;
    margin-top: 9px;
    font-size: 9px;
    line-height: 1.5;
}

.product-card-details {
    gap: 6px;
    margin-top: 9px;
}

.product-card-details li {
    font-size: 7.5px;
}

.product-card-price {
    padding-top: 15px;
}

.product-card-price span {
    font-size: 9px;
}

.product-card-price strong {
    font-size: 14px;
    font-weight: 700;
}

.product-card-price small {
    font-size: 7px;
}

.product-card-actions {
    margin-top: 13px;
}

.product-card-more {
    min-height: 35px;
}

.product-card-more {
    font-size: 9px;
}

.products-show-more {
    min-width: 280px;
    min-height: 37px;
    font-size: 9px;
}

.lens-benefits-section {
    padding-top: 21px;
}

.lens-level-card {
    min-height: 214px;
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 17px;
}

.lens-level-icon {
    width: 43px;
    height: 43px;
}

.lens-level-content h3 {
    font-size: 13px;
    font-weight: 700;
}

.lens-level-intro {
    margin-top: 5px;
    font-size: 8px;
}

.lens-level-content ul {
    gap: 6px;
    margin-top: 11px;
}

.lens-level-content li {
    font-size: 8px;
}

.lens-level-for {
    margin-top: 11px;
    font-size: 7px;
}

.lens-level-price {
    font-size: 10px;
}

.why-us {
    margin-top: 21px;
    padding: 14px 13px 15px;
}

.why-us .container > h2 {
    font-size: 15px;
    font-weight: 700;
}

.why-us-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 7px;
}

.why-us-item h3 {
    font-size: 9px;
    font-weight: 600;
}

.why-us-item p {
    font-size: 7px;
}

.selection-process {
    padding-top: 25px;
    padding-bottom: 31px;
}

.selection-process h2 {
    font-size: 15px;
    font-weight: 700;
}

.selection-process-list {
    margin-top: 25px;
}

.selection-process-number {
    width: 43px;
    height: 43px;
}

.selection-process-number span {
    font-size: 12px;
}

.selection-process-item h3 {
    margin-top: 11px;
    font-size: 9px;
    font-weight: 600;
}

.selection-process-item p {
    margin-top: 4px;
    font-size: 7px;
}

.faq-consultation {
    padding-top: 24px;
}

.faq-section-title {
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
}

.faq-consultation-grid {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 17px;
}

.faq-question {
    min-height: 48px;
}

.faq-question span {
    font-size: 9px;
    font-weight: 500;
}

.consultation-card {
    min-height: 288px;
}

.consultation-content h2 {
    font-size: 14px;
    font-weight: 700;
}

.consultation-content > p {
    font-size: 9px;
}

.consultation-list li {
    font-size: 8px;
}

.consultation-button {
    min-height: 38px;
    font-size: 8px;
}

.site-info-strip-inner {
    min-height: 78px;
}

.site-info-content strong {
    font-size: 9px;
}

.site-info-content small {
    font-size: 8px;
}

.site-footer .container {
    padding-top: 27px;
}

.site-footer-main {
    gap: 44px;
}

.site-footer-logo strong {
    font-size: 19px;
    font-weight: 700;
}

.site-footer-logo span {
    font-size: 8px;
}

.site-footer-brand > p {
    font-size: 8px;
}

.site-footer-column h2 {
    font-size: 9px;
    font-weight: 600;
}

.site-footer-column > a {
    font-size: 7px;
}

.site-footer-bottom p,
.site-footer-legal a {
    font-size: 7px;
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .faq-consultation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 24px), var(--container-width));
    }

    .brands-strip-list {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 16px 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .brands-strip-list::-webkit-scrollbar {
        display: none;
    }

    .brand-logo {
        min-width: 138px;
        flex: 0 0 138px;
        min-height: 74px;
        padding: 10px 12px;
        background: #fff;
        border: 1px solid #edf0f5;
        border-radius: 10px;
        scroll-snap-align: start;
    }

    .brand-logo img {
        max-width: 100px;
        max-height: 38px;
    }
}

.header-city,
.header-nav a,
.header-search input {
    font-size: 13px !important;
}

.header-phone strong {
    font-size: 15px !important;
}

.header-phone span,
.breadcrumbs {
    font-size: 11px !important;
}

.hero-title {
    font-size: clamp(40px, 3.5vw, 48px) !important;
}

.hero-description {
    font-size: 15px !important;
}

.hero-feature-text strong,
.hero-step-content strong {
    font-size: 12px !important;
}

.hero-feature-text small,
.hero-step-content small {
    font-size: 10px !important;
}

.hero-button,
.header-appointment {
    font-size: 12px !important;
}

.products-header h2,
.selection-process h2,
.faq-section-title {
    font-size: 20px !important;
}

.products-tab,
.products-filter-button,
.products-show-more {
    font-size: 11px !important;
}

.product-card-brand-name {
    font-size: 10px !important;
}

.product-card h3 {
    font-size: 15px !important;
}

.product-card-description {
    font-size: 11px !important;
}

.product-card-details li {
    font-size: 10px !important;
}

.product-card-price span {
    font-size: 11px !important;
}

.product-card-price strong {
    font-size: 17px !important;
}

.product-card-price small {
    font-size: 9px !important;
}

.product-card-more {
    font-size: 11px !important;
}

.lens-level-content h3 {
    font-size: 16px !important;
}

.lens-level-intro,
.lens-level-content li {
    font-size: 11px !important;
}

.lens-level-for {
    font-size: 10px !important;
}

.lens-level-price {
    font-size: 13px !important;
}

.why-us .container > h2 {
    font-size: 18px !important;
}

.why-us-item h3,
.selection-process-item h3 {
    font-size: 12px !important;
}

.why-us-item p,
.selection-process-item p {
    font-size: 10px !important;
}

.faq-question span {
    font-size: 12px !important;
}

.faq-answer-inner {
    font-size: 11px !important;
}

.consultation-content h2 {
    font-size: 17px !important;
}

.consultation-content > p,
.consultation-list li {
    font-size: 11px !important;
}

.consultation-button {
    font-size: 10px !important;
}

.site-info-content strong {
    font-size: 12px !important;
}

.site-info-content small {
    font-size: 10px !important;
}

.site-footer-brand > p,
.site-footer-column > a,
.site-footer-bottom p,
.site-footer-legal a {
    font-size: 10px !important;
}

.site-footer-column h2 {
    font-size: 12px !important;
}

.hero-title {
    font-size: clamp(34px, 3vw, 42px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
}

.hero-description {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.hero-feature-text strong {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #1f2937 !important;
}

.hero-feature-text small {
    max-width: 140px !important;
    margin-top: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #697384 !important;
}

.hero-feature {
    gap: 12px !important;
}

.hero-feature-icon {
    width: 34px !important;
    height: 34px !important;
    border-width: 1.5px !important;
}

.hero-feature-icon svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 1.8 !important;
}

.hero-steps h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.hero-step-number {
    width: 30px !important;
    height: 30px !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    background: #eaf2ff !important;
}

.hero-step-content strong {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.hero-step-content small {
    max-width: 200px !important;
    margin-top: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.hero-step {
    grid-template-columns: 32px 1fr !important;
    gap: 11px !important;
}

.hero-steps-list {
    gap: 16px !important;
}

.lens-level-card {
    grid-template-columns: 66px minmax(0, 1fr) !important;
    gap: 17px !important;
    padding: 22px !important;
}

.lens-level-icon {
    width: 62px !important;
    height: 62px !important;
}

.lens-level-icon svg {
    width: 34px !important;
    height: 34px !important;
    stroke-width: 1.8 !important;
}

.lens-level-content h3 {
    margin-top: 2px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.lens-level-intro {
    min-height: 42px !important;
    margin-top: 7px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.lens-level-content li {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.lens-level-for {
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.lens-level-price {
    margin-top: 6px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: clamp(32px, 5vw, 39px) !important;
    }

    .lens-level-card {
        grid-template-columns: 58px minmax(0, 1fr) !important;
    }

    .lens-level-icon {
        width: 54px !important;
        height: 54px !important;
    }

    .lens-level-icon svg {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 680px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-feature-text strong {
        font-size: 14px !important;
    }

    .hero-feature-text small {
        font-size: 11px !important;
    }

    .hero-step-content strong {
        font-size: 13px !important;
    }

    .hero-step-content small {
        font-size: 11px !important;
    }

    .lens-level-card {
        grid-template-columns: 56px minmax(0, 1fr) !important;
        padding: 19px !important;
    }

    .lens-level-icon {
        width: 52px !important;
        height: 52px !important;
    }

    .lens-level-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}

.products-header h2,
.why-us .container > h2,
.selection-process h2,
.faq-section-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.product-card-brand-name {
    font-size: 11px !important;
    font-weight: 600 !important;
}

.product-card-label {
    font-size: 9px !important;
    font-weight: 700 !important;
}

.product-card h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.product-card-description {
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.product-card-details li {
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.product-card-price span {
    font-size: 12px !important;
    font-weight: 600 !important;
}

.product-card-price strong {
    font-size: 20px !important;
    font-weight: 800 !important;
}

.product-card-price small {
    font-size: 10px !important;
    font-weight: 500 !important;
}

.product-card-more,
.products-show-more,
.products-filter-button,
.products-tab {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.why-us-item h3 {
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

.why-us-item p {
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.why-us-icon {
    width: 50px !important;
    height: 50px !important;
}

.why-us-icon svg {
    width: 27px !important;
    height: 27px !important;
}

.selection-process-item h3 {
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

.selection-process-item p {
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
}

.selection-process-number {
    width: 50px !important;
    height: 50px !important;
}

.selection-process-number span {
    font-size: 15px !important;
    font-weight: 800 !important;
}

.faq-question span {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

.faq-answer-inner {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

.faq-question svg {
    width: 18px !important;
    height: 18px !important;
}

.consultation-content h2 {
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
}

.consultation-content > p {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}

.consultation-list li {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

.consultation-button {
    font-size: 12.5px !important;
    font-weight: 800 !important;
}

.site-info-content strong {
    font-size: 14px !important;
    font-weight: 800 !important;
}

.site-info-content small {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.site-info-icon {
    width: 40px !important;
    height: 40px !important;
}

.site-info-icon svg {
    width: 26px !important;
    height: 26px !important;
}

.site-footer-logo strong {
    font-size: 23px !important;
    font-weight: 800 !important;
}

.site-footer-logo span {
    font-size: 10px !important;
    font-weight: 600 !important;
}

.site-footer-brand > p {
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.site-footer-column h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.site-footer-column > a {
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.site-footer-bottom p,
.site-footer-legal a {
    font-size: 10px !important;
    font-weight: 400 !important;
}

@media (max-width: 650px) {
    .products-header h2,
    .why-us .container > h2,
    .selection-process h2,
    .faq-section-title {
        font-size: 20px !important;
    }

    .product-card h3 {
        font-size: 16px !important;
    }

    .product-card-description,
    .faq-answer-inner,
    .consultation-content > p {
        font-size: 12px !important;
    }

    .why-us-item h3,
    .selection-process-item h3 {
        font-size: 13px !important;
    }

    .why-us-item p,
    .selection-process-item p {
        font-size: 11px !important;
    }

    .faq-question span {
        font-size: 13px !important;
    }

    .site-footer-column > a {
        font-size: 11px !important;
    }
}

.hero-features {
    display: flex !important;
    align-items: flex-start !important;
    gap: 28px !important;
    flex-wrap: nowrap !important;
}

.hero-feature {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: max-content !important;
}

.hero-feature-text {
    min-width: max-content !important;
}

.hero-person {
    position: relative !important;
    min-width: 0 !important;
    min-height: 390px !important;
    height: 390px !important;
    align-self: end !important;
    background: none !important;
    background-image: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.hero-person::before,
.hero-person::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.hero-person img {
    position: absolute !important;
    right: -20px !important;
    bottom: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 425px !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    background: none !important;
    background-color: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    mix-blend-mode: normal !important;
}

.brands-strip-list {
    grid-template-columns: repeat(7, minmax(90px, 1fr));
}

.brand-logo {
    min-width: 0;
    min-height: 68px;
    overflow: hidden;
}

.brand-logo img {
    display: block !important;
    width: 100% !important;
    height: 58px !important;
    max-width: 135px !important;
    max-height: none !important;
    margin: 0 auto;
    object-fit: contain !important;
    object-position: center !important;
}

.brand-logo-zeiss img {
    width: 62px !important;
    max-width: 62px !important;
    height: 62px !important;
}

.brand-logo-hoya-image img {
    transform: scale(1.35);
}

.brand-logo-topvision-image img {
    transform: scale(1.15);
}

@media (max-width: 900px) {
    .brands-strip-list {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
}

@media (max-width: 600px) {
    .brands-strip-list {
        display: flex;
        grid-template-columns: none;
    }

    .brand-logo {
        min-width: 150px;
        min-height: 88px;
        flex: 0 0 150px;
    }

    .brand-logo img {
        height: 64px !important;
        max-width: 126px !important;
    }

    .brand-logo-zeiss {
        min-width: 105px;
        flex-basis: 105px;
    }

    .brand-logo-zeiss img {
        width: 62px !important;
        height: 62px !important;
    }
}

.brands-strip {
    padding: 28px 0 32px;
    background: #ffffff;
}

.brands-strip .container {
    padding-top: 0;
    padding-bottom: 0;
}

.brands-strip-title {
    margin: 0 0 20px;
    color: #404754;
    font-size: 14px;
    font-weight: 600;
}

.brands-strip-list {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
}

.brand-logo {
    width: 100%;
    min-width: 0;
    height: 118px;
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e9f1;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(28, 46, 76, 0.06);
    transition: transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.brand-logo:hover {
    color: inherit;
    border-color: #b8cff2;
    box-shadow: 0 12px 28px rgba(28, 46, 76, 0.12);
    transform: translateY(-3px);
}

.brand-logo img {
    display: block !important;
    width: 100% !important;
    height: 76px !important;
    max-width: 155px !important;
    max-height: 76px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto;
}

.brand-logo-topvision-image img {
    transform: scale(1.55);
}

.brand-logo-hoya-image img {
    transform: scale(1.28);
}

.brand-logo-essilor-image img {
    transform: scale(1.04);
}

.brand-logo-zeiss-image img,
.brand-logo-zeiss img {
    width: 76px !important;
    max-width: 76px !important;
    height: 76px !important;
    max-height: 76px !important;
    transform: scale(0.94);
}

.brand-logo-rodenstock-image img {
    transform: scale(1.12);
}

.brand-logo-seiko-image img {
    transform: scale(1.15);
}

.brand-logo-nikon-image img {
    transform: scale(1.08);
}

@media (max-width: 1100px) {
    .brands-strip-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .brand-logo {
        height: 112px;
        min-height: 112px;
    }
}

@media (max-width: 650px) {
    .brands-strip {
        padding: 22px 0 26px;
    }

    .brands-strip .container {
        width: 100%;
    }

    .brands-strip-title {
        margin: 0 16px 16px;
        font-size: 13px;
    }

    .brands-strip-list {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 16px 14px;
        scroll-padding-inline: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .brands-strip-list::-webkit-scrollbar {
        display: none;
    }

    .brand-logo {
        width: 180px;
        min-width: 180px;
        height: 112px;
        min-height: 112px;
        flex: 0 0 180px;
        padding: 16px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .brand-logo img {
        height: 72px !important;
        max-width: 150px !important;
        max-height: 72px !important;
    }

    .brand-logo-zeiss {
        width: 130px;
        min-width: 130px;
        flex-basis: 130px;
    }

    .brand-logo-zeiss img {
        width: 72px !important;
        height: 72px !important;
    }
}

.brand-logo {
    height: 125px;
    padding: 8px;
}

.brand-logo img {
    height: 90px !important;
    max-width: 180px !important;
    max-height: 90px !important;
}

.brand-logo {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.brand-logo:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.brand-logo img {
    background: transparent !important;
}

.header-nav a {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.header-nav a.is-active {
    font-weight: 700 !important;
}

.header-nav {
    gap: 32px !important;
}

.header-navigation-inner {
    min-height: 68px !important;
}

.header-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.header-logo img {
    display: block !important;
    width: 190px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    border: 0 !important;
    box-shadow: none !important;
}

.header-logo strong,
.header-logo span {
    display: none !important;
}

.header-city-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header-city {
    text-decoration: none !important;
}

.city-popup[hidden] {
    display: none !important;
}

.city-popup {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 1500;
    width: 290px;
    padding: 18px 42px 18px 18px;
    color: #15171b;
    background: #ffffff;
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(31, 49, 79, 0.16);
    text-align: left;
}

.city-popup::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid #e3e8f0;
    border-left: 1px solid #e3e8f0;
    transform: rotate(45deg);
}

.city-popup strong {
    display: block;
    margin: 0;
    color: #15171b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.city-popup p {
    margin: 8px 0 0;
    color: #343b46;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.city-popup small {
    display: block;
    margin-top: 7px;
    color: #7a8492;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.city-popup-close {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #687384;
    background: #f3f6fa;
    border: 0;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.city-popup-close:hover {
    color: #ffffff;
    background: var(--blue);
}

.consultation-card {
    min-height: 340px !important;
    grid-template-columns: minmax(0, 1fr) 220px !important;
}

.consultation-person img {
    width: 250px !important;
    height: auto !important;
    right: -10px !important;
    bottom: 0 !important;
    object-fit: contain !important;
}

.brands-strip-list {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 16px !important;
}

.brand-logo {
    width: 100% !important;
    height: 100px !important;
    min-height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    overflow: hidden !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.brand-logo img {
    display: block !important;
    width: 140px !important;
    height: 64px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(var(--logo-scale, 1)) !important;
}

.brand-logo-topvision-image {
    --logo-scale: 1.05;
}

.brand-logo-nikon-image {
    --logo-scale: 1;
}

.brand-logo-hoya-image {
    --logo-scale: 1.05;
}

.brand-logo-essilor-image,
.brand-logo-varilux-image {
    --logo-scale: 0.92;
}

.brand-logo-zeiss-image {
    --logo-scale: 0.82;
}

.brand-logo-rodenstock-image {
    --logo-scale: 0.86;
}

.brand-logo-seiko-image {
    --logo-scale: 1;
}

@media (max-width: 1100px) {
    .brands-strip-list {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 650px) {
    .brands-strip-list {
        display: flex !important;
        gap: 12px !important;
        overflow-x: auto !important;
        padding: 0 16px 12px !important;
    }

    .brand-logo {
        width: 160px !important;
        min-width: 160px !important;
        height: 96px !important;
        min-height: 96px !important;
        flex: 0 0 160px !important;
    }

    .brand-logo img {
        width: 135px !important;
        height: 60px !important;
    }
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-sort span {
    color: #697384;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.products-sort select {
    height: 38px;
    min-width: 175px;
    padding: 0 32px 0 12px;
    color: #343b46;
    background: #ffffff;
    border: 1px solid #d9e1ec;
    border-radius: 6px;
    outline: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.products-sort select:focus {
    border-color: #9dbce9;
    box-shadow: 0 0 0 3px rgba(23, 99, 213, 0.08);
}

@media (max-width: 700px) {
    .products-header {
        grid-template-columns: 1fr !important;
    }

    .products-controls {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr)
            40px;
    }

    .products-sort {
        min-width: 0;
    }

    .products-sort select {
        width: 100%;
        min-width: 0;
    }

    .products-filter-button {
        width: 40px !important;
        padding: 0 !important;
    }
}



.product-card-brand-row {
    min-height: 30px;
}

.product-card-brand {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-labels {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.product-card-label {
    gap: 4px;
}

.product-card-label-purple {
    color: #ffffff;
    background: #8a3bb5;
}

.product-card-label-orange {
    color: #ffffff;
    background: #ff9d43;
}

.product-card-label-recommended svg {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    fill: currentColor;
    stroke: none;
}

.product-card-brand-logo {
    width: auto;
    height: 32px;
    max-width: 95px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.product-card-brand-logo-zeiss {
    width: 32px;
    max-width: 32px;
    height: 32px;
}

.product-card-brand-logo-top-vision {
    max-width: 160px;
}

.product-card-brand-logo-hoya {
    max-width: 140px;
}

.product-card-brand-logo-essilor {
    max-width: 110px;
}

.product-card-brand-logo-rodenstock {
    max-width: 130px;
}

.product-card-brand-logo-seiko {
    max-width: 90px;
}

.product-card-brand-logo-nikon {
    max-width: 115px;
}

.product-card-brand-logo-glance {
    max-width: 140px;
}

.product-card-brand-row {
    width: 100%;
    min-height: 38px;
}

.product-card-brand {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.product-card-labels {
    flex: 1 1 auto;
}

.product-card-brand-logo {
    flex: 0 0 auto;
    margin-left: auto;
    object-position: right center;
}

.brands-strip .brand-logo {
    cursor: default !important;
    text-decoration: none !important;
}

.brands-strip .brand-logo:hover {
    color: inherit !important;
    transform: none !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-socials .social-link {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.site-footer-socials .social-link-vk {
    background: #005fcc !important;
}

.site-footer-socials .social-link-ok {
    background: #a64b00 !important;
}

.site-footer-socials .social-link-telegram {
    background: #0b6f9f !important;
}

.site-footer-socials .social-link-whatsapp {
    background: #0b7a3f !important;
}

.site-footer-socials .social-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor !important;
    stroke: none !important;
}

.site-footer-socials .social-vk-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.site-footer-socials .social-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    filter: brightness(0.92);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

@media (hover: none) {
    .site-footer-socials .social-link:hover {
        color: #ffffff !important;
        transform: none;
        filter: none;
    }
}

.site-footer-bottom {
    flex-wrap: wrap;
}

.site-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.site-footer-legal a {
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .site-footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .site-footer-legal {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-footer-legal a {
        white-space: normal;
    }
}

.mobile-menu-head,
.mobile-menu-close {
    display: none;
}

@media (min-width: 901px) {
    .mobile-menu-head,
    .mobile-menu-close {
        display: none !important;
    }
}

@media (max-width: 900px) {
    :root {
        --mobile-header-height: 72px;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1100 !important;
        overflow: visible !important;
        background: rgba(255, 255, 255, 0.97) !important;
        border-bottom: 1px solid rgba(17, 24, 39, 0.07) !important;
        box-shadow: 0 6px 22px rgba(17, 24, 39, 0.05) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .header-top {
        position: relative !important;
        z-index: 1 !important;
        min-height: var(--mobile-header-height) !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .header-logo {
        order: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-self: start !important;
        margin: 0 auto 0 0 !important;
    }

    .header-logo img {
        display: block !important;
        width: clamp(145px, 43vw, 180px) !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .header-city-wrap,
    .header-search-desktop,
    .header-search-mobile-menu,
    .header-phone {
        display: none !important;
    }

    .header-menu-button {
        order: 2 !important;
        width: 46px !important;
        height: 46px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        justify-self: end !important;
        gap: 5px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border: 1px solid rgba(17, 24, 39, 0.09) !important;
        border-radius: 14px !important;
        box-shadow: 0 7px 20px rgba(17, 24, 39, 0.08) !important;
        cursor: pointer;
    }

    .header-menu-button span {
        width: 20px !important;
        height: 2px !important;
        display: block !important;
        background: #172033 !important;
        border-radius: 10px !important;
        transition: transform 0.28s ease,
            opacity 0.28s ease !important;
    }

    .header-menu-button.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .header-menu-button.is-open span:nth-child(2) {
        opacity: 0 !important;
    }

    .header-menu-button.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    .menu-overlay {
        position: fixed !important;
        inset: 0 !important;
        z-index: 10 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        background: rgba(8, 15, 28, 0.5) !important;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: opacity 0.28s ease,
            visibility 0.28s ease !important;
    }

    .menu-overlay.is-visible {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .header-navigation {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        z-index: 20 !important;
        width: min(390px, calc(100% - 18px)) !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        display: block !important;
        overflow: hidden !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: none !important;
        color: #111827 !important;
        background: radial-gradient(
                circle at 100% 0,
                rgba(216, 228, 250, 0.8),
                transparent 34%
            ),
            linear-gradient(
                180deg,
                #ffffff 0%,
                #f7f9fd 100%
            ) !important;
        border: 0 !important;
        border-left: 1px solid rgba(17, 24, 39, 0.06) !important;
        border-radius: 28px 0 0 28px !important;
        box-shadow: -22px 0 65px rgba(15, 23, 42, 0.23) !important;
        transform: translate3d(102%, 0, 0) !important;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .header-navigation.is-open {
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .header-navigation-inner {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: calc(18px + env(safe-area-inset-top))
            22px
            calc(26px + env(safe-area-inset-bottom)) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        opacity: 0;
        transform: translateX(18px);
        transition: opacity 0.25s ease 0.08s,
            transform 0.32s ease 0.08s !important;
    }

    .header-navigation.is-open .header-navigation-inner {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .mobile-menu-head {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        margin: 0 0 12px !important;
        padding: 0 0 18px !important;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
    }

    .mobile-menu-label {
        display: block !important;
        color: #111827 !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.04em !important;
    }

    .mobile-menu-close {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        color: #172033 !important;
        background: #ffffff !important;
        border: 1px solid rgba(17, 24, 39, 0.09) !important;
        border-radius: 14px !important;
        box-shadow: 0 7px 20px rgba(17, 24, 39, 0.07) !important;
        font-size: 29px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        cursor: pointer;
    }

    .header-navigation .header-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-navigation .header-nav a {
        position: relative !important;
        width: 100% !important;
        min-height: 58px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 30px 0 2px !important;
        color: #182133 !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(17, 24, 39, 0.07) !important;
        font-size: 17px !important;
        font-weight: 650 !important;
        line-height: 1.35 !important;
        text-decoration: none !important;
        white-space: normal !important;
    }

    .header-navigation .header-nav a::after {
        content: "→";
        position: absolute;
        right: 3px;
        color: #9aa4b3;
        font-size: 17px;
        font-weight: 400;
    }

    .header-navigation .header-nav a.is-active,
    .header-navigation .header-nav a.is-active::after {
        color: var(--blue) !important;
    }

    .header-navigation .header-nav svg {
        display: none !important;
    }

    .header-navigation .header-appointment {
        width: 100% !important;
        min-height: 54px !important;
        margin: 24px 0 0 !important;
        padding: 0 18px !important;
        color: #ffffff !important;
        background: linear-gradient(
                135deg,
                #1763d5 0%,
                #0d4fb7 100%
            ) !important;
        border-radius: 15px !important;
        box-shadow: 0 14px 32px rgba(23, 99, 213, 0.24) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .header-navigation .header-mobile-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin-top: auto !important;
        padding-top: 22px !important;
        border-top: 1px solid rgba(17, 24, 39, 0.08) !important;
    }

    .header-navigation .header-mobile-info a {
        color: #111827 !important;
        font-size: 19px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .header-navigation .header-mobile-info span {
        margin-top: 5px !important;
        color: #7b8492 !important;
        font-size: 13px !important;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 680px) {
    .hero {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        background: radial-gradient(
                circle at 88% 26%,
                rgba(255, 255, 255, 0.96),
                transparent 34%
            ),
            linear-gradient(
                125deg,
                #f7f8fc 0%,
                #f0f3f9 56%,
                #eaf0f8 100%
            ) !important;
    }

    .hero-container.container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .breadcrumbs {
        width: calc(100% - 32px) !important;
        min-height: 48px !important;
        margin: 0 auto !important;
        padding: 6px 0 !important;
        gap: 7px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        color: #8993a3 !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        scrollbar-width: none !important;
    }

    .breadcrumbs::-webkit-scrollbar {
        display: none !important;
    }

    .breadcrumbs a {
        color: #7d8797 !important;
    }

    .hero-grid {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 16px 26px !important;
    }

    .hero-title {
        position: relative !important;
        z-index: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        color: #171d2b !important;
        font-size: 30px !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        letter-spacing: -0.8px !important;
    }

    .hero-title br {
        display: initial !important;
    }

    .hero-description {
        position: relative !important;
        z-index: 3 !important;
        width: 58% !important;
        max-width: 250px !important;
        margin: 20px 0 0 !important;
        color: #232b3a !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 1.55 !important;
    }

    .hero-features {
        position: relative !important;
        z-index: 3 !important;
        width: 58% !important;
        max-width: 245px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        gap: 16px !important;
        margin: 22px 0 0 !important;
        padding: 0 !important;
    }

    .hero-feature {
        width: 100% !important;
        min-width: 0 !important;
        display: grid !important;
        grid-template-columns: 35px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 10px !important;
    }

    .hero-feature-icon {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        display: grid !important;
        place-items: center !important;
        color: #1763d5 !important;
        background: rgba(255, 255, 255, 0.68) !important;
        border: 1.5px solid rgba(23, 99, 213, 0.28) !important;
        border-radius: 50% !important;
    }

    .hero-feature-icon svg {
        width: 19px !important;
        height: 19px !important;
    }

    .hero-feature-text {
        width: auto !important;
        min-width: 0 !important;
    }

    .hero-feature-text strong {
        display: block !important;
        color: #172033 !important;
        font-size: 13px !important;
        font-weight: 750 !important;
        line-height: 1.35 !important;
        white-space: normal !important;
    }

    .hero-feature-text small {
        display: block !important;
        max-width: none !important;
        margin-top: 2px !important;
        color: #6f7887 !important;
        font-size: 11px !important;
        font-weight: 450 !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }

    .hero-person {
        position: absolute !important;
        top: 84px !important;
        right: 0 !important;
        bottom: 142px !important;
        left: auto !important;
        z-index: 2 !important;
        width: 49% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .hero-person img {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: right bottom !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-actions {
        position: relative !important;
        z-index: 4 !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin: 28px 0 0 !important;
    }

    .hero-button {
        width: 100% !important;
        min-height: 50px !important;
        padding: 0 16px !important;
        border-radius: 11px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .hero-button-primary {
        color: #ffffff !important;
        background: linear-gradient(
                135deg,
                #1763d5 0%,
                #0e55c6 100%
            ) !important;
        box-shadow: 0 10px 24px
            rgba(23, 99, 213, 0.18) !important;
    }

    .hero-button-secondary {
        color: #1763d5 !important;
        background: rgba(255, 255, 255, 0.82) !important;
        border: 1.5px solid #1763d5 !important;
    }

    .hero-steps {
        position: relative !important;
        z-index: 5 !important;
        width: calc(100% - 32px) !important;
        max-width: none !important;
        display: block !important;
        margin: 0 16px 24px !important;
        padding: 20px 18px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(218, 225, 236, 0.9) !important;
        border-radius: 18px !important;
        box-shadow: 0 14px 36px
            rgba(23, 38, 65, 0.1) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero-steps h2 {
        margin: 0 0 17px !important;
        color: #172033 !important;
        font-size: 19px !important;
        font-weight: 800 !important;
    }

    .hero-steps-list {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-step {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 32px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 11px !important;
    }

    .hero-step-number {
        width: 30px !important;
        height: 30px !important;
        display: grid !important;
        place-items: center !important;
        color: #1763d5 !important;
        background: #eaf2ff !important;
        border-radius: 50% !important;
        font-size: 14px !important;
        font-weight: 800 !important;
    }

    .hero-step-content {
        min-width: 0 !important;
    }

    .hero-step-content strong {
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
    }

    .hero-step-content small {
        display: block !important;
        max-width: none !important;
        margin-top: 3px !important;
        color: #747e8d !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 27px !important;
    }

    .hero-description,
    .hero-features {
        width: 59% !important;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .hero-person {
        top: 82px !important;
        right: 0 !important;
        bottom: 140px !important;
        width: 48% !important;
    }
}

@media (max-width: 340px) {
    .hero-title {
        font-size: 24px !important;
    }

    .hero-description,
    .hero-features {
        width: 62% !important;
    }

    .hero-description {
        font-size: 12.5px !important;
    }

    .hero-person {
        top: 78px !important;
        width: 45% !important;
    }
}

@media (max-width: 680px) {
    .hero-grid {
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-person {
        position: absolute !important;
        top: 76px !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 2 !important;
        width: 50% !important;
        height: 430px !important;
        min-height: 430px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        overflow: visible !important;
        pointer-events: none !important;
    }

    .hero-person img {
        position: absolute !important;
        top: 0 !important;
        right: -28px !important;
        bottom: auto !important;
        left: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: clamp(250px, 70vw, 320px) !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: top right !important;
        transform: none !important;
        mix-blend-mode: normal !important;
    }
}

@media (max-width: 390px) {
    .hero-person {
        top: 82px !important;
        width: 48% !important;
        height: 410px !important;
        min-height: 410px !important;
    }

    .hero-person img {
        right: -35px !important;
        width: 270px !important;
    }
}

@media (max-width: 340px) {
    .hero-person {
        top: 88px !important;
        height: 390px !important;
        min-height: 390px !important;
    }

    .hero-person img {
        right: -38px !important;
        width: 245px !important;
    }
}

@media (max-width: 900px) {
    .header-top {
        min-height: 64px !important;
    }

    .header-menu-button {
        width: 42px !important;
        height: 42px !important;
    }
}

@media (max-width: 650px) {
    .brands-strip {
        padding: 12px 0 12px !important;
        background: #ffffff !important;
    }

    .brands-strip .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .brands-strip-title {
        margin: 0 16px 12px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    .brands-strip-list {
        display: flex !important;
        align-items: center !important;
        gap: 22px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 10px !important;
        scroll-padding-inline: 16px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .brands-strip-list::-webkit-scrollbar {
        display: none !important;
    }

    .brand-logo {
        width: auto !important;
        min-width: 82px !important;
        height: 46px !important;
        min-height: 46px !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .brand-logo img {
        display: block !important;
        width: auto !important;
        height: 36px !important;
        max-width: 115px !important;
        max-height: 36px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        object-position: center !important;
        transform: none !important;
    }

    .brand-logo-topvision-image img {
        width: 115px !important;
        height: 45px !important;
        max-width: 115px !important;
        max-height: 45px !important;
    }

    .brand-logo-hoya-image img {
        width: 130px !important;
        height: 65px !important;
        max-width: 130px !important;
        max-height: 65px !important;
    }

    .brand-logo-nikon-image img {
        width: 100px !important;
        height: 35px !important;
        max-width: 100px !important;
        max-height: 35px !important;
    }

    .brand-logo-essilor-image img,
    .brand-logo-varilux-image img {
        width: 115px !important;
        height: 45px !important;
        max-width: 115px !important;
        max-height: 45px !important;
    }

    .brand-logo-rodenstock-image img {
        width: 115px !important;
        height: 45px !important;
        max-width: 115px !important;
        max-height: 45px !important;
    }

    .brand-logo-seiko-image img {
        width: 115px !important;
        height: 45px !important;
        max-width: 115px !important;
        max-height: 45px !important;
    }

    .brand-logo-zeiss,
    .brand-logo-zeiss-image {
        min-width: 42px !important;
        width: 42px !important;
    }

    .brand-logo-zeiss img,
    .brand-logo-zeiss-image img {
        width: 115px !important;
        height: 45px !important;
        max-width: 115px !important;
        max-height: 45px !important;
    }

    .brands-scroll-hint {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .brands-strip-list {
        gap: 17px !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .brand-logo {
        min-width: 74px !important;
    }

    .brand-logo img {
        max-width: 82px !important;
        height: 25px !important;
        max-height: 25px !important;
    }

    .brand-logo-zeiss,
    .brand-logo-zeiss-image {
        width: 38px !important;
        min-width: 38px !important;
    }

    .brand-logo-zeiss img,
    .brand-logo-zeiss-image img {
        width: 31px !important;
        height: 31px !important;
        max-width: 31px !important;
        max-height: 31px !important;
    }
}

@media (max-width: 900px) {
    .header-logo img {
        width: 135px !important;
        max-width: 135px !important;
        height: auto !important;
    }
}

@media (max-width: 650px) {
    .consultation-card {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .consultation-content {
        position: relative !important;
        z-index: 2 !important;
        padding: 22px 20px 0 !important;
    }

    .consultation-person {
        position: relative !important;
        width: 100% !important;
        height: clamp(240px, 72vw, 300px) !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        margin: 16px 0 0 !important;
        overflow: hidden !important;
    }

    .consultation-person::before {
        inset: 0 !important;
    }

    .consultation-person img {
        position: static !important;
        display: block !important;
        width: auto !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        object-position: center bottom !important;
        transform: none !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 600px) {
    .site-footer .container {
        padding-top: 20px !important;
        padding-bottom: 12px !important;
    }

    .site-footer-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        row-gap: 0 !important;
    }

    .site-footer-brand {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 0 16px !important;
    }

    .site-footer-brand > p {
        margin: 12px 0 0 !important;
    }

    .site-footer-socials {
        margin: 12px 0 0 !important;
    }

    .site-footer-column {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 14px 0 !important;
        border-top: 1px solid
            rgba(255, 255, 255, 0.09) !important;
    }

    .site-footer-column h2 {
        margin: 0 0 9px !important;
    }

    .site-footer-column > a {
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-footer-column > a + a {
        margin-top: 7px !important;
    }

    .site-footer-bottom {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 14px 0 4px !important;
        gap: 10px !important;
    }

    .site-footer-bottom p {
        margin: 0 !important;
    }

    .site-footer-legal {
        margin: 0 !important;
        gap: 9px !important;
    }
}

@media (max-width: 600px) {
    .site-footer-main,
    .site-footer-bottom {
        padding-left: 8px !important;
        padding-right: 0 !important;
    }

    .site-footer-logo strong {
        font-size: 25px !important;
    }

    .site-footer-logo span {
        font-size: 11px !important;
    }

    .site-footer-brand > p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .site-footer-column h2 {
        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    .site-footer-column > a {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .site-footer-bottom p,
    .site-footer-legal a {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .site-footer-contacts svg {
        width: 14px !important;
        height: 14px !important;
    }
}

:root {
    --ui-accent: #1f5597;
    --ui-accent-second: #176caf;
    --ui-accent-hover: #194a85;
    --ui-accent-hover-second: #145f9d;
    --ui-accent-light: #edf4fc;
    --ui-accent-border: #8eb4de;
    --ui-accent-shadow: rgba(24, 75, 130, 0.24);
}

.header-appointment,
.hero-button-primary,
.consultation-button,
.filters-submit,
.products-tab.is-active {
    color: #ffffff !important;
    background: linear-gradient(
            135deg,
            var(--ui-accent) 0%,
            var(--ui-accent-second) 100%
        ) !important;
    border-color: transparent !important;
    box-shadow: 0 9px 20px var(--ui-accent-shadow),
        0 3px 7px rgba(16, 54, 98, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.header-appointment:hover,
.hero-button-primary:hover,
.consultation-button:hover,
.filters-submit:hover,
.products-tab.is-active:hover {
    color: #ffffff !important;
    background: linear-gradient(
            135deg,
            var(--ui-accent-hover) 0%,
            var(--ui-accent-hover-second) 100%
        ) !important;
}

.header-appointment:active,
.hero-button-primary:active,
.consultation-button:active,
.filters-submit:active {
    transform: translateY(1px) !important;
    box-shadow: 0 5px 12px rgba(24, 75, 130, 0.2),
        inset 0 2px 3px rgba(0, 0, 0, 0.08) !important;
}

.hero-button-secondary,
.products-filter-button,
.products-show-more,
.product-card-more,
.filters-reset {
    color: var(--ui-accent) !important;
    background: #ffffff !important;
    border-color: var(--ui-accent-border) !important;
}

.hero-button-secondary:hover,
.products-filter-button:hover,
.products-show-more:hover,
.product-card-more:hover {
    color: #ffffff !important;
    background: linear-gradient(
            135deg,
            var(--ui-accent) 0%,
            var(--ui-accent-second) 100%
        ) !important;
    border-color: transparent !important;
    box-shadow: 0 7px 16px rgba(24, 75, 130, 0.2) !important;
}

.products-tab.is-active {
    color: #ffffff !important;
    border-color: transparent !important;
}

.products-tab:not(.is-active):hover {
    color: var(--ui-accent) !important;
    border-color: var(--ui-accent-border) !important;
}

.header-icon-button,
.header-search button,
.hero-feature-icon,
.site-info-icon,
.products-filter-button,
.filters-close,
.mobile-menu-close {
    color: var(--ui-accent) !important;
}

.header-city:hover,
.header-nav a:hover,
.header-nav a.is-active,
.header-navigation .header-nav a.is-active,
.header-navigation .header-nav a.is-active::after {
    color: var(--ui-accent) !important;
}

.header-icon-button svg,
.header-search svg,
.hero-feature-icon svg,
.site-info-icon svg,
.products-filter-button svg,
.filters-close svg,
.faq-question svg {
    stroke: currentColor !important;
}

.faq-question svg {
    color: var(--ui-accent) !important;
    stroke: var(--ui-accent) !important;
}

.hero-feature-icon {
    color: var(--ui-accent) !important;
    background: var(--ui-accent-light) !important;
    border-color: rgba(31, 85, 151, 0.3) !important;
    box-shadow: 0 6px 14px rgba(24, 75, 130, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.site-info-icon {
    color: var(--ui-accent) !important;
}

.header-menu-button span {
    background: var(--ui-accent) !important;
}

.header-search:focus-within,
.filter-price input:focus,
.products-sort select:focus {
    border-color: var(--ui-accent-border) !important;
    box-shadow: 0 0 0 3px rgba(31, 85, 151, 0.1) !important;
}

.product-card-price strong {
    color: #12161c !important;
}

.hero-feature-text strong {
    color: #1f2937 !important;
}

.lens-level-price {
    color: #1763d5 !important;
}

@media (max-width: 700px) {
    #progressive-lenses
    .products-tabs
    .products-tab[data-product-tab="all"].is-active {
        color: #ffffff !important;
        background: linear-gradient(
                135deg,
                var(--ui-accent, #1f5597) 0%,
                var(--ui-accent-second, #176caf) 100%
            ) !important;
        border-color: transparent !important;
        box-shadow: 8px 0 14px -10px rgba(17, 24, 39, 0.35),
            0 6px 14px rgba(24, 75, 130, 0.2) !important;
    }

    #progressive-lenses
    .products-tabs
    .products-tab[data-product-tab="all"]:not(.is-active) {
        color: var(--ui-accent, #1f5597) !important;
        background: #ffffff !important;
        border-color: var(--ui-accent-border, #8eb4de) !important;
        box-shadow: 8px 0 14px -10px rgba(17, 24, 39, 0.25) !important;
    }
}

@media (max-width: 650px) {
    .brand-logo-hoya-image {
        order: 1;
    }

    .brand-logo-zeiss-image {
        order: 2;
    }

    .brand-logo-essilor-image {
        order: 3;
    }

    .brand-logo-topvision-image {
        order: 4;
    }

    .brand-logo-seiko-image {
        order: 5;
    }

    .brand-logo-rodenstock-image {
        order: 6;
    }

    .brand-logo-nikon-image {
        order: 7;
    }
  .brand-logo-glance-image {
    order: 8;
}
}

@media (max-width: 900px) {
    #mobile-navigation .header-navigation-inner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
        min-height: 0 !important;
        padding: calc(12px + env(safe-area-inset-top))
            16px
            calc(14px + env(safe-area-inset-bottom)) !important;
        gap: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    #mobile-navigation .mobile-menu-head {
        position: relative !important;
        width: 100% !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        margin: 0 0 5px !important;
        padding: 2px 48px 10px !important;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
    }

    #mobile-navigation .mobile-menu-label {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 !important;
        color: #172033 !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        letter-spacing: -0.03em !important;
        text-align: center !important;
    }

    #mobile-navigation .mobile-menu-label::after {
        content: "Премиальная оптика в Москве" !important;
        display: block !important;
        margin-top: 4px !important;
        color: #7a8493 !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        letter-spacing: 0 !important;
    }

    #mobile-navigation .mobile-menu-label::before {
        content: none !important;
        display: none !important;
    }

    #mobile-navigation .mobile-menu-close {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        color: #172033 !important;
        background: #f3f6fa !important;
        border: 0 !important;
        border-radius: 11px !important;
        box-shadow: none !important;
        font-size: 25px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
    }

    #mobile-navigation .header-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 2px 0 0 !important;
    }

    #mobile-navigation .header-nav a {
        position: relative !important;
        width: 100% !important;
        min-height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0
            38px
            0
            32px !important;
        color: #182133 !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(17, 24, 39, 0.07) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        text-align: left !important;
        text-indent: 0 !important;
        text-decoration: none !important;
        transform: none !important;
    }

    #mobile-navigation .header-nav svg {
        display: none !important;
    }

    #mobile-navigation .header-nav a::after {
        content: "›" !important;
        position: absolute !important;
        top: 50% !important;
        right: 12px !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
        color: #9ba4b0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        font-size: 23px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        transform: translateY(-52%) !important;
    }

    #mobile-navigation .header-nav a.is-active {
        color: #182133 !important;
        background: transparent !important;
        border-color: rgba(17, 24, 39, 0.07) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        font-weight: 600 !important;
        transform: none !important;
    }

    #mobile-navigation .header-nav a.is-active::before {
        content: none !important;
        display: none !important;
    }

    #mobile-navigation .header-nav a.is-active::after {
        color: #9ba4b0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    #mobile-navigation .header-nav a:active {
        background: #f3f6fa !important;
    }

    #mobile-navigation .header-appointment {
        width: 100% !important;
        min-height: 57px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 10px 0 0 !important;
        padding: 6px 16px !important;
        color: #ffffff !important;
        background: linear-gradient(
                135deg,
                #174477 0%,
                #1f5597 55%,
                #2672b9 100%
            ) !important;
        border: 0 !important;
        border-radius: 13px !important;
        box-shadow: 0 9px 20px rgba(31, 85, 151, 0.22) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    #mobile-navigation .header-appointment::after {
        content: "Бесплатная диагностика зрения" !important;
        display: block !important;
        margin-top: 3px !important;
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }

    #mobile-navigation .header-appointment::before {
        content: none !important;
        display: none !important;
    }

    #mobile-navigation .header-mobile-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 10px 0 0 !important;
        padding: 12px 14px !important;
        background: rgba(255, 255, 255, 0.82) !important;
        border: 1px solid rgba(17, 24, 39, 0.07) !important;
        border-radius: 13px !important;
        box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05) !important;
    }

    #mobile-navigation .header-mobile-info::before {
        content: "Консультация специалиста" !important;
        display: block !important;
        margin-bottom: 4px !important;
        color: #1f5597 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        letter-spacing: 0.04em !important;
        text-transform: uppercase !important;
    }

    #mobile-navigation .header-mobile-info::after {
        content: none !important;
        display: none !important;
    }

    #mobile-navigation .header-mobile-info a {
        margin: 0 !important;
        color: #172033 !important;
        font-size: 18px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        text-decoration: none !important;
    }

    #mobile-navigation .header-mobile-info span {
        margin-top: 3px !important;
        color: #7a8493 !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 380px) {
    #mobile-navigation .header-navigation-inner {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    #mobile-navigation .header-nav a {
        min-height: 42px !important;
        padding-right: 34px !important;
        padding-left: 28px !important;
        font-size: 15.5px !important;
    }

    #mobile-navigation .header-appointment {
        min-height: 54px !important;
        margin-top: 8px !important;
    }

    #mobile-navigation .header-mobile-info {
        margin-top: 8px !important;
        padding: 10px 12px !important;
    }
}

.products-tabs-shell {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.products-tabs-scroll {
    display: contents;
}

@media (max-width: 700px) {
    #progressive-lenses .products-tabs-shell {
        position: relative !important;
        isolation: isolate !important;
        width: calc(100% + 24px) !important;
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) !important;
        align-items: center !important;
        gap: 8px !important;
        margin-right: -12px !important;
        margin-left: -12px !important;
        padding: 0 12px 4px !important;
        overflow: visible !important;
    }

    #progressive-lenses .products-tab-all {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 5 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    #progressive-lenses .products-tabs-scroll {
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    #progressive-lenses .products-tabs-scroll::-webkit-scrollbar {
        display: none !important;
    }

    #progressive-lenses .products-tabs-scroll .products-tab {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }
}

@media (max-width: 900px) {
    .header-menu-button {
        position: relative !important;
        z-index: 1205 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
    }

    .header-menu-button span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: var(--ui-accent, #1f5597) !important;
        border-radius: 10px !important;
        pointer-events: none !important;
    }

    #mobile-navigation {
        visibility: visible !important;
        opacity: 1 !important;
    }

    #mobile-navigation.is-open {
        transform: translate3d(0, 0, 0) !important;
        pointer-events: auto !important;
    }

    .menu-overlay {
        pointer-events: none !important;
    }

    .menu-overlay.is-visible {
        pointer-events: auto !important;
    }
}

@media (max-width: 900px) {
    :root {
        --mobile-menu-top: 8px;
    }

    html body .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 2000 !important;
        overflow: visible !important;
        background: #ffffff !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    html body .header-menu-button {
        position: relative !important;
        z-index: 2030 !important;
        display: flex !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
    }

    html body #mobile-navigation {
        position: fixed !important;
        top: var(--mobile-menu-top, 8px) !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 2020 !important;
        width: min(
            370px,
            calc(100vw - 12px)
        ) !important;
        height: calc(
            100dvh -
            var(--mobile-menu-top, 8px) -
            8px
        ) !important;
        max-height: calc(
            100dvh -
            var(--mobile-menu-top, 8px) -
            8px
        ) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        background: #ffffff !important;
        border: 0 !important;
        border-radius: 22px 0 0 22px !important;
        box-shadow: -22px 12px 60px
            rgba(15, 23, 42, 0.22) !important;
        transform: translate3d(105%, 0, 0) !important;
        transition: transform 0.38s
            cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    html body #mobile-navigation.is-open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    html body
    #mobile-navigation
    .header-navigation-inner {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 12px
            16px
            max(
                12px,
                env(safe-area-inset-bottom)
            ) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        transform: none !important;
        scrollbar-width: none !important;
    }

    html body
    #mobile-navigation
    .header-navigation-inner::-webkit-scrollbar {
        display: none !important;
    }

    html body .menu-overlay {
        position: fixed !important;
        inset: 0 !important;
        z-index: 2010 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        background: linear-gradient(
                to bottom,
                transparent 0,
                transparent var(--mobile-menu-top, 8px),
                rgba(8, 17, 31, 0.4)
                    var(--mobile-menu-top, 8px),
                rgba(8, 17, 31, 0.4) 100%
            ) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: opacity 0.25s ease,
            visibility 0.25s ease !important;
    }

    html body .menu-overlay.is-visible {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}
  
  
  
.header-menu-icon {
    width: 23px;
    height: 23px;
    display: block;
    fill: none;
    stroke: var(--ui-accent, #1f5597);
    stroke-width: 2;
    stroke-linecap: round;
    pointer-events: none;
}
  
  
  .brand-logo-glance-image {
    --logo-scale: 1;
}
    
    .filter-checkbox
input[type="radio"] + span::before {
    border-radius: 50%;
}

.filter-checkbox
input[type="radio"]:checked + span::before {
    background:
        var(--ui-accent, #1f5597);
    border-color:
        var(--ui-accent, #1f5597);
    box-shadow:
        inset 0 0 0 4px #ffffff;
}
    
    .products-status {
    min-height: 0;
    margin: 0;
    padding: 0;
}

.products-status:empty {
    display: none;
}

.products-status:not(:empty) {
    display: block;
    margin-top: 12px;
    padding: 10px 12px;
    color: #687384;
    background: #f6f8fc;
    border: 1px solid #e4eaf2;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.5;
}
    
    

    
    
    
    
    
    
    /* =========================================
   ФИНАЛЬНОЕ ВЫРАВНИВАНИЕ 8 ЛОГОТИПОВ
========================================= */

.brands-strip
.brands-strip-list {
    width: 100% !important;
    display: grid !important;
    grid-template-columns:
        repeat(8, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 14px !important;
    overflow: visible !important;
    padding: 0 !important;
}

.brands-strip
.brand-logo {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 72px !important;
    min-height: 72px !important;
    display: flex !important;
    flex: none !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 6px !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.brands-strip
.brand-logo img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 112px !important;
    max-height: 42px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
}

/* Индивидуальная коррекция визуального размера */

.brands-strip
.brand-logo-topvision-image img {
    max-width: 112px !important;
    max-height: 40px !important;
}

.brands-strip
.brand-logo-nikon-image img {
    max-width: 105px !important;
    max-height: 38px !important;
}

.brands-strip
.brand-logo-hoya-image img {
    max-width: 105px !important;
    max-height: 38px !important;
}

.brands-strip
.brand-logo-essilor-image img {
    max-width: 110px !important;
    max-height: 40px !important;
}

.brands-strip
.brand-logo-zeiss-image img,
.brands-strip
.brand-logo-zeiss img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
}

.brands-strip
.brand-logo-seiko-image img {
    max-width: 108px !important;
    max-height: 35px !important;
}

.brands-strip
.brand-logo-rodenstock-image img {
    max-width: 98px !important;
    max-height: 42px !important;
}

.brands-strip
.brand-logo-glance-image img {
    max-width: 104px !important;
    max-height: 42px !important;
}

/*
 * На небольшом компьютере и планшете
 * оставляем логотипы в одну горизонтальную
 * прокручиваемую строку.
 */
@media (max-width: 1100px) {
    .brands-strip
    .brands-strip-list {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 22px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 16px 10px !important;
        scroll-padding-inline: 16px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .brands-strip
    .brands-strip-list::-webkit-scrollbar {
        display: none !important;
    }

    .brands-strip
    .brand-logo {
        width: 112px !important;
        min-width: 112px !important;
        height: 64px !important;
        min-height: 64px !important;
        flex: 0 0 112px !important;
        padding: 5px !important;
    }

    .brands-strip
    .brand-logo-zeiss,
    .brands-strip
    .brand-logo-zeiss-image {
        width: 62px !important;
        min-width: 62px !important;
        flex-basis: 62px !important;
    }
}

@media (max-width: 650px) {
    .brands-strip
    .brands-strip-list {
        gap: 18px !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .brands-strip
    .brand-logo {
        width: 100px !important;
        min-width: 100px !important;
        height: 56px !important;
        min-height: 56px !important;
        flex-basis: 100px !important;
    }

    .brands-strip
    .brand-logo img {
        max-width: 96px !important;
        max-height: 36px !important;
    }

    .brands-strip
    .brand-logo-zeiss,
    .brands-strip
    .brand-logo-zeiss-image {
        width: 50px !important;
        min-width: 50px !important;
        flex-basis: 50px !important;
    }

    .brands-strip
    .brand-logo-zeiss img,
    .brands-strip
    .brand-logo-zeiss-image img {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }
}















































/* ==================================================
   СРАВНЕНИЕ ТИПОВ ЛИНЗ
================================================== */

.lens-comparison-section {
    --comparison-background: #fbfafc;
    --comparison-surface: #ffffff;
    --comparison-header: #f7f5fc;
    --comparison-sticky-header: #f3f0fa;
    --comparison-first-column: #fbfaff;
    --comparison-note: #f8f6fc;
    --comparison-hover: #fcfbfd;
    --comparison-hover-sticky: #f6f3fa;
    --comparison-border: #ebe7f2;
    --comparison-text: #45414b;
    --comparison-heading: #28252d;
    --comparison-muted: #68636e;
    --comparison-accent-text: #554d68;
    --comparison-scrollbar: #d8d1e6;
    --comparison-scrollbar-track: #f7f5fa;

    padding: clamp(48px, 7vw, 88px) 0;
    background: var(--comparison-background);
}

.lens-comparison-heading {
    max-width: 780px;
    margin: 0 0 30px;
}

.lens-comparison-heading h2 {
    margin: 0 0 14px;
    color: var(--comparison-heading);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.lens-comparison-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--comparison-muted);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.65;
}

/* Подсказка о горизонтальной прокрутке */

.lens-comparison-swipe-hint {
    display: none;
    margin: 0 0 10px;
    color: #756f7d;
    font-size: 14px;
    line-height: 1.4;
}

.lens-comparison-swipe-hint span {
    display: inline-block;
    margin-left: 4px;
    font-size: 18px;
}

/* Контейнер горизонтальной прокрутки */

.lens-comparison-scroll {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    border: 1px solid var(--comparison-border);
    border-radius: 18px;
    background: var(--comparison-surface);
    box-shadow: 0 14px 36px rgb(52 42 78 / 5%);

    scrollbar-width: thin;
    scrollbar-color:
        var(--comparison-scrollbar)
        var(--comparison-scrollbar-track);

    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.lens-comparison-scroll:focus-visible {
    outline: 3px solid rgb(142 126 184 / 20%);
    outline-offset: 4px;
}

.lens-comparison-scroll::-webkit-scrollbar {
    height: 8px;
}

.lens-comparison-scroll::-webkit-scrollbar-track {
    background: var(--comparison-scrollbar-track);
    border-radius: 999px;
}

.lens-comparison-scroll::-webkit-scrollbar-thumb {
    background: var(--comparison-scrollbar);
    border: 2px solid var(--comparison-scrollbar-track);
    border-radius: 999px;
}

/* Таблица */

.lens-comparison-table {
    width: 100%;
    min-width: 820px;
    margin: 0;

    border: 0;
    border-collapse: separate;
    border-spacing: 0;

    table-layout: fixed;
    background: var(--comparison-surface);
}

.lens-comparison-table caption {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    overflow: hidden;
    border: 0;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* Ширина колонок на компьютере */

.lens-comparison-col-type {
    width: 14%;
}

.lens-comparison-col-zones {
    width: 23%;
}

.lens-comparison-col-tasks {
    width: 30%;
}

.lens-comparison-col-features {
    width: 33%;
}

/* Ячейки */

.lens-comparison-table th,
.lens-comparison-table td {
    padding: 21px 22px;

    border: 0;
    border-right: 1px solid var(--comparison-border);
    border-bottom: 1px solid var(--comparison-border);

    color: var(--comparison-text);
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;

    overflow-wrap: anywhere;
}

.lens-comparison-table th:last-child,
.lens-comparison-table td:last-child {
    border-right: 0;
}

.lens-comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

/* Светлая шапка */

.lens-comparison-table thead th {
    background: var(--comparison-header);
    color: var(--comparison-accent-text);
    font-weight: 700;
    line-height: 1.4;
}

.lens-comparison-table thead th:first-child {
    border-top-left-radius: 17px;
}

.lens-comparison-table thead th:last-child {
    border-top-right-radius: 17px;
}

/* Первый столбец */

.lens-comparison-table tbody th {
    background: var(--comparison-first-column);
    color: var(--comparison-accent-text);
    font-weight: 700;
}

/* Наведение только на устройствах с мышью */

@media (hover: hover) {
    .lens-comparison-table tbody tr:hover td {
        background: var(--comparison-hover);
    }

    .lens-comparison-table tbody tr:hover th {
        background: var(--comparison-hover-sticky);
    }
}

/* Примечание */

.lens-comparison-note {
    max-width: 780px;
    margin: 24px 0 22px;
    padding: 15px 18px;

    border: 1px solid var(--comparison-border);
    border-radius: 12px;

    background: var(--comparison-note);
    color: #625d6a;

    font-size: 15px;
    line-height: 1.6;
}

/* Кнопка */

.lens-comparison-button {
    width: max-content;
    max-width: 100%;
    text-align: center;
}


/* ==================================================
   ПЛАНШЕТЫ
================================================== */

@media (max-width: 1000px) {
    .lens-comparison-section {
        padding: 60px 0;
    }

    .lens-comparison-heading {
        margin-bottom: 22px;
    }

    .lens-comparison-swipe-hint {
        display: block;
    }

    .lens-comparison-scroll {
        border-radius: 15px;
    }

    .lens-comparison-table {
        width: 820px;
        min-width: 820px;
    }

    .lens-comparison-col-type {
        width: 120px;
    }

    .lens-comparison-col-zones {
        width: 180px;
    }

    .lens-comparison-col-tasks {
        width: 245px;
    }

    .lens-comparison-col-features {
        width: 275px;
    }

    .lens-comparison-table th,
    .lens-comparison-table td {
        padding: 18px;
        font-size: 15px;
    }

    /* Закреплённый первый столбец */

    .lens-comparison-table thead th:first-child,
    .lens-comparison-table tbody th {
        position: sticky;
        left: 0;
    }

    .lens-comparison-table tbody th {
        z-index: 2;

        padding-right: 12px;
        padding-left: 12px;

        background: var(--comparison-first-column);
        box-shadow: 5px 0 12px rgb(52 42 78 / 5%);
    }

    .lens-comparison-table thead th:first-child {
        z-index: 3;

        padding-right: 12px;
        padding-left: 12px;

        background: var(--comparison-sticky-header);
        box-shadow: 5px 0 12px rgb(52 42 78 / 6%);
    }
}


/* ==================================================
   ТЕЛЕФОНЫ
================================================== */

@media (max-width: 700px) {
    .lens-comparison-section {
        padding: 44px 0;
    }

    .lens-comparison-heading {
        margin-bottom: 20px;
    }

    .lens-comparison-heading h2 {
        margin-bottom: 12px;
        font-size: clamp(27px, 8.5vw, 34px);
        line-height: 1.13;
    }

    .lens-comparison-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .lens-comparison-swipe-hint {
        margin-bottom: 9px;
        font-size: 13px;
    }

    .lens-comparison-scroll {
        border-radius: 13px;
        box-shadow: 0 9px 25px rgb(52 42 78 / 5%);
    }

    .lens-comparison-table {
        width: 700px;
        min-width: 700px;
    }

    /* Узкий первый столбец */

    .lens-comparison-col-type {
        width: 105px;
    }

    .lens-comparison-col-zones {
        width: 165px;
    }

    .lens-comparison-col-tasks {
        width: 205px;
    }

    .lens-comparison-col-features {
        width: 225px;
    }

    .lens-comparison-table th,
    .lens-comparison-table td {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .lens-comparison-table thead th:first-child,
    .lens-comparison-table tbody th {
        padding: 13px 9px;

        font-size: 13px;
        line-height: 1.35;

        hyphens: auto;
        overflow-wrap: break-word;
    }

    .lens-comparison-note {
        margin: 20px 0;
        padding: 14px 15px;

        font-size: 14px;
        line-height: 1.55;
    }

    .lens-comparison-button {
        display: flex;

        width: 100%;
        min-height: 52px;

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

        padding-right: 16px;
        padding-left: 16px;
    }
}


/* ==================================================
   ОЧЕНЬ УЗКИЕ ЭКРАНЫ
================================================== */

@media (max-width: 380px) {
    .lens-comparison-section {
        padding: 38px 0;
    }

    .lens-comparison-heading h2 {
        font-size: 27px;
    }

    .lens-comparison-table {
        width: 670px;
        min-width: 670px;
    }

    .lens-comparison-col-type {
        width: 95px;
    }

    .lens-comparison-col-zones {
        width: 155px;
    }

    .lens-comparison-col-tasks {
        width: 195px;
    }

    .lens-comparison-col-features {
        width: 225px;
    }

    .lens-comparison-table th,
    .lens-comparison-table td {
        padding: 14px;
        font-size: 13px;
    }

    .lens-comparison-table thead th:first-child,
    .lens-comparison-table tbody th {
        padding: 12px 7px;
        font-size: 12px;
    }
}


/* ==================================================
   УМЕНЬШЕНИЕ АНИМАЦИЙ
================================================== */

@media (prefers-reduced-motion: reduce) {
    .lens-comparison-scroll {
        scroll-behavior: auto;
    }
}
























.hero-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.hero-lead-form {
    margin-top: 22px;
    padding: 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgb(0 0 0 / 8%);
}

.hero-lead-form h2 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.2;
}

.hero-lead-form-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 12px;
}

.hero-lead-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-lead-field span {
    font-size: 13px;
    font-weight: 700;
}

.hero-lead-field input,
.hero-lead-field select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #ffffff;
    font: inherit;
}

.hero-lead-field input:focus,
.hero-lead-field select:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.hero-lead-submit {
    align-self: end;
    min-height: 46px;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hero-lead-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.hero-lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
}

.hero-lead-consent input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.hero-lead-consent a {
    text-decoration: underline;
}

.hero-lead-status {
    min-height: 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.hero-lead-status.is-error {
    color: #a00000;
}

.hero-lead-status.is-success {
    color: #14722c;
}

.hero-lead-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 700px) {
    .hero-lead-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-contact-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-contact-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }
}

html {
    scroll-behavior: smooth;
}

#lead-form {
    scroll-margin-top: 100px;
}



.lead-section {
    padding: 64px 0;
    background: #f3f7fc;
}

.lead-section-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(420px, 1.2fr);
    align-items: center;
    gap: 48px;
}

.lead-section-info h2 {
    margin: 0 0 14px;
    color: #171b22;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.12;
}

.lead-section-info > p {
    max-width: 520px;
    margin: 0;
    color: #637083;
    font-size: 16px;
    line-height: 1.6;
}

.lead-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.lead-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid #276db8;
    border-radius: 999px;
    background: #ffffff;
    color: #175ca8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.lead-contact-link:hover {
    background: #eaf3fc;
}

.lead-section .hero-lead-form {
    max-width: none;
    margin-top: 0;
}

@media (max-width: 900px) {
    .lead-section-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 700px) {
    .lead-section {
        padding: 42px 0;
    }

    .lead-contact-links {
        display: grid;
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .lead-contact-link {
        min-width: 0;
        padding-right: 7px;
        padding-left: 7px;
        font-size: 12px;
    }
}

















.hero-step-content small,
.product-card-description,
.product-card-details,
.lead-section-info p,
.hero-lead-consent,
.consultation-content p,
.selection-process-item p,
.why-us-item p {
    color: #475569;
}
.hero-lead-field input::placeholder {
    color: #64748b;
    opacity: 1;
}
.product-card-price small,
.hero-feature-text small {
    color: #526174;
}

















.products-heading {
    min-width: 0;
}

.products-price-note {
    max-width: 650px;
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}














/* =========================================
   ОДНОТОННЫЙ ФОН HERO БЕЗ ГРАДИЕНТОВ
========================================= */

html body .hero {
    background: #eaf0f8 !important;
    background-color: #eaf0f8 !important;
    background-image: none !important;
}

html body .hero-container,
html body .hero-grid,
html body .hero-content,
html body .hero-person {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

html body .hero-person::before,
html body .hero-person::after {
    content: none !important;
    display: none !important;
}





/* Контраст характеристик товаров */

.products-section
.product-card
.product-card-details li,
.products-section
.product-card
.product-card-details li span {
    color: #334155 !important;

    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}


/* Контраст описаний классов линз */

.lens-benefits-section
.lens-level-card
.lens-level-intro {
    color: #475569 !important;

    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}


.lens-benefits-section
.lens-level-card
.lens-level-for {
    color: #475569 !important;

    font-size: 12px !important;
    line-height: 1.5 !important;
}


/* Контраст информационной полосы */

.site-info-strip
.site-info-content strong {
    color: #1f2937 !important;
}

.site-info-strip
.site-info-content small {
    color: #475569 !important;

    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}


