.bars {
    width: 36px;
    height: 32px;
    --c: linear-gradient(#2dae2c 0 0);
    background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
    background-size: 7.2px 100%;
    background-repeat: no-repeat;
    animation: bars-t0lx83sm 1s infinite linear;
}

@keyframes bars-t0lx83sm {
    33% {
        background-size: 7.2px 10%,7.2px 100%,7.2px 100%;
    }

    50% {
        background-size: 7.2px 100%,7.2px 10%,7.2px 100%;
    }

    66% {
        background-size: 7.2px 100%,7.2px 100%,7.2px 10%;
    }
}


.spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 9px solid #2dae2c;
    animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

@keyframes spinner-bulqg1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes spinner-oaa3wk {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

/* Страница бренда: баннер из ProductSeo — не рвать вёрстку, вписать в блок */
.brand-page .brend-info__img {
    margin-top: 1.25rem;
    max-width: 100%;
}

.brand-page .brend-info__img picture {
    display: block;
    max-width: 100%;
}

.brand-page .brend-info__img-el {
    display: block;
    box-sizing: border-box;
    max-width: min(100%, 560px);
    width: auto;
    height: auto;
    max-height: 320px;
    object-fit: contain;
}

/* Мобильная нижняя панель: отступ контента + скрыть вход в шапке; корзина — полоса над панелью */
@media (max-width: 991px) {
    .page__wrapper .page__main {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px) + 16px);
    }

    .header__auth-slot {
        display: none !important;
    }

    .cart .details-mobfixed {
        bottom: calc(56px + env(safe-area-inset-bottom, 0px) + 8px);
    }
}

/* Главная: кнопка «Показать ещё» под сеткой брендов */
.brends__list .brends__show-more {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 1rem auto 0;
    grid-column: 1 / -1;
}

