/* Основной фон сайта */
body {
    min-height: 100vh;
    /*background: #f5f7fa !important;*/
    display: flex;
    flex-direction: column;
    font-family: 'EtelkaPro', sans-serif !important;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}

.cart-count-hidden {
    display: none;
}

.hero-banner {
    min-height: 320px;
    max-height: 400px;
    border-radius: 1.5rem;
    box-shadow: 0 0.3rem 1.2rem rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
}
.hero-banner video,
.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullscreen-banner {
    position: relative;
    width: 100%;       /* вместо 100vw */
    height: 100vh;     /* растягиваем на весь экран по высоте */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.fullscreen-banner video,
.fullscreen-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;       /* занимают 100% по ширине контейнера-fluid */
    height: 100%;      /* и 100% по высоте баннера */
    object-fit: cover; /* центрируют и обрезают в нужных пропорциях */
}

.fullscreen-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.18); /* полупрозрачная вуаль */
    pointer-events: none;
    z-index: 1;
}

/* чтобы видео/изображение были позади вуали */
.fullscreen-banner video,
.fullscreen-banner img {
    z-index: 0;
}

.product-card{
    position: relative;
    text-decoration: none;
color: inherit;
}
.product-card-body{
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 380px;
    max-height: 380px;
    background: #efefef !important;
    height: 100%;
}

.product-card-body img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-card-body button{
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
    padding: 0.8rem 1rem;
    -webkit-transform: translateY(3rem);
    transform: translateY(3rem);
    opacity: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    transition: all 0.3s;
    background: #141414eb;
    color: white;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 20;
}
.product-card-body:hover button{
        bottom: 48px;
    opacity: 1;
    visibility: visible;

}

.product-card-footer h5 {
    text-decoration: none !important;
    font-size: 14px;
}
.product-card-amount{
    font-size: 14px;
    font-weight: 700;
}

.grid{
    display: grid;
}

.grid-cols-2{
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3{
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4{
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5{
    grid-template-columns: repeat(5, 1fr);
}

/* Kumo-style карточки товаров */

.card.product-card .card-body {
    border-top: none;
    padding-bottom: 24px;
    padding-top: 18px;
    /*background: #fff;*/
}
.card.product-card .badge {
    font-weight: 500;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px #eee;
}


/* Категории — кнопки */
.category-filter {
    border-radius: 16px !important;
    font-weight: 500;
    padding: 4px 16px !important;
    letter-spacing: 0.5px;
    transition: background 0.18s, color 0.18s;
}
.category-filter.active,
.category-filter:hover {
    background: #2457d7 !important;
    color: #fff !important;
    border-color: #2457d7 !important;
}

.cart-toast .toast {
    min-width: 220px;
    border-radius: 13px;
}

.card-title {
    font-size: 1.12em;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.card .btn {
    font-weight: 500;
    letter-spacing: 0.04em;
}

.product-sizes .badge,
.product-colors .color-dot,
.product-colors .color-name {
    /* Можно оставить если используешь где-то, но не критично */
}

.category-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: brightness(0.68);
}
.category-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    min-height: 230px;
    max-height: 540px;
    min-width: 100%;
}
.category-banner {
    min-height: 410px;
    height: 32vw;
    max-height: 520px;
    border-radius: 20px;
    box-shadow: 0 3px 24px 0 rgba(60,60,100,.10);
    transition: box-shadow .18s, transform .18s;
    position: relative;
}
.category-banner:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(40,60,100,.16);
}
.category-banner:hover .category-banner-bg {
    filter: brightness(0.82);
}
.category-banner .position-absolute {
    z-index: 2;
}
.category-banner h2,
.category-banner .btn {
    text-shadow: 0 2px 18px rgba(0,0,0,0.18);
}

.nav-item .nav-link{
    font-size: 14px;
    color: #000000;
}
@media (max-width: 767.98px) {
    .category-banner {
        min-height: 200px;
        height: 46vw;
        max-height: 290px;
    }
    .category-banner-bg img {
        min-height: 200px;
        max-height: 320px;
    }
}

@media (max-width: 600px) {
    .product-card .btn,
    .product-card form {
        width: 100% !important;
        margin-bottom: 6px;
    }
    .product-card .d-flex.gap-2 {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}
@media (max-width: 575.98px) {
    .row.g-4 > [class*='col-'] {
        margin-bottom: 1rem;
    }
}
@media (min-width: 992px) {
    .mega-menu {
        left: 0;
        right: 0;
        top: 69px !important;
        position: fixed !important;
        border-radius: 0;
        z-index: 10;
        margin: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 25px 10px rgba(0,0,0,0.25);
        transition: all 0.3s;
    }
    .navbar .dropdown:hover > .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mega-menu-inner{
        max-width: 600px;
        font-size: 14px;
    }

    .mega-menu-inner a {
        opacity: 0.66;
        transition: all 0.3s;
    }
    .mega-menu-inner a:hover{
        opacity: 1;
        color: #000000;

    }
}

.btn-nike {
    background: #111;
    color: #fff;
    border-radius: 30px;
    padding: 7px 22px 7px 18px;
    font-weight: 500;
    font-size: 1.03rem;
    letter-spacing: 0.01em;
    line-height: 1.35;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    gap: 10px;
    text-decoration: none !important;
}
.btn-nike:hover, .btn-nike:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
    text-decoration: none !important;
}
.btn-nike i {
    font-size: 1.16em;
    transition: transform 0.15s;
}
.btn-nike:hover i {
    transform: translateX(4px);
}

.favorite-btn {
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #121212;
    font-size: 16px;
    right: 0.7rem;
    left: auto;
    top: 0.7rem;
}
.favorite-btn i{
    display: flex;
    align-items: center;
    justify-content: center;
}
.favorite-btn:hover {
    transform: scale(1.19);
}
.product-card .badge{
    padding: .47em .8em;
    font-size: 12px;
    border-radius: .15rem;
    letter-spacing: 0.08rem;
}

.bg-sale {
    background: #7db53c;
}
.bg-new {
    background: #1dbb18;
}
.bg-hot {
    background: #ff4b12;
}
.bg-sold-out {
    background: #1e2225;
}

.ab-left {
    left: 0.7rem;
    right: auto;
    z-index: 1;
    top: 0.7rem;
}
.text-upper {
    text-transform: uppercase;
}

.tab-content {
    min-height: 380px; /* подбери под свой макет */
    transition: min-height .2s;
}
.tab-content {
    padding-top: 20px;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* максимум 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em; /* высота для 2 строк, примерно 2 x line-height */
}

.fs-7{
    font-size: 13px;
}

.fs-7 { font-size: 0.95em; }
/*.product-card { transition: box-shadow .2s; }*/
/*.product-card:hover { box-shadow: 0 0.5rem 1.3rem rgba(0,0,0,0.12); }*/
.card-img-top { background: #f6f6f6; }

.product-gallery{
    overflow: hidden;
}
.product-img-zoom {
    transition: transform 0.22s cubic-bezier(.2,.8,.3,1);
    cursor: zoom-in;
    will-change: transform;
    /* Чтобы по центру оставалась при увеличении */
    display: block;
    margin: 0 auto;
}
.product-img-zoom.zoomed {
    transform: scale(1.4);
    z-index: 2;
    cursor: zoom-out;
}

.color-btn{
    position:relative;
    width:34px;height:34px;border-radius:50%;
    --swatch: #fff;
    background:var(--swatch,#fff);
    border:1px solid rgba(0,0,0,.25);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
    padding:0; cursor:pointer;
}
.color-btn:hover{ transform: scale(1.05); }
.color-btn:focus-visible{ outline:2px solid rgba(13,110,253,.6); outline-offset:2px; }

.color-btn.active {
    box-shadow: 0 0 0 3px #111;
    border: 2px solid #111 !important;
}
.size-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}
.size-btn.selected {
    background: #222;
    color: #fff;
    border-color: #222;
}

.header-auth-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

@font-face{
    font-family:'EtelkaPro';
    src:url('../fonts/EtelkaPro/ETELKAPRO-REGULAR.TTF') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family:'EtelkaPro';
    src:url('../fonts/EtelkaPro/ETELKAPRO-ITALIC.TTF') format('truetype');
    font-weight:400;
    font-style:italic;
    font-display:swap;
}
@font-face{
    font-family:'EtelkaPro';
    src:url('../fonts/EtelkaPro/ETELKAPRO-SEMIBOLD.TTF') format('truetype');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family:'EtelkaPro';
    src:url('../fonts/EtelkaPro/ETELKAPRO-BOLDITALIC.TTF') format('truetype');
    font-weight:700;
    font-style:italic;
    font-display:swap;
}

/* Кастомный скролл */
.hideScroll {
    overflow: auto;
}

/* Chrome, Safari, Opera */
.hideScroll::-webkit-scrollbar {
    width: 3px;              /* ширина */
    height: 3px;             /* для горизонтального */
}

.hideScroll::-webkit-scrollbar-track {
    background: transparent;     /* фон трека */
    border-radius: 10px;
}

.hideScroll::-webkit-scrollbar-thumb {
    background-color: #dedede;  /* цвет ползунка */
    border-radius: 10px;
    border: 1px solid #f0f0f0; /* обводка */
}

/* Firefox */
.hideScroll {
    scrollbar-width: thin;       /* "auto" | "thin" | "none" */
    scrollbar-color: #dedede transparent; /* цвет ползунка и трека */
}

.size-btn.selected {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* выбранный свотч — одно правило вместо двух */
.color-btn.selected{
    outline:none;                      /* убираем второе правило */
    border:2px solid #111;             /* жирнее */
    box-shadow:
        0 0 0 3px rgba(13,110,253,.55),  /* внешнее кольцо */
        inset 0 0 0 2px rgba(255,255,255,.9); /* внутренняя грань видна на тёмных */
}

.size-btn.unavailable {
    text-decoration: line-through;
    color: #404040 !important;
    background-color: #f0f0f0;  /* фон сразу серый */
    border-color: #ddd;
    opacity: 1; /* убрал прозрачность, чтобы лучше видно */
    pointer-events: none; /* запрещаем клики */
}

.size-btn.unavailable:hover {
    background-color: #e0e0e0; /* более тёмный серый при наведении */
    border-color: #bbb;
    cursor: not-allowed;
}
.swiper-slide img {
    max-height: 400px;
    object-fit: contain;
}
.swiper {
    border-radius: 8px;
}

/* Базовый стиль превью */
.product-thumb{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:12px;
    display:block;               /* убираем нижний зазор */
    box-sizing: border-box;      /* чтобы border не “прыгал” размер */
    cursor:pointer;
    /* убери прошлые outline/box-shadow если были */
    outline: none;
    box-shadow: none;
}

/* Активное превью — ровная рамка по всему периметру */
.product-thumb.active{
    border:2px solid #111;       /* рамка рисуется ВНУТРИ, её не обрежет overflow */
}

.search-box {
    width: 260px;          /* можно чуть меньше/больше */
    max-width: 100%;
    margin-right: auto;
}

/* делаем капсулу */
.search-box .input-group {
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #f8f9fa;   /* светлый фон */
}

.search-box .input-group-text {
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.1rem;
    padding-left: 14px;
}

.search-box .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 10px 16px;
    font-size: 1rem;
}
.search-box .form-control:focus {
    outline: none;
    box-shadow: none;
}

/* точки под лентой */
.sponsor-swiper .swiper-pagination{
    position: static;      /* вместо absolute */
    margin-top: 14px;
    text-align: center;
}
.sponsor-swiper { padding-bottom: 0; } /* на всякий случай убрать отступ снизу */

/* Лого спонсоров сразу цветные */
.sponsor-swiper img{
    max-height:48px;
    height:48px;
    object-fit:contain;
    filter: none !important;
    opacity: 1 !important;
}

/* На ховере ничего не меняем */
.sponsor-swiper a:hover img{
    filter: none !important;
    opacity: 1 !important;
}

/* (если точки налезают) — держим их снизу */
.sponsor-swiper .swiper-pagination{
    position: static;
    margin-top: 14px;
    text-align: center;
}

/* Шапка заказа */
.order-hero{background:#fff;box-shadow:0 4px 24px rgba(0,0,0,.06)}
.status-chip{padding:.5rem .8rem;border-radius:999px;font-weight:600}

/* Степпер статусов */
.stepper{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:.5rem}
.step{position:relative;text-align:center}
.step .dot{width:12px;height:12px;border-radius:50%;margin:0 auto;background:#e5e7eb}
.step.is-done .dot{background:#111}
.step .label{margin-top:6px;font-size:.8rem;color:#6b7280}
.step.is-done .label{color:#111;font-weight:600}

/* Позиции */
.thumb-64{width:64px;height:64px;flex:0 0 64px}
.thumb-blank{width:100%;height:100%;background:#f6f7f9}
.minw-80{min-width:80px}
.minw-140{min-width:140px}
.minw-160{min-width:160px}

/* Пары ключ—значение */
.kv{display:flex;align-items:center;justify-content:space-between;padding:.35rem 0}

/* Таймлайн статусов */
.timeline{position:relative;padding-left:8px}
.timeline-item{position:relative;padding-left:18px;margin-bottom:14px}
.timeline-dot{position:absolute;left:0;top:.4rem;width:8px;height:8px;background:#111;border-radius:50%}
.timeline-item:before{content:"";position:absolute;left:3px;top:1.25rem;bottom:-7px;width:2px;background:#eaecef}
.timeline-item:last-child:before{display:none}

/* Карточка заказа — мягкая тень, плавный hover */
.order-card { border-radius: 16px; transition: transform .15s ease, box-shadow .15s ease; }
.hover-lift:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }

/* Кружок слева с иконкой */
.order-avatar { width: 48px; height: 48px; background: #f6f7f9; color: #111; }

/* Пустое состояние */
.empty-avatar { width: 64px; height: 64px; background: #f6f7f9; color: #111; }
/* Стек превьюшек */
.thumb-stack{display:flex;align-items:center;gap:8px}
.thumb{width:44px;height:44px;border-radius:10px;overflow:hidden;background:#f6f7f9;box-shadow:0 1px 6px rgba(0,0,0,.06)}
.thumb img{width:100%;height:100%;object-fit:cover;display:block}

 .search-box .dropdown-menu { z-index: 1100; }

/* ссылки авторизации */
.header-auth-link {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    transition: color .2s ease;
}

.header-auth-link:hover {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* общий контейнер справа — не переносим строки */
.nav-right{
    white-space: nowrap;
}

/* ссылки авторизации — чистый текст, без синего */
.header-auth-link{
    color:#111827; font-weight:500; text-decoration:none;
    font-size:.95rem; line-height:1; transition:color .2s ease;
}
.header-auth-link:hover{ color:#000; text-decoration:underline; text-underline-offset:3px; }
.header-auth-link i{ font-size:1rem; line-height:1; color:inherit; }

/* бейджи счётчиков не прыгают */
.cart-count-hidden{ display:none; }
.fav-count-hidden{ display:none; }

/* Убираем "синий" в аккордеоне, даже для visited */
#mnavRoot .accordion-button a,
#mnavRoot .accordion-button a:visited{
    color:#111827 !important;
    text-decoration:none !important;
}

/* Строки меню авторизации в моб.аккордеоне */
.mnav-link{
    display:flex; align-items:center; gap:.5rem;
    width:100%;
    padding:.5rem 0;                 /* как остальные пункты */
    color:#111827;                   /* фикс цвета */
    text-decoration:none;
    font-weight:500;
}
.mnav-link:hover{
    color:#000;
    text-decoration:underline;
    text-underline-offset:3px;
}

/* Крошечный кружок с иконкой (как в хедере) */
.mnav-ico{
    width:22px; height:22px;
    border:1px solid #d1d5db; border-radius:50%;
    display:inline-grid; place-items:center;
    background:#fff;
    flex:0 0 22px;
}
.mnav-ico i{ font-size:13px; line-height:1; color:inherit; }

/* Небольшой hover-эффект для кружка */
.mnav-link:hover .mnav-ico{
    background:#f3f4f6; border-color:#cfd6e3;
}

.password-toggle i {
    font-size: 1.2rem;
    color: #000; /* чёрный цвет */
}

.password-toggle:focus {
    outline: none;
    box-shadow: none; /* убираем синий фокус */
}

/* ===== ORDER STEPPER ===== */
.stepper{
    /* базовый размер обычной точки */
    --dot: 22px;

    display:flex;
    justify-content:space-between;
    position:relative;
    margin:30px 0 12px;
}

/* серая линия строго по центру кружков */
.stepper::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:calc(var(--dot) / 2);
    height:3px;
    background:#e5e7eb;
    z-index:0;
    /* отступы на радиус, чтобы не заходить в кружки */
    margin:0 calc(var(--dot) / 2);
    transform:translateY(-50%);
}

/* чёрный прогресс до текущего шага */
.stepper::after{
    content:"";
    position:absolute;
    left:0;
    top:calc(var(--dot) / 2);
    height:3px;
    background:#111;
    z-index:0;
    margin-left:calc(var(--dot) / 2);
    width:var(--progress, 0);   /* см. ниже как ставится */
    transform:translateY(-50%);
    border-radius:2px;
}

.step{
    position:relative;
    flex:1;
    text-align:center;
    z-index:1; /* точки поверх линии */
}

.step .dot{
    width:var(--dot);
    height:var(--dot);
    border-radius:50%;
    border:2px solid #ccc;
    background:#fff;
    margin:0 auto;
    display:flex; align-items:center; justify-content:center;
    font-size:14px;
    color:#111;
}

.step.is-done .dot{
    background:#111;
    border-color:#111;
    color:#fff;
}

.step.is-current .dot{
    border-color:#111;
}

/* последний шаг — больше, линия остаётся по центру базового размерыка */
.step.is-last .dot{
    width:30px; height:30px;
    font-size:16px; font-weight:700;
}

.step .label{
    margin-top:8px;
    font-size:.8rem;
    color:#6b7280;
}
.step.is-done .label,
.step.is-current .label{ color:#111; font-weight:600; }

#searchResults .search-thumb {
    object-fit: cover;
    border-radius: 6px;
    flex: 0 0 40px;
}

@media (max-width:576px){
    #cartArea   { display: none !important; }
    #cartMobile { display: block !important; }

    .cartm-list{ display:grid; gap:12px; }
    .cartm-card{
        position:relative; padding:12px; border-radius:14px;
        background:#fff; box-shadow:0 1px 6px rgba(0,0,0,.08);
        border:1px solid #eef0f3;
    }
    .cartm-remove{
        position:absolute; top:6px; right:6px; width:32px; height:32px;
        display:grid; place-items:center;
        border:0; background:#f3f4f6; border-radius:999px;
    }
    .cartm-remove .bi{ font-size:18px; }
    .cartm-row{ display:grid; grid-template-columns:72px 1fr; gap:12px; }
    .cartm-img{
        width:72px; height:72px; object-fit:contain;
        background:#f8f9fa; border-radius:12px; border:1px solid #eef0f3;
    }
    .cartm-title{ font-weight:700; line-height:1.2; margin-bottom:4px; }
    .cartm-attrs{ display:flex; align-items:center; gap:8px; margin-bottom:6px; color:#6c757d; font-size:.9rem; }
    .dot{ display:inline-block; width:14px; height:14px; border-radius:50%; border:1px solid #b8b8b8; background:var(--dot); }
    .size{ font-weight:600; }
    .cartm-price{ font-weight:700; margin-bottom:8px; }
    .cartm-qty{ display:inline-flex; align-items:center; gap:8px; }
    .cartm-qty input.cart-qty{
        width:56px; text-align:center; height:36px;
        border:1px solid #d7dbe0; border-radius:10px;
    }
    .qty-btn{
        width:36px; height:36px; border-radius:10px; border:1px solid #d7dbe0;
        background:#fff; font-size:18px; line-height:0;
    }
    .cartm-total{
        margin-top:10px; padding-top:8px; border-top:1px dashed #e7e9ee;
        display:flex; justify-content:space-between; color:#6c757d;
    }
    .cartm-total b{ color:#198754; }

    /* summary (переносим сюда второй блок) */
    .cartm-summary{
        position:sticky; bottom:0; background:#fff; padding:12px;
        border-top:1px solid #eef0f3; box-shadow:0 -6px 12px rgba(0,0,0,.04);
        margin-top:14px; border-radius:16px 16px 0 0;
    }
    .cartm-summary .promo{
        display:grid; grid-template-columns:1fr 130px; gap:10px; margin-bottom:8px;
    }
    .cartm-lines{ margin:8px 0 12px; }
    .cartm-lines li{ display:flex; justify-content:space-between; padding:6px 0; }

    .cartm-total-line{
        display:flex; justify-content:space-between; align-items:center;
        font-size:1.05rem; margin-bottom:10px;
    }
    .cartm-total-line b{ color:#198754; font-size:1.1rem; }

    .cartm-checkout{ height:52px; font-weight:700; border-radius:12px; }

    /* общий контейнер для атрибутов (цвет + размер) */
    .cartm-attrs{
        display: flex;
        align-items: center;  /* выравнивает кружок и букву по центру */
        gap: 8px;
        margin-bottom: 6px;
        color: #6c757d;
        font-size: 1rem;      /* чуть больше, чтоб буква совпадала с кружком */
        line-height: 1;
    }

    /* кружок */
    .dot{
        width: 18px;          /* сделай под размер текста */
        height: 18px;
        border-radius: 50%;
        border: 1px solid #b8b8b8;
        background: var(--dot);
        flex-shrink: 0;       /* чтобы не сжимался */
    }

    /* буква размера */
    .size{
        font-weight: 600;
        font-size: 1rem;      /* совпадает с .cartm-attrs */
        line-height: 1;
    }
}

