.card__body .product__price span._new {
    color: #353132;
    font-size: 24px;
    font-weight: 400;
}
.list-menu {
    font-size: 15px;
}

.card__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-flex-wrap: wrap;
    row-gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.card__options>span {
    margin-top: 5px;
}
.options__content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #353132;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #E4E4E4;
    width: 50px;
    justify-content: center;
}


.locations {
    max-width: 100%;
    font-family: Arial, sans-serif;
}

.location {
    background: #f5f5f5;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
}

.location-header {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
}

.accardeon-card__available {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.location-header .title {
    flex: 1;
    margin-left: 10px;
}

.status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status.online {
    background: #2ecc71;
}

.status.offline {
    background: #ccc;
}

.arrow {
    transition: transform 0.3s;
}

/* BODY */
.location-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.location.active .location-body {
    max-height: 200px;
    padding: 10px 15px 15px;
}

/* стрелка вверх/вниз */
.location.active .arrow {
    transform: rotate(180deg);
}

/* disabled */
.location.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.location-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
}
.info a {
    color: #353132;
}
.info {
    display: flex;
    gap: 10px;
    align-items: center;
}
.info:first-child {
    min-width: 150px;
}

.catalog-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.d_none {
    display: none;
}

body.preloader-active {
    overflow: hidden;
}

.site-preloader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader.is-instant {
    transition: none;
}

.site-preloader__animation {
    width: min(240px, 50vw);
    aspect-ratio: 1 / 1;
}

/* Catalog mobile sort: visible only inside filter panel */
.filter__section_sort {
    display: none;
}

.catalog__filter .head-catalog__sort {
    display: none;
}

.filter__section_sort .filter__name-section {
    margin-bottom: 12px;
}

.catalog__filter .head-catalog__sort .select__title {
    border: 1px solid #E4E4E4;
}

.catalog__filter .head-catalog__sort .select__value {
    padding: 0 20px;
    min-height: 50px;
    font-weight: 300;
}

@media (max-width: 721.98px) {
    .card__gallery {
        max-width: 100vw;
    }
    .main-gallery-card__slide {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        aspect-ratio: 550 / 420;
        position: relative;
    }
    .main-gallery-card__slide video, .main-gallery-card__slide img {
        width: auto;
        height: 390px;
    }
}

@media (max-width: 991.98px) {
    .list-menu__item {
        padding: 0;
        border-bottom: 1px solid #D9D9D9;
    }

    .select._active .select__options {
        width: 100%;
    }

    .list-menu__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 20px 0;
    }

    .list-menu__item:first-child .list-menu__link {
        padding-top: 0;
    }

    .catalog__head .head-catalog__sort {
        display: none;
    }

    .filter__section_sort {
        display: block;
    }

    .catalog__filter .head-catalog__sort {
        display: block;
    }
}

