/* ═══════════════════════════════════════════
   MAIN — страница ассортимента
   ═══════════════════════════════════════════ */

/* ─── Layout: 100vh, flex-колонка ─── */
.page {
    padding-top: var(--page-pt);
    display: flex;
    flex-direction: column;
}

/* ═══════════════════════════════════════════
   КАРУСЕЛИ — три линейки
   ═══════════════════════════════════════════ */

.assort-section {
    padding: 0;
    margin-bottom: 22px;
}

.lines-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

/* ─── Панель линейки ─── */
.line-panel {
    display: flex;
    flex-direction: column;
    position: relative;
}

.panel-inner {
    position: relative;
    overflow: hidden;
}

.panel-inner-wrap {
    position: relative;
    margin: 4px 4px 14px;
}

.line-panel .glass-glow,
.line-panel .glass {
    --cs: 26px;
}

.line-panel .glass-glow {
    --color: var(--lc);
}

.line-panel.core .glass {
    box-shadow: 0px 4px 41.6px 0px rgba(255, 238, 0, 0.35) inset;
    backdrop-filter: blur(4px);
}

.line-panel.acid .glass {
    box-shadow: 0px 4px 41.6px 0px rgba(132, 255, 6, 0.45) inset;
    backdrop-filter: blur(4px);
}

.line-panel.ice .glass {
    box-shadow: 0px 4px 41.6px 0px rgba(0, 227, 255, 0.55) inset;
    backdrop-filter: blur(4px);
}

.line-panel-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 28px 0 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    font-weight: 400;
}

.line-panel-title span {
    font-family: var(--font-latin);
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--lc);
}

.panel-badges {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform-origin: center center;
    transition:
        transform 0.22s cubic-bezier(0.9, 0, 1, 1),
        opacity 0.22s ease-in;
}

.flavour-badge {
    position: absolute;
    font-family: var(--font-kiril);
    text-transform: uppercase;
    padding: 9px 10px;
    border: none;
    font-size: 12px;
    white-space: nowrap;
    width: fit-content;
    outline: 1px solid var(--lc, #fff);
    outline-offset: -2px;
    box-shadow: inset 0 0 20px 3px rgba(200, 228, 242, 0.28);
    background:
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 0 0 / 6px 3px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 0 0 / 3px 6px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 100% 0 / 6px 3px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 100% 0 / 3px 6px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 0 100% / 6px 3px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 0 100% / 3px 6px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 100% 100% / 6px 3px no-repeat,
        linear-gradient(var(--lc, #fff), var(--lc, #fff)) 100% 100% / 3px 6px no-repeat,
        rgba(6, 10, 30, 0.72);
}

.flavour-badge.vg {
    left: 35px;
    bottom: 97px;
}

.flavour-badge.ml {
    right: 48px;
    bottom: 107px;
}

.line-panel .flavour-badge {
    color: var(--lc);
}

/* ─── Слайдер ─── */
.slider-viewport {
    height: 340px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ─── Слайд ─── */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10px;
}

/* Фоновый арт вкуса */
.slide-art {
    position: absolute;
    inset: 0;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    filter: saturate(1.8);
    pointer-events: none;
    transition:
        opacity 0.22s ease-in,
        transform 0.22s cubic-bezier(0.9, 0, 1, 1),
        filter 0.2s ease-in;
}

.slide-lname {
    font-family: var(--font-latin);
    font-size: 18px;
    font-weight: 900;
    color: var(--lc, #fff);
    letter-spacing: 0.28em;
}
.slide-ico {
    font-size: 18px;
    color: var(--lc, #fff);
    opacity: 0.7;
}

/* Теги вкуса: стекло с рамкой в цвете линейки */
.slide-tags-l,
.slide-tags-r {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 7px;
    pointer-events: none;
}
.slide-tags-l {
    left: 12px;
}
.slide-tags-r {
    right: 12px;
    align-items: flex-end;
}

.slide-tag {
    font-family: var(--font-latin);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--text);
    padding: 5px 8px;
    border: 1px solid var(--lc, #fff);
    background: rgba(6, 10, 16, 0.78);
    white-space: nowrap;
}

/* Нижние метки (VG/PG и ML) */
.slide-meta {
    position: absolute;
    bottom: 13px;
    left: 0;
    right: 0;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}
.slide-meta span {
    font-family: var(--font-latin);
    font-size: 9px;
    color: var(--lc, #fff);
    padding: 4px 7px;
    border: 1px solid var(--lc, #fff);
    background: rgba(6, 10, 16, 0.75);
    letter-spacing: 0.06em;
}

/* Текст описания вкуса (виден при ховере) */
.slide-desc {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 40px;
    width: 200px;
    z-index: 4;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: var(--font-kiril);
    font-size: 13px;
    line-height: 1.6;
    color: var(--lc);
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-12px);
    transition:
        opacity 0.2s ease,
        transform 0.25s cubic-bezier(0.2, 0, 0, 1.15);
}

/* Описание под слайдером (только мобильная версия) */
.slide-desc-mobile {
    display: none;
}

/* BASE панель — только мобильная версия */
.line-panel.base {
    display: none;
}

.line-panel.base .glass {
    box-shadow: 0px 4px 41.6px 0px rgba(211, 240, 254, 0.3) inset;
    backdrop-filter: blur(4px);
}

/* Статичный оверлей — бутылка поверх viewport, не едет со слайдами */
.slide-bottle-anchor {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.slide-bottle-anchor .slide-bottle-wrap {
    pointer-events: all;
}

/* Обёртка бутылок */
.slide-bottle-wrap {
    position: relative;
    z-index: 3;
    height: 76%;
    max-width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1.15);
}

.slide-bottle-frame {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 38%;
    pointer-events: none;
    filter: drop-shadow(0 0 5px var(--core, #fff));
    background:
        /* top-left */
        linear-gradient(var(--core, #fff), var(--core, #fff)) 0 0 / 12px 3px no-repeat,
        linear-gradient(var(--core, #fff), var(--core, #fff)) 0 0 / 3px 12px no-repeat,
        /* top-right */ linear-gradient(var(--core, #fff), var(--core, #fff)) 100% 0 / 12px 3px no-repeat,
        linear-gradient(var(--core, #fff), var(--core, #fff)) 100% 0 / 3px 12px no-repeat,
        /* bottom-left */ linear-gradient(var(--core, #fff), var(--core, #fff)) 0 100% / 12px 3px no-repeat,
        linear-gradient(var(--core, #fff), var(--core, #fff)) 0 100% / 3px 12px no-repeat,
        /* bottom-right */ linear-gradient(var(--core, #fff), var(--core, #fff)) 100% 100% / 12px 3px no-repeat,
        linear-gradient(var(--core, #fff), var(--core, #fff)) 100% 100% / 3px 12px no-repeat;
}

.slide-bottle-frame::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--core, #fff);
    opacity: 0.3;
    transform: scaleY(0);
    transform-origin: center center;
}

.slider-viewport:hover .slide-bottle-frame::before {
    transform: scaleY(1);
    transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1.15);
    transition-delay: 0.6s;
}

/* Бутылка с glow-эффектом линейки */
.slide-bottle {
    position: relative;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 16px var(--lc, #fff)) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        filter 0.3s ease;
}

.slide-bottle--full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    opacity: 0;
    transform: scale(0.88);
    transition:
        opacity 0.4s ease 0.2s,
        transform 0.4s ease 0.2s,
        filter 0.3s ease;
}

/* Оверлей тегов вкуса (анимируется целиком к центру) */
.panel-flavor-tags {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    transform-origin: center center;
    transition:
        transform 0.22s cubic-bezier(0.9, 0, 1, 1),
        opacity 0.22s ease-in;
}

/* ─── Hover: арт, теги и пустая бутылка уходят — заполненная появляется ─── */
.line-panel:has(.slider-viewport:hover) .slide-art {
    opacity: 0;
    transform: scale(0);
    filter: saturate(2) blur(6px);
}

.line-panel:has(.slider-viewport:hover) .panel-flavor-tags,
.line-panel:has(.slider-viewport:hover) .panel-badges {
    transform: scale(0.05);
    opacity: 0;
}

.line-panel:has(.slider-viewport:hover) .slide-bottle--empty {
    opacity: 0;
    transform: scale(0.82);
    transition-delay: 0.35s;
}

.line-panel:has(.slider-viewport:hover) .slide-bottle--full {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.15s;
}

.line-panel:has(.slider-viewport:hover) .slide-bottle-wrap {
    transform: translateX(80%);
    transition-delay: 0.4s;
}

.line-panel:has(.slider-viewport:hover) .slide-desc {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

/* ─── Навигация + название вкуса (крупно) ─── */
.panel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px 25px;
    position: relative;
}

.slide-btn {
    position: absolute;
    top: 2px;
    z-index: 2;
    background: none;
    border: none;
    color: var(--lc, #fff);
    padding: 10px;
    opacity: 0.45;
    transition: opacity 0.15s;
    flex-shrink: 0;
    display: inline-flex;

    svg path {
        stroke: var(--lc, #fff);
    }

    /* Увеличенная невидимая область нажатия (~1.8x), не влияет на позицию/размер видимой кнопки и соседей */
    &::before {
        z-index: inherit;
        content: '';
        position: absolute;
        inset: -20px;
    }
}
.slide-btn:hover {
    opacity: 1;
}
.slide-btn:first-of-type {
    left: 20px;
}
.slide-btn:last-of-type {
    right: 20px;
}

.flavor-display {
    font-family: var(--font-latin);
    font-size: 28px;
    font-weight: 400;
    color: var(--lc);
    letter-spacing: 0.06em;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 1;
}

/* ─── Прогресс-полоса ─── */
.slider-progress-wrap {
    position: relative;
    height: 10px;
    margin-top: 2px;
    width: 88%;
    box-shadow: 0 0 6px var(--lc, #fff);
    margin-left: auto;
    margin-right: auto;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--lc);
        opacity: 0.2;
        pointer-events: none;
    }
}
.slider-progress-fill {
    height: 100%;
    background: var(--lc, #fff);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 6px var(--lc, #fff);
}

/* ═══════════════════════════════════════════
   CONSTRUCT YOUR REALITY
   ═══════════════════════════════════════════ */

.construct-section {
    position: relative;
    display: grid;
    grid-template-columns: 450px 1fr;
}

.construct-left {
    --cs: 14px;
    background-color: var(--bg-alt);
    padding: 10px 25px;
    clip-path: polygon(
        var(--cs) 0%,
        calc(100% - var(--cs)) 0%,
        100% var(--cs),
        100% 100%,
        var(--cs) 100%,
        0% calc(100% - var(--cs)),
        0% var(--cs)
    );
}

.construct-formula {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.construct-formula > div {
    width: 88px;
    height: 70px;
    background:
        linear-gradient(var(--text), var(--text)) 0 0 / 10px 1px no-repeat,
        linear-gradient(var(--text), var(--text)) 0 0 / 1px 10px no-repeat,
        linear-gradient(var(--text), var(--text)) 100% 0 / 10px 1px no-repeat,
        linear-gradient(var(--text), var(--text)) 100% 0 / 1px 10px no-repeat,
        linear-gradient(var(--text), var(--text)) 0 100% / 10px 1px no-repeat,
        linear-gradient(var(--text), var(--text)) 0 100% / 1px 10px no-repeat,
        linear-gradient(var(--text), var(--text)) 100% 100% / 10px 1px no-repeat,
        linear-gradient(var(--text), var(--text)) 100% 100% / 1px 10px no-repeat;
}

.construct-formula span {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
}

.construct-formula--base img {
    position: relative;
    top: -10px;
    left: -9px;
}

.construct-formula--apple img {
    position: relative;
    top: -10px;
    left: 9px;
}

.construct-formula--swing img {
    position: relative;
    top: -9px;
    left: 2px;
}

.construct-title {
    font-family: var(--font-latin);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
    font-size: 28px;
    margin-bottom: 20px;
}

.construct-sub {
    font-family: var(--font-kiril);
    font-size: 17px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.construct-right {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 10px;
}

.construct-right > div {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-alt);
}

.construct-desc {
    --cs: 14px;
    clip-path: polygon(0% 0%, calc(100% - var(--cs)) 0%, 100% var(--cs), 100% calc(100% - var(--cs)), calc(100% - var(--cs)) 100%, 0% 100%);
    font-family: var(--font-kiril);
    font-size: 18px;
    color: var(--text);
    line-height: 130%;
    letter-spacing: 8%;
    padding: 18px;
    position: relative;
}

.construct-desc::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: var(--text);
}

.construct-right .loader-track {
    height: 21px;
    margin-left: 6px;
    margin-top: 10px;
    background: repeating-linear-gradient(-45deg, #2a2a2a 0, #2a2a2a 12px, #111416 12px, #111416 24px);
}

.construct-right .loader-bar {
    width: 100%;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s ease;
    background-size: 34px 34px;
    animation: stripe-flow 1s linear infinite;
}

@keyframes stripe-flow {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 34px 0;
    }
}

/* ─── Formula Base hover & popup ─── */
.formula-base-popup {
    position: fixed;
    width: 400px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.formula-base-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.formula-base-popup .glass-glow {
    --cs: 10px;
}

.formula-base-popup .glass-glow::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: radial-gradient(110.02% 164.9% at 155.23% 23.27%, #3f5d79 0%, #19202b 100%);
}

.formula-base-popup-inner {
    overflow: hidden;
    padding: 28px 28px 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.formula-popup-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.formula-popup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.formula-popup-title {
    font-family: var(--font-latin);
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.formula-popup-desc {
    font-family: var(--font-kiril);
    font-size: 14px;
    color: var(--text);
    line-height: 1.25;
    text-align: center;
}

.formula-popup-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.formula-popup-right .slide-bottle-frame {
    top: 46%;
}

.formula-popup-bottle {
    height: 305px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .slider-viewport {
        height: 280px;
    }

    .panel-nav {
        padding: 0 20px 20px;
    }

    .flavor-display {
        font-size: 20px;
    }

    .line-panel-title span {
        font-size: 20px;
    }

    .construct-section {
        grid-template-columns: 350px 1fr;
    }

    .construct-formula > div {
        width: 68px;
        height: 54px;
        margin-bottom: 20px;
        margin-bottom: 0;
    }

    .construct-formula--base img {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
    }

    .construct-formula--apple img {
        position: relative;
        top: -10px;
        left: 7px;
        width: 100%;
    }

    .construct-formula--swing img {
        position: relative;
        top: -9px;
        left: 2px;
        width: 95%;
    }

    .construct-title {
        font-size: 22px;
        margin-bottom: auto;
    }

    .construct-left {
        display: flex;
        flex-direction: column;
    }

    .construct-sub {
        margin-bottom: auto;
    }
}

@media (max-width: 900px) {
    .lines-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .line-panel.base {
        display: flex;
    }

    .line-panel.base .slide-bottle-wrap {
        max-width: 65%;
        width: auto;
        height: 291px;
    }

    .assort-section {
        padding-inline: 0;
    }
    .construct-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .construct-right {
        align-items: flex-start;
    }

    /* ─── Слайдер на мобильном: viewport на весь блок, nav/desc сверху ─── */
    .panel-inner {
        position: relative;
        height: 450px;
    }

    .slider-viewport {
        position: absolute;
        inset: 0;
        height: 100%;
        overflow: hidden;
    }

    /* Градиент снизу — затемняет фон под текстом */
    .slider-viewport::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 58%;
        background: linear-gradient(to bottom, transparent, rgba(6, 10, 16, 0.93) 68%);
        pointer-events: none;
        z-index: 2;
    }

    .slide {
        align-items: flex-start;
        padding-top: 22px;
        margin-top: 0;
    }

    .slide-bottle--full {
        opacity: 1;
        transform: scale(1);
        transition: none;
    }

    .slide-bottle--empty {
        opacity: 0;
        transition: none;
    }

    .slide-bottle-anchor {
        align-items: flex-start;
        padding-top: 22px;
    }

    .slide-bottle-wrap {
        height: 68%;
        transform: none !important;
        transition: none !important;
    }

    .slide-art {
        transform: none !important;
        transition: none !important;
        background-size: 90% auto;
        background-position: center 15px;
    }

    .slide-bottle-frame {
        display: none;
    }

    /* Бейджи и теги скрываем на мобильном */
    .panel-flavor-tags,
    .panel-badges {
        display: none !important;
    }

    /* Навигация + описание — один блок, прижат к низу */
    .panel-nav {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        z-index: 4;
        flex-wrap: wrap;
        align-items: center;
    }

    .panel-nav.base {
        flex-direction: column;
    }

    .panel-nav.base .flavor-display {
        order: 1;
        height: 43px;
        text-align: center;
        width: 100%;
    }

    .slide-btn {
        position: relative;
        flex-shrink: 0;
        height: 43px;
        width: 43px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 1px;
        left: auto !important;
        right: auto !important;

        &::before {
            inset: -14px;
        }
    }

    .flavor-display {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px !important;
        font-size: 17px;
        flex: 1;
        text-align: center;
    }

    .slide-btn:first-child {
        margin-left: 5px;
    }

    .slide-btn:last-of-type {
        margin-right: 5px;
    }

    /* Описание внутри panel-nav — занимает всю ширину под навигацией */
    .slide-desc-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 99;
        font-family: var(--font-kiril);
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
        padding: 0 32px 6px;
        height: 110px;
        color: var(--lc);
    }

    /* Глушим все :hover анимации (срабатывают на тап) */
    .line-panel:has(.slider-viewport:hover) .slide-art {
        opacity: 0.75 !important;
        filter: saturate(1.6) !important;
        transform: none !important;
    }
    .line-panel:has(.slider-viewport:hover) .slide-bottle-wrap {
        transform: none !important;
        transition-delay: 0s !important;
    }
    .line-panel:has(.slider-viewport:hover) .slide-bottle--empty {
        opacity: 0 !important;
        transition-delay: 0s !important;
    }
    .line-panel:has(.slider-viewport:hover) .slide-bottle--full {
        opacity: 1 !important;
        transform: scale(1) !important;
        transition-delay: 0s !important;
    }
    .line-panel:has(.slider-viewport:hover) .slide-desc {
        opacity: 0 !important;
    }
    .slider-viewport:hover .slide-bottle-frame::before {
        transform: scaleY(0) !important;
        transition: none !important;
    }

    /* ─── Нижний конструктор ─── */
    .construct-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .construct-left {
        display: none;
    }

    .line-panel-title {
        font-size: 14px;
    }

    .line-panel-title .slide-ico {
        font-size: 14px;
    }

    .construct-desc::after {
        display: none;
    }

    .construct-desc {
        padding: 16px;
        margin-bottom: 60px;
        --cs: 16px;
        clip-path: polygon(
            var(--cs) 0%,
            calc(100% - var(--cs)) 0%,
            100% var(--cs),
            100% calc(100% - var(--cs)),
            calc(100% - var(--cs)) 100%,
            var(--cs) 100%,
            0% calc(100% - var(--cs)),
            0% var(--cs)
        ) !important;
    }

    .loader-track {
        display: none !important;
    }
}
