.visuallyhidden:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* Блок с разворачиванием контента */
/* Базовое состояние: если JS не сработал, текст просто виден полностью */
.expandable-content {
    position: relative;
    --collapsed-height: 190px;
}

/* Обертка появляется только при работе JS */
.expandable-wrapper {
    max-height: var(--collapsed-height);
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.expandable-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    transition: opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
    z-index: 2;
}

/* Состояния */
.expandable-content.is-open .expandable-wrapper {
    max-height: 9999px !important;
}

.expandable-content.is-open .expandable-wrapper::before {
    opacity: 0;
    visibility: hidden;
}

.expandable-toggle {
    display: none; /* По умолчанию скрыта, JS покажет если нужно */
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 15px;
    align-self: flex-start;

}

.expandable-content.has-button .expandable-toggle {
    display: inline-flex !important;
    visibility: visible !important;
}

@media screen and (max-width: 1300px) {
    body{
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        min-width: 280px;
    }

}
@media screen and (max-width: 1000px) {
    .m-delivery__regions-list{
        max-height: 780px;
    }
}
@media screen and (max-width: 480px) {
    .m-delivery__regions-list{
        max-height: 100%
    }
    .calc__line{
        font-size:1.2em;
        flex-wrap: wrap;
    }
}
.guaranteeExList i{
    flex:0 0 24px;
}

.catalog-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style-type: none;
    margin: 0 0 1% 0;
    padding: calc(2% + 10px) 0;
}

.catalog-links__item {
    list-style-type: none;
    flex: 1 1 auto;
}

.catalog-links__link {
    width: 100%;
}