/*
 * Блоки, перенесённые из сниппетов Code Snippets (набор «mk-*»).
 *
 * В сниппетах каждый блок таскал с собой «фундамент» — :root с палитрой,
 * .mk-container, .mk-section, .mk-title, .mk-button — чтобы работать в отрыве
 * от темы. Здесь фундамент один на все блоки, дальше идут только
 * блок-специфичные стили, слово в слово как в сниппетах.
 *
 * Переменные namespace'нуты в --mk-*: в сниппетах они звались --navy, --card,
 * --white и легли бы в глобальный :root рядом с чужими. Тем же путём в теме
 * уже идут --dalli-* из прошлого переноса.
 */

:root {
    --mk-navy: #002A47;
    --mk-navy-deep: #00243D;
    --mk-card: #003C66;
    --mk-card-soft: #0C4B73;
    --mk-panel-dark: #145F8E;
    --mk-panel-blue: #2782B5;
    --mk-button-secondary: #0A4D79;
    --mk-slate: #455866;
    --mk-slate-300: #C0C7CC;
    --mk-slate-200: #DCE2E5;
    --mk-slate-100: #EBF1F5;
    --mk-white: #FFFFFF;
    --mk-yellow: #FED584;
    --mk-gold: #E1BA5A;
    --mk-red: #FF4E4E;
    --mk-cyan: #4DC4FF;

    --mk-radius-xs: 6px;
    --mk-radius-sm: 10px;
    --mk-radius-base: 13px;
    --mk-radius-card: 16px;
    --mk-radius-panel: 18px;
    --mk-radius-pill: 999px;

    --mk-space-xs: 8px;
    --mk-space-sm: 14px;
    --mk-space-md: 20px;
    --mk-space-lg: 28px;
    --mk-space-xl: 56px;

    --mk-section-gap: 72px;
    --mk-section-top: 36px;

    /* В сниппетах стояло "Nominee"/"Nominee Extended" — таких @font-face в теме
       нет, они бы упали в Arial. Настоящие начертания темы идут первыми,
       исходные имена оставлены следом как было. */
    --mk-font-main: 'Nominee-Light', 'Nominee-Light-fallback', "Nominee", "Manrope", "Gilroy", "Montserrat", Arial, sans-serif;
    --mk-font-display: 'Nominee-BlackExtended', 'Nominee-BlackExtended-fallback', "Nominee Extended", "Nominee", Arial, sans-serif;

    /* Блок «Категории товаров» держал собственный набор переменных — оставлен. */
    --mk-pc-navy: #002A47;
    --mk-pc-white: #FFFFFF;
    --mk-pc-yellow: #FED584;
    --mk-pc-card-soft: #0C4B73;
}

.mk-section {
    padding: 0 0 var(--mk-section-gap);
    color: var(--mk-white);
    font-family: var(--mk-font-main);
    letter-spacing: 0;
}

.mk-section--first {
    padding-top: var(--mk-section-top);
}

/* Внутри .content (1280px) контейнер просто занимает всю ширину; на отдельной
   странице ограничивает себя сам, как в сниппете.

   Селектор идёт через корневой .dalli-mk-block намеренно. На тесте и проде рядом
   с темой живут исходные сниппеты Code Snippets с теми же классами mk-*, и
   «География-core» печатает в wp_head (приоритет 99, позже стилей темы)
   .mk-container { width: min(1280px, calc(100% - 160px)) } — внутри .content
   это давало по 80px отступа с каждой стороны. Два класса перебивают и это
   правило, и его медиазапросы; сами сниппеты (без .dalli-mk-block) не трогаем. */
.dalli-mk-block .mk-container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
}

.mk-section-heading {
    margin-bottom: var(--mk-space-lg);
}

.mk-title {
    font-family: var(--mk-font-display);
    font-weight: 800;
    color: var(--mk-white);
    margin: 0;
    letter-spacing: 0;
}

.mk-section-title {
    font-size: 40px;
    line-height: 1.08;
}

.mk-lead {
    font-size: 23px;
    line-height: 1.32;
    color: rgba(255, 255, 255, .74);
    margin: 0;
}

.mk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 34px;
    border: 0;
    border-radius: var(--mk-radius-base);
    font-family: var(--mk-font-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease;
}

.mk-button--primary {
    background: var(--mk-yellow);
    color: var(--mk-navy);
}

.mk-button--primary:hover {
    background: var(--mk-gold);
}

.mk-button:focus-visible,
.mk-section :focus-visible {
    outline: 2px solid var(--mk-yellow);
    outline-offset: 3px;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-button:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 760px) {
    .mk-title {
        font-family: var(--mk-font-main);
    }

    .mk-section-title {
        font-size: 24px;
        line-height: 1.16;
    }

    .mk-lead {
        font-size: 17px;
    }

    .mk-button {
        padding: 0 20px;
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
}

/*
 * Тема раздаёт p/a/li/span/div/input глобальные color, font-family и font-size
 * селекторами по тегам (index.scss React-сборки). Внутри mk-блоков это рвёт
 * наследование от контейнера, поэтому возвращаем его.
 *
 * :where() обнуляет вклад перечисленных тегов в специфичность — селектор весит
 * ровно один класс, побеждает теговые правила темы и проигрывает любому
 * блочному правилу ниже по файлу. Порядок важен: этот сброс должен идти ПЕРЕД
 * блок-специфичными стилями.
 */
.mk-section :where(p, a, ul, ol, li, span, div, label, caption, input, textarea, select) {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


/* ============================================================
   Блок: hero (бывший шорткод [mk_hero], сниппет «hero #1»)
   ============================================================ */

.mk-hero {
    background: transparent;
    color: #fff;
    font-family: var(--mk-font-main);
    letter-spacing: 0;
}

.mk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    gap: 56px;
    align-items: center;
}

.mk-hero-title {
    font-family: var(--mk-font-display);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.16;
    color: #FFFFFF;
    margin: 0;
    max-width: 680px;
}

.mk-hero-lead {
    margin: 20px 0 0;
    max-width: 560px;
    font-size: 23px;
    line-height: 1.32;
    color: rgba(255, 255, 255, .76);
}

.mk-hero-form {
    margin-top: 28px;
    max-width: 350px;
    display: grid;
    gap: 20px;
}

.mk-hero-label {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.mk-hero-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.mk-hero-input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: var(--mk-slate-100);
    color: var(--mk-navy);
    font-size: 17px;
    font-family: inherit;
}
.mk-hero-input::placeholder { color: rgba(0, 42, 71, .55); }
.mk-hero-input:focus {
    outline: none;
    border-color: var(--mk-yellow);
    box-shadow: 0 0 0 3px rgba(254, 213, 132, .14);
}
.mk-hero-input.is-error { border-color: #FF4E4E; }

.mk-hero-submit {
    flex: 0 0 auto;
    width: 56px;
    min-height: 56px;
    border: 0;
    border-radius: 13px;
    background: var(--mk-yellow);
    color: var(--mk-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.mk-hero-submit:hover { background: var(--mk-gold); }
.mk-hero-submit:focus-visible { outline: 2px solid var(--mk-yellow); outline-offset: 3px; }
.mk-hero-submit svg { width: 24px; height: 24px; display: block; }

.mk-hero-error {
    min-height: 1.3em;
    color: #FF9E9E;
    font-size: 13px;
    line-height: 1.35;
}
.mk-hero-error:empty { visibility: hidden; }

.mk-hero-media {
    position: relative;
}

.mk-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.mk-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--mk-yellow);
    color: var(--mk-navy);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    z-index: 2;
    max-width: calc(100% - 48px);
}

.mk-hero-badge-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.mk-hero-badge-text {
    font-family: var(--mk-font-main);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    color: var(--mk-navy);
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .mk-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
        gap: 28px;
    }
    .mk-hero-badge {
        top: 20px;
        right: 20px;
        padding: 6px 12px;
    }
    .mk-hero-badge-icon {
        width: 20px;
        height: 20px;
    }
    .mk-hero-badge-text {
        font-size: 12px;
    }
}

@media (max-width: 760px) {
    .mk-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mk-hero-media { order: -1; }
    .mk-hero-title { font-family: var(--mk-font-main); font-size: 28px; line-height: 1.12; }
    .mk-hero-lead { font-size: 17px; margin-top: 14px; }
    .mk-hero-form { margin-top: 20px; }
    .mk-hero-label { font-size: 17px; }
    .mk-hero-input { font-size: 16px; }
    .mk-hero-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
        padding: 6px 12px;
        justify-content: center;
    }
    .mk-hero-badge-icon {
        width: 18px;
        height: 18px;
    }
    .mk-hero-badge-text {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .mk-hero-row { gap: 10px; }
    .mk-hero-badge {
        top: 12px;
        left: 12px;
        right: 12px;
        padding: 5px 10px;
        gap: 6px;
    }
    .mk-hero-badge-icon {
        width: 16px;
        height: 16px;
    }
    .mk-hero-badge-text {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mk-hero * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* ============================================================
   Блок: мини-факты (бывший [mk_mini_facts], «tisers-mini_facts #2»)
   ============================================================ */

.mk-mini-facts {
    background: var(--mk-navy);
}

.mk-mini-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.mk-mini-fact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 24px;
    background: var(--mk-card);
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.mk-mini-fact-value {
    font-family: "Nominee Extended", "Nominee", sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.08;
    color: var(--mk-white);
    letter-spacing: 0;
    margin: 0;
}

.mk-mini-fact-label {
    font-family: "Nominee", "Manrope", "Gilroy", "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .64);
    margin: 0;
}

/* Hover только на desktop с мышью */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-mini-fact:hover {
        background: var(--mk-card-soft);
        transform: translateY(-4px);
    }
}

/* Tablet / узкий desktop */
@media (max-width: 1180px) {
    .mk-mini-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .mk-mini-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .mk-mini-fact {
        padding: 22px 20px;
        gap: 8px;
    }
    .mk-mini-fact-value {
        font-family: "Nominee", "Manrope", "Gilroy", "Montserrat", Arial, sans-serif;
        font-size: 30px;
        line-height: 1.12;
    }
    .mk-mini-fact-label {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* Small mobile */
@media (max-width: 460px) {
    .mk-mini-facts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mk-mini-fact {
        padding: 18px 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mk-mini-fact {
        transition-duration: 0.01ms !important;
    }
}

/* Focus-ring для карточек, если станут кликабельными */
.mk-mini-fact:focus-visible {
    outline: 2px solid var(--mk-yellow);
    outline-offset: 3px;
}


/* ============================================================
   Блок: калькулятор тарифов (бывший [mk_calc], «calculator 1.1 #3»)
   ============================================================ */

.mk-calc-panel {
    padding: 24px 34px 34px;
    border-radius: var(--mk-radius-panel);
    background: var(--mk-card);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.mk-calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--mk-space-md);
}

.mk-calc-field { display: grid; gap: 7px; }

.mk-calc-label {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255,255,255,.72);
}

.mk-calc-select {
    width: 100%;
    min-height: 54px;
    padding: 0 44px 0 16px;
    border: 1px solid transparent;
    border-radius: var(--mk-radius-base);
    background-color: var(--mk-slate-100);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23002A47' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color: var(--mk-navy);
    font-family: var(--mk-font-main);
    font-size: 17px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mk-calc-select:focus {
    outline: none;
    border-color: var(--mk-yellow);
    box-shadow: 0 0 0 3px rgba(254,213,132,.14);
}
.mk-calc-select:focus-visible { outline: 2px solid var(--mk-yellow); outline-offset: 3px; }

/* НОВЫЙ КОНТЕЙНЕР ДЛЯ НИЖНЕГО РЯДА (Результат + Кнопка) */
.mk-calc-bottom {
    margin-top: var(--mk-space-md);
    display: grid;
    grid-template-columns: 1fr auto; /* Результат тянется, кнопка по размеру */
    gap: var(--mk-space-md);
    align-items: stretch; /* Выравнивание по высоте (одинаковая высота) */
}

.mk-calc-result {
    min-height: 56px; /* Равняется min-height поля ввода (селекта) */
    padding: 0 24px; /* Убран вертикальный паддинг для строгого контроля высоты */
    border-radius: var(--mk-radius-base);
    background: var(--mk-navy-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mk-space-md);
    box-sizing: border-box;
}

.mk-calc-result-info { display: grid; gap: 4px; }
.mk-calc-result-label { font-size: 24px; line-height: 1.08; color: rgba(255,255,255,.64); }

.mk-calc-result-value {
    font-family: var(--mk-font-display);
    font-weight: 800;
    font-size: 24px; 
    line-height: 1.08;
    color: var(--mk-white);
    white-space: nowrap;
}

.mk-calc-actions {
    display: flex;
    align-items: center;
}

.mk-calc-actions .mk-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.mk-calc-loading { font-size: 15px; color: rgba(255,255,255,.64); text-align: center; padding: 20px; }

/* Hover-подъём — только desktop с мышью */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-calc-actions .mk-button:hover { transform: translateY(-2px); }
}

/* Desktop: кнопка с фиксированной минимальной шириной */
@media (min-width: 761px) {
    .mk-calc-actions .mk-button {
        width: auto;
        min-width: 320px;
    }
}

/* ≤1180: планшет / узкий desktop */
@media (max-width: 1180px) {
    .mk-calc-panel { padding: 24px 28px 28px; }
}

/* ≤980: форма в одну колонку (согласно CSS_STANDARD.md) */
@media (max-width: 980px) {
    .mk-calc-grid { grid-template-columns: 1fr; gap: 16px; }
    .mk-calc-bottom { 
        grid-template-columns: 1fr; /* Схлопываем нижний ряд в одну колонку */
    }
    .mk-calc-result {
        min-height: auto;
        padding: 20px; /* Возвращаем паддинги на планшете/мобиле */
    }
}

/* ≤760: основной mobile */
@media (max-width: 760px) {
    .mk-section-title { font-size: 24px; line-height: 1.16; font-family: var(--mk-font-main); }
    .mk-calc-panel { padding: 20px; }
    .mk-calc-result { padding: 16px 20px; }
    .mk-calc-result-value { font-family: var(--mk-font-main); font-size: 32px; }
    .mk-calc-actions .mk-button {
        padding: 0 20px;
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
}

/* ≤460: малый mobile */
@media (max-width: 460px) {
    .mk-calc-panel { padding: 16px; }
    .mk-calc-result { padding: 16px; }
    .mk-calc-bottom { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .mk-calc-select, .mk-calc-actions .mk-button { transition-duration: 0.01ms; }
}


/* ============================================================
   Блок: текстовый SEO-блок с вкладками (бывший [dalli_seo_tabs_v1], «Seo text block #9»)
   ============================================================ */

.mk-seo-tabs {
    overflow: hidden;
    isolation: isolate;
}

.mk-seo-tabs,
.mk-seo-tabs * {
    box-sizing: border-box;
}

.mk-seo-tabs .mk-section-title {
    font-size: 40px;
    line-height: 1.08;
    text-align: left;
}

.mk-seo-tabs-nav {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mk-seo-tabs-tab {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 16px 24px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .64);
    font-family: var(--mk-font-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
    cursor: pointer;
    appearance: none;
    transition: color .2s ease;
}

.mk-seo-tabs-tab::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: transparent;
    transition: background-color .2s ease;
}

/* Активная вкладка: только желтая полоска, без изменения фона */
.mk-seo-tabs-tab[aria-selected="true"] {
    color: var(--mk-white);
    font-weight: 700;
}

.mk-seo-tabs-tab[aria-selected="true"]::after {
    background: var(--mk-yellow);
}

.mk-seo-tabs-tab:focus-visible {
    z-index: 3;
    outline: 2px solid var(--mk-yellow);
    outline-offset: 3px;
    border-radius: var(--mk-radius-base);
}

.mk-seo-tabs-panels {
    position: relative;
    z-index: 1;
    margin-top: var(--mk-space-lg);
}

/* Панель контента по стандарту (плоская рабочая панель) */
.mk-seo-tabs-panel {
    padding: 24px 34px 34px;
    border-radius: var(--mk-radius-panel);
    background: var(--mk-card);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.mk-seo-tabs-panel[hidden] {
    display: none;
}

.mk-seo-tabs-panel.is-active {
    animation: mk-seo-tabs-fade .18s ease both;
}

.mk-seo-tabs-panel-head {
    display: grid;
    grid-template-columns: 54px 3px minmax(0, 1fr);
    gap: var(--mk-space-md);
    align-items: center;
}

.mk-seo-tabs-panel-number {
    color: var(--mk-yellow);
    font-family: var(--mk-font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.mk-seo-tabs-panel-divider {
    width: 3px;
    height: 50px;
    border-radius: 3px;
    background: var(--mk-yellow);
}

.mk-seo-tabs-panel-title {
    margin: 0;
    color: var(--mk-white);
    font-family: var(--mk-font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: 0;
}

.mk-seo-tabs-panel-body {
    max-width: 1120px;
    margin: var(--mk-space-lg) 0 0;
    color: rgba(255, 255, 255, .76);
    font-family: var(--mk-font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.mk-seo-tabs-panel-body p {
    margin: 0;
}

.mk-seo-tabs-panel-body p + p,
.mk-seo-tabs-panel-body ul + p,
.mk-seo-tabs-panel-body p + ul {
    margin-top: var(--mk-space-md);
}

.mk-seo-tabs-list,
.mk-seo-tabs-panel-body ul {
    display: grid;
    gap: var(--mk-space-sm);
    margin: var(--mk-space-md) 0 0;
    list-style: none;
}

.mk-seo-tabs-list > li,
.mk-seo-tabs-panel-body ul > li {
    display: grid;
    column-gap: 16px;
    align-items: start;
    list-style: none;
    line-height: 1.5;
}

.mk-seo-tabs-list > li::before,
.mk-seo-tabs-panel-body ul > li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: calc((1.5em - 8px) / 2);
    border-radius: 50%;
    background: var(--mk-yellow);
}

.mk-seo-tabs-list > li::after,
.mk-seo-tabs-list > li::marker,
.mk-seo-tabs-panel-body ul > li::after,
.mk-seo-tabs-panel-body ul > li::marker {
    content: none;
    display: none;
}

.mk-seo-tabs-link,
.mk-seo-tabs-panel-body a {
    color: var(--mk-yellow);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.mk-seo-tabs-link:focus-visible {
    outline: 2px solid var(--mk-yellow);
    outline-offset: 3px;
    border-radius: 3px;
}

@keyframes mk-seo-tabs-fade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover только на desktop с мышью */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-seo-tabs-tab:hover {
        color: var(--mk-white);
    }

    .mk-seo-tabs-link:hover {
        color: var(--mk-gold);
    }
}

/* Breakpoint: <= 1180px */
@media (max-width: 1180px) {
    .mk-seo-tabs-tab {
        min-height: 60px;
        padding-inline: 18px;
        font-size: 16px;
    }

    .mk-seo-tabs-panel {
        padding: 24px 28px 28px;
    }
}

/* Breakpoint: <= 760px (Mobile) */
@media (max-width: 760px) {
    .mk-seo-tabs .mk-section-title {
        font-family: var(--mk-font-main);
        font-size: 24px;
        line-height: 1.16;
    }

    .mk-seo-tabs-nav {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .mk-seo-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .mk-seo-tabs-tab {
        flex: 0 0 210px;
        min-height: 56px;
        padding: 14px 16px;
        font-size: 16px;
        scroll-snap-align: start;
    }

    .mk-seo-tabs-panel {
        padding: 20px;
    }

    .mk-seo-tabs-panel-head {
        grid-template-columns: 36px 2px minmax(0, 1fr);
        gap: 12px;
    }

    .mk-seo-tabs-panel-number {
        font-size: 16px;
    }

    .mk-seo-tabs-panel-divider {
        width: 2px;
        height: 42px;
    }

    .mk-seo-tabs-panel-title {
        font-family: var(--mk-font-main);
        font-size: 24px;
        line-height: 1.24;
    }

    .mk-seo-tabs-panel-body {
        max-width: none;
        margin: var(--mk-space-md) 0 0;
        font-size: 16px;
        line-height: 1.5;
    }

    .mk-seo-tabs-panel-body p + p,
    .mk-seo-tabs-panel-body ul + p,
    .mk-seo-tabs-panel-body p + ul {
        margin-top: var(--mk-space-sm);
    }

    .mk-seo-tabs-list,
    .mk-seo-tabs-panel-body ul {
        gap: 12px;
        margin-top: var(--mk-space-sm);
    }
}

/* Breakpoint: <= 460px */
@media (max-width: 460px) {
    .mk-seo-tabs-panel {
        padding: 16px;
    }

    .mk-seo-tabs-tab {
        flex-basis: 190px;
    }

    .mk-seo-tabs-panel-head {
        grid-template-columns: 32px 2px minmax(0, 1fr);
        gap: 12px;
    }

    .mk-seo-tabs-panel-title {
        font-size: 22px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mk-seo-tabs-tab,
    .mk-seo-tabs-link,
.mk-seo-tabs-panel-body a {
        transition: none;
    }

    .mk-seo-tabs-panel.is-active {
        animation: none;
    }
}


/* ============================================================
   Блок: услуги (бывший [mk_services2], «услуги v2 #13»)
   ============================================================ */

.mk-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--mk-space-md);
}

.mk-services-card {
    position: relative;
    background: var(--mk-card);
    border-radius: var(--mk-radius-card);
    padding: 20px 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    color: var(--mk-white);
    overflow: hidden;
}

/* Первый ряд: 3 карточки по 2 колонки */
.mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(1),
.mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(2),
.mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(3) {
    grid-column: span 2;
}

/* Второй ряд: 2 карточки по 3 колонки */
.mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(4),
.mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(5) {
    grid-column: span 3;
}

/* Развёрнутая сетка: все карточки по 2 колонки (3 в ряд) */
.mk-services-grid--expanded .mk-services-card {
    grid-column: span 2;
}

.mk-services-card:hover {
    background: var(--mk-card-soft);
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-services-card:hover {
        transform: translateY(-4px);
    }
}

.mk-services-card-title {
    font-family: var(--mk-font-main);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.32;
    color: var(--mk-white);
    margin: 0;
    position: relative;
    z-index: 2; /* Заголовок поверх иконки */
    padding-right: 110px;
}

.mk-services-card-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: 1; /* Иконка под заголовком */
}

/* Скрытые карточки */
.mk-services-card.is-hidden {
    display: none;
}

.mk-services-actions {
    margin-top: var(--mk-space-xl);
    text-align: center;
}

/* Tablet ≤1180px */
@media (max-width: 1180px) {
    .mk-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(1),
    .mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(2),
    .mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(3),
    .mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(4),
    .mk-services-grid:not(.mk-services-grid--expanded) .mk-services-card:nth-child(5),
    .mk-services-grid--expanded .mk-services-card {
        grid-column: span 1;
    }

    .mk-services-card-title {
        padding-right: 90px;
    }

    .mk-services-card-icon {
        width: 80px;
        height: 80px;
        right: 16px;
        bottom: 12px;
    }
}

/* Mobile ≤760px - горизонтальный скролл и квадратные карточки */
@media (max-width: 760px) {
    .mk-services-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: var(--mk-space-sm);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .mk-services-card {
        flex: 0 0 280px;
        aspect-ratio: 1 / 1; /* Делаем карточку строго квадратной */
        height: auto; /* Сбрасываем фиксированную высоту */
        padding: 20px;
        scroll-snap-align: start;
    }

    .mk-services-card-title {
        font-size: 18px;
        line-height: 1.2;
        padding-right: 0; /* Убираем отступ, чтобы текст мог наезжать на иконку */
        word-wrap: break-word;
    }

    .mk-services-card-icon {
        width: 62.5%; /* 2.5/4 (62.5%) от высоты/ширины карточки */
        height: 62.5%;
        object-fit: contain;
        right: 8%;
        bottom: 8%;
    }

    .mk-services-actions {
        display: none;
    }
}

/* Small mobile ≤460px */
@media (max-width: 460px) {
    .mk-services-card {
        flex: 0 0 260px; /* Ширина меньше, но aspect-ratio: 1/1 сохранит квадрат */
        padding: 16px;
    }

    .mk-services-card-title {
        font-size: 16px;
    }

    /* Иконка автоматически масштабируется до 62.5% от 260px благодаря процентам */
}

/* Скрытие скроллбара */
.mk-services-grid::-webkit-scrollbar {
    height: 4px;
}

.mk-services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--mk-radius-xs);
}

.mk-services-grid::-webkit-scrollbar-thumb {
    background: rgba(254, 213, 132, 0.4);
    border-radius: var(--mk-radius-xs);
}

.mk-services-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 213, 132, 0.6);
}

/* Кнопка «Показать все услуги» — шрифт как у остального интерфейса блока */
.mk-services-show-all {
    font-family: var(--mk-font-main);
    font-weight: 500;
}


/* ============================================================
   Блок: категории товаров (бывший [dalli_product_categories], «kategorii_tovarov_dostavki #8»)
   ============================================================ */

.mk-product-categories,
.mk-product-categories *,
.mk-product-categories *::before,
.mk-product-categories *::after {
    box-sizing: border-box;
}

.mk-product-categories {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    color: var(--mk-pc-white);
    background: var(--mk-pc-navy);
    font-family: var(--mk-font-main);
    font-weight: 300;
}

.mk-product-categories .mk-container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.mk-product-categories .mk-section-heading {
    display: grid;
    gap: var(--mk-space-md);
    margin-bottom: var(--mk-space-lg);
}

.mk-product-categories .mk-section-title {
    max-width: 1180px;
    text-wrap: balance;
}

.mk-product-categories .mk-lead {
    max-width: 820px;
}

.mk-product-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(76px, auto));
    grid-auto-flow: column;
    column-gap: 54px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-product-categories__item {
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.mk-product-categories__item::before,
.mk-product-categories__item::after {
    content: none;
    display: none;
}

.mk-product-categories__item::marker {
    content: "";
    color: transparent;
    font-size: 0;
}

.mk-product-categories__item[hidden] {
    display: none;
}

.mk-product-categories__pagination {
    display: none;
}

.mk-product-categories__status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.mk-product-categories__button {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 75px;
    margin: 0;
    padding: 10px 14px 10px 0;
    border: 0;
    border-radius: 13px;
    outline: none;
    color: rgba(255, 255, 255, .94);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.mk-product-categories__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--mk-pc-yellow);
}

.mk-product-categories__icon svg {
    display: block;
    width: 42px;
    height: 42px;
    max-width: none;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mk-product-categories__icon svg.mk-pc__svg--fill {
    fill: currentColor;
    stroke: none;
    stroke-width: 0;
}

.mk-product-categories__icon svg.mk-pc__svg--travel {
    stroke: currentColor;
    stroke-width: .35;
    paint-order: stroke fill;
}

.mk-product-categories__icon svg.mk-pc__svg--auto {
    stroke-width: 1.25;
}

.mk-product-categories__icon svg.mk-pc__svg--bear {
    stroke-width: 2.8;
}

.mk-product-categories__icon .mk-pc__bear-nose {
    fill: currentColor;
    stroke: none;
}

.mk-product-categories__label {
    min-width: 0;
    color: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.mk-product-categories__button:focus-visible {
    outline: 2px solid var(--mk-pc-yellow);
    outline-offset: 3px;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-product-categories__button:hover {
        transform: translateX(12px);
    }
}

@media (max-width: 1180px) {
    .mk-product-categories__grid {
        column-gap: 32px;
    }

    .mk-product-categories__label {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .mk-product-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 0 32px;
    }
}

@media (max-width: 760px) {

    .mk-product-categories__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        touch-action: pan-y;
    }

    .mk-product-categories__button {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        min-height: 68px;
        padding-block: 8px;
    }

    .mk-product-categories__icon {
        width: 44px;
        height: 44px;
    }

    .mk-product-categories__icon svg {
        width: 36px;
        height: 36px;
    }

    .mk-product-categories__label {
        font-size: 16px;
        line-height: 1.38;
    }

    .mk-product-categories__pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        margin: 22px 0 0;
        padding: 0;
    }

    .mk-product-categories__pagination[hidden] {
        display: none;
    }

    .mk-product-categories__dot {
        display: grid;
        place-items: center;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 50%;
        outline: none;
        color: inherit;
        background: transparent;
        box-shadow: none;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }

    .mk-product-categories__dot::before {
        content: "";
        display: block;
        width: 9px;
        height: 9px;
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 50%;
        background: transparent;
        transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .mk-product-categories__dot.is-active::before {
        border-color: var(--mk-pc-yellow);
        background: var(--mk-pc-yellow);
        transform: scale(1.15);
    }

    .mk-product-categories__dot:focus-visible {
        outline: 2px solid var(--mk-pc-yellow);
        outline-offset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mk-product-categories__button {
        transition-duration: .01ms;
    }
}


/* ============================================================
   Блок: клиенты/бренды (бывший [mk_clients], «brands #10»)
   ============================================================ */

.mk-clients-slider {
    position: relative;
    padding-bottom: 8px;
}

.mk-clients-viewport {
    overflow: hidden;
    position: relative;
}

.mk-clients-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mk-clients-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mk-space-md);
    padding-bottom: 8px;
}

.mk-clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mk-card);
    border-radius: var(--mk-radius-card);
    padding: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    transition: background 0.2s ease, transform 0.2s ease;
    min-height: 117px;
    box-sizing: border-box;
}

.mk-clients-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.mk-clients-dots {
    display: flex;
    justify-content: center;
    gap: var(--mk-space-xs);
    margin-top: 32px;
    padding-bottom: 8px;
}

.mk-clients-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mk-slate);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mk-clients-dot.is-active {
    background: var(--mk-yellow);
    transform: scale(1.2);
}

/* Hover только на desktop с мышью */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-clients-item:hover {
        background: var(--mk-card-soft);
        transform: translateY(-4px);
    }
}

/* Breakpoints */
@media (max-width: 1180px) {
    .mk-clients-slide { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 760px) {
    .mk-clients-slide { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .mk-clients-item { padding: 20px; min-height: 90px; }
    .mk-clients-item img { max-height: 40px; }
}
@media (max-width: 460px) {
    .mk-clients-slide { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mk-clients-item { padding: 16px; min-height: 80px; }
    .mk-clients-dots { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .mk-clients-track,
    .mk-clients-item,
    .mk-clients-dot {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* ============================================================
   Блок: отзывы о нас (бывший [mk_client_reviews], «otzyv_o_nas #16»)
   ============================================================ */

.mk-client-reviews,
.mk-client-reviews * {
    box-sizing: border-box;
}

.mk-client-reviews {
    --mkr-navy: #002A47;
    --mkr-navy-deep: #00243D;
    --mkr-card: #003C66;
    --mkr-card-soft: #0C4B73;
    --mkr-white: #FFFFFF;
    --mkr-yellow: #FED584;
    width: 100%;
    padding: 36px 0;
    background: transparent;
    color: var(--mkr-white);
    font-family: "Nominee", "Manrope", "Gilroy", "Montserrat", Arial, sans-serif;
    letter-spacing: 0;
}

.mk-client-reviews > .mk-container {
    width: 1280px;
    max-width: 100%;
    margin-inline: auto;
}

.mk-client-reviews__panel {
    display: grid;
    grid-template-columns: minmax(440px, 0.85fr) minmax(0, 1.65fr);
    align-items: center;
    gap: 28px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mk-client-reviews__summary {
    min-width: 0;
}

.mk-client-reviews__title {
    margin: 0;
    color: var(--mkr-white);
    font-family: "Nominee Extended", "Nominee", sans-serif;
    font-size: 24px !important;
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: 0;
    white-space: nowrap;
}

.mk-client-reviews__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.32;
}

.mk-client-reviews__star {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    color: var(--mkr-yellow);
}

.mk-client-reviews__dot {
    color: rgba(255, 255, 255, 0.48);
}

.mk-client-reviews .mk-client-reviews__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-client-reviews .mk-client-reviews__item {
    min-width: 0;
    margin: 0;
    padding: 0;
    background: none;
}

.mk-client-reviews .mk-client-reviews__item::before,
.mk-client-reviews .mk-client-reviews__item::after {
    display: none;
    content: none;
}

.mk-client-reviews__platform {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 64px;
    padding: 10px 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    background: transparent;
    color: var(--mkr-white);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mk-client-reviews__platform:focus-visible {
    outline: 2px solid var(--mkr-yellow);
    outline-offset: 3px;
}

.mk-client-reviews__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88%;
    max-width: 120px;
    height: 32px;
    color: currentColor;
}

.mk-client-reviews__logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mk-client-reviews__logo--yell {
    gap: 7px;
    width: auto;
}

.mk-client-reviews__logo--yell .mk-client-reviews__logo-image {
    width: 26px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.mk-client-reviews__logo-name {
    color: var(--mkr-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.mk-client-reviews__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .mk-client-reviews__platform:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.34);
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 1180px) {
    .mk-client-reviews__panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mk-client-reviews__title {
        white-space: normal;
    }

    .mk-client-reviews .mk-client-reviews__list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (max-width: 760px) {
    .mk-client-reviews__panel {
        gap: 20px;
        padding: 0;
    }

    .mk-client-reviews__title {
        font-family: "Nominee", "Manrope", "Gilroy", "Montserrat", Arial, sans-serif;
        font-size: 24px;
        line-height: 1.16;
    }

    .mk-client-reviews__rating {
        margin-top: 14px;
        font-size: 17px;
    }

    .mk-client-reviews__star {
        width: 23px;
        height: 23px;
    }

    .mk-client-reviews .mk-client-reviews__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .mk-client-reviews__platform {
        height: 60px;
    }
}

@media (max-width: 460px) {
    .mk-client-reviews__panel {
        padding: 0;
    }

    .mk-client-reviews .mk-client-reviews__list {
        gap: 8px;
    }

    .mk-client-reviews__platform {
        height: 56px;
        padding-inline: 6px;
    }

    .mk-client-reviews__logo {
        width: 82%;
    }

    .mk-client-reviews__logo--yell {
        width: auto;
    }

    .mk-client-reviews__logo-name {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mk-client-reviews__platform {
        transition-duration: 0.01ms;
    }
}


/* ============================================================
   Довески к перенесённой вёрстке
   ============================================================ */

/* Сноска под калькулятором. В сниппете она была помечена классом соседнего
   блока (.mk-wh-note) и своих стилей не имела — здесь свой класс, оформление
   повторяет сноску блока «куда и как доставляем». */
.mk-calc-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 22px 0 0;
    padding-inline: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.45;
}

.mk-calc-note svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--mk-slate-300);
}

/* Иконка категории может быть не из набора, а загруженной картинкой —
   ведём её по тем же размерам, что и <svg> из набора. */
.mk-product-categories__icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

@media (max-width: 760px) {
    .mk-product-categories__icon img {
        width: 38px;
        height: 38px;
    }
}
