.bx-filter-price-box {
    /* background: #ffffff; */
    border-radius: 8px;
    /* padding: 20px; */
    margin: 0px 0;
    /* border: 1px solid #e8e8e8; */
}

.price-title {
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    margin: 0 0 16px 0;
    font-family: inherit;
}

.price-display-container {
    margin-bottom: 20px;
}

.price-display-values {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    padding: 8px 12px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    font-family: inherit;
}

/* Стили для слайдера */
.bx-ui-slider-track-container {
    margin: 20px 0 5px;
    position: relative;
}

#price-slider {
    position: relative;
    height: 32px;
    margin: 0;
}

.custom-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    transform: translateY(-50%);
    cursor: pointer;
}

.custom-slider-range {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #141414;
    border-radius: 2px;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.custom-slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid #141414;
    border-radius: 50%;
    cursor: grab;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(20, 20, 20, 0.2);
    outline: none;
}

.custom-slider-handle:hover {
    background: #f5f5f5;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(20, 20, 20, 0.3);
}

.custom-slider-handle.active {
    background: #141414;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 6px 12px rgba(20, 20, 20, 0.4);
    cursor: grabbing;
}

.custom-slider-handle:focus {
    outline: 2px solid #141414;
    outline-offset: 2px;
}

/* Тултипы для хендлов */
.handle-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #141414;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    font-family: inherit;
}

.handle-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #141414;
}

.handle-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

.custom-slider-handle:hover .handle-tooltip,
.custom-slider-handle.active .handle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

/* Поля ввода цены */
.price-inputs-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.price-input-group {
    flex: 1;
    position: relative;
}

.price-input-label {
    display: block;
    font-size: 13px;
    color: #666666;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: inherit;
}

.price-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    background: #ffffff;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}

.price-input:focus {
    border-color: #141414;
    box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.1);
    outline: none;
}

.price-input::placeholder {
    color: #999999;
    font-weight: normal;
}

/* Кнопки фильтра */
.bx-filter-button-box {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.bx-filter-button-block {
    flex: 1;
}

.button.black {
    background: #141414;
    color: #ffffff;
    border: 1px solid #141414;
    padding: 12px 24px;
    border-radius: 0px !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: inherit;
}

.button.black:hover {
    background: #000000;
    border-color: #000000;
}

.button.white {
    background: #ffffff;
    color: #141414;
    border: 1px solid #d9d9d9;
    padding: 17px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
}

.button.white:hover {
    background: #f5f5f5;
    border-color: #141414;
}

/* Чекбоксы фильтров */
.bx-filter-parameters-box {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
}

.bx-filter-parameters-box:last-child {
    border-bottom: none;
}

.bx-filter-parameters-box-title {
    margin-bottom: 12px;
}

.bx-filter-parameters-box-hint {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    font-family: inherit;
}

.filter-checkbox-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
}

.bx-filter-param-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #141414;
    transition: color 0.2s ease;
    font-family: inherit;
}

.bx-filter-param-label:hover {
    color: #000000;
}

.bx-filter-input-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bx-filter-input-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.bx-filter-input-checkbox input[type="checkbox"]:checked {
    background: #141414;
    border-color: #141414;
}

.bx-filter-input-checkbox input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
}

.bx-filter-param-text {
    font-size: 14px;
    color: #141414;
    font-family: inherit;
}

.bx-filter-param-count {
    font-size: 12px;
    color: #999999;
    margin-left: auto;
    font-family: inherit;
}

/* Адаптивность */
@media (max-width: 768px) {
    .bx-filter-price-box {
        padding: 16px;
        margin: 16px 0;
    }

    .price-inputs-row {
        flex-direction: column;
        gap: 8px;
    }

    .custom-slider-handle {
        width: 24px;
        height: 24px;
    }

    .handle-tooltip {
        font-size: 11px;
        padding: 4px 8px;
    }

    .bx-filter-button-box {
        flex-direction: column;
        gap: 8px;
    }
}

/* Состояние загрузки */
body.slider-dragging {
    user-select: none;
    -webkit-user-select: none;
    cursor: grabbing !important;
}

body.slider-dragging * {
    cursor: grabbing !important;
}

/* Анимации */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bx-filter-price-box {
    animation: slideIn 0.3s ease-out;
}

/* Улучшенные стили для остальных элементов */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #141414;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Дополнительные улучшения для доступности */
.custom-slider-handle {
    touch-action: none;
}

@media (hover: none) {
    .custom-slider-handle:hover {
        transform: translate(-50%, -50%);
    }

    .handle-tooltip {
        display: none;
    }
}

/* Плавные переходы для всех интерактивных элементов */
.custom-slider-range,
.custom-slider-handle,
.price-input,
.handle-tooltip,
.bx-filter-input-checkbox input[type="checkbox"] {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Улучшенный фокус для accessibility */
.price-input:focus-visible,
.custom-slider-handle:focus-visible,
.bx-filter-input-checkbox input[type="checkbox"]:focus-visible {
    outline: 2px solid #141414;
    outline-offset: 2px;
}

/* Стили для выбранных фильтров */
.catalog-filter {
    margin-bottom: 20px;
}

.catalog-filter__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.catalog-filter__name {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    font-family: inherit;
}

.catalog-filter__items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.catalog-filter__item {
    display: flex;
    align-items: center;
    gap: 8px;
    /* background: #f5f5f5; */
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #141414;
    font-family: inherit;
}

.catalog-filter__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #141414;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.catalog-filter__close:hover {
    background: #000000;
}

/* Иконка закрытия фильтра */
.bx-filter-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-left: auto;
}

.bx-filter-close:hover {
    background: #e8e8e8;
}
.price-display-container{display:none;}



.catalog-filter__reset-row {
    /* margin-top: 15px; */
    /* padding-top: 15px; */
    /* border-top: 1px solid #e0e0e0; */
}

.catalog-filter__reset-all {
    display: flex;
    justify-content: flex-start;
}

.catalog-filter__reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    /* background-color: #f5f5f5; */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    /* border: 1px solid #ddd; */
}

.catalog-filter__reset-btn svg {
    width: 12px;
    height: 12px;
}


/* Стили для пустого состояния */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 80px 20px; */
    text-align: center;
    /* background: #ffffff; */
    border-radius: 12px;
    margin: 40px 0;
}

.empty-state__icon {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    opacity: 0.7;
}

.empty-state__icon svg {
    width: 100%;
    height: 100%;
}

.empty-state__title {
    font-size: 28px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 16px;
    line-height: 1.3;
}

.empty-state__description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 500px;
}

.empty-state__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.empty-state__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.empty-state__button--primary {
    background: #141414;
    color: #ffffff;
}

.empty-state__button--primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.empty-state__button--secondary {
    background: #f5f5f5;
    color: #141414;
    border: 1px solid #e8e8e8;
}

.empty-state__button--secondary:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.empty-state__suggestions {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    max-width: 600px;
}

.empty-state__suggestions-title {
    font-size: 18px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 20px;
}

.empty-state__tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
}

.empty-state__tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 3px solid #141414;
}

.empty-state__tip-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.empty-state__tip-content {
    flex: 1;
}

.empty-state__tip-title {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 4px;
}

.empty-state__tip-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state {
    animation: fadeInUp 0.6s ease-out;
}

.empty-state__icon {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.empty-state__title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.empty-state__description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.empty-state__actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.empty-state__suggestions {
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Адаптивность */
@media (max-width: 768px) {
    .empty-state {
        padding: 60px 20px;
    }

    .empty-state__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .empty-state__title {
        font-size: 24px;
    }

    .empty-state__description {
        font-size: 15px;
    }

    .empty-state__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .empty-state__button {
        width: 100%;
        justify-content: center;
    }

    .empty-state__tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .empty-state {
        padding: 40px 16px;
        margin: 20px 0;
    }

    .empty-state__title {
        font-size: 22px;
    }
}


.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination li {
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e8e8e8;
    /* border-radius: 8px; */
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.pagination li a:hover {
    background: #f5f5f5;
    border-color: #d9d9d9;
}

.pagination li.active span {
    background: #141414;
    color: #ffffff;
    border-color: #141414;
}

/* Стили для стрелок */
.pagination li.arrow a {
    position: relative;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
}

.pagination li.arrow a:hover {
    background: #141414;
    border-color: #141414;
}

.pagination li.arrow a::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid currentColor;
    border-top: none;
    border-right: none;
    transition: all 0.3s ease;
}

.pagination li.prev a::before {
    transform: rotate(45deg);
    margin-right: -2px;
}

.pagination li.next a::before {
    transform: rotate(-135deg);
    margin-left: -5px;
}

.pagination li.arrow a:hover::before {
    border-color: #ffffff;
}

/* Многоточие */
.pagination li a[href="#"] {
    background: transparent;
    border: none;
    color: #999;
    cursor: default;
}

.pagination li a[href="#"]:hover {
    background: transparent;
    color: #999;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pagination ul {
        gap: 4px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .pagination li.arrow a::before {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .pagination ul {
        gap: 2px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 12px;
    }

    .pagination li.arrow a::before {
        width: 12px;
        height: 12px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pagination li a,
.pagination li span {
    animation: fadeIn 0.3s ease;
}

/* Улучшенные стили для текущего состояния */
.pagination li.active span {
    box-shadow: 0 2px 8px rgba(20, 20, 20, 0.15);
    font-weight: 600;
}

.pagination li.arrow a {
    font-size: 0; /* Скрываем текст, оставляем только иконку */
}

/* Дополнительные эффекты при наведении */
.pagination li:not(.active):not(.arrow) a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pagination li.arrow a:hover {
    transform: translateX(var(--hover-translate, 0));
}

.pagination li.prev a:hover {
    --hover-translate: -2px;
}

.pagination li.next a:hover {
    --hover-translate: 2px;
}



.catalog-detail-slider-small.slick-vertical .catalog-detail-slider-small__slide {
    border: none !important;
}

.catalog-detail-slider-small .slick-arrow {
    position: absolute;
    z-index: 3;
    width: 46px;
    height: 26px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgba(250, 250, 250, 0.08);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    font-size: 0;
}

.catalog-detail-slider-small .slick-arrow::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
}

.catalog-detail-slider-small .slick-next {
    bottom: 4px;
    border-radius: 66px 66px 0 0;
    border-top: 1px solid rgba(250, 250, 250, 0.34);
    border-right: 1px solid rgba(250, 250, 250, 0.34);
    border-left: 1px solid rgba(250, 250, 250, 0.34);
}

.catalog-detail-slider-small .slick-next::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M1.37109 0.996094L5.74681 5.00359L10.1211 0.996094' stroke='white' stroke-linecap='square' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    bottom: 8px;
}

.catalog-detail-slider-small .slick-prev {
    top: 5px;
    border-radius: 0 0 66px 66px;
    border-right: 1px solid rgba(250, 250, 250, 0.34);
    border-bottom: 1px solid rgba(250, 250, 250, 0.34);
    border-left: 1px solid rgba(250, 250, 250, 0.34);
}

.catalog-detail-slider-small .slick-prev::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M9.62891 5.00391L5.25319 0.996407L0.878906 5.00391' stroke='white' stroke-linecap='square' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    top: 8px;
}


.catalog-detail-slider-small .slick-arrow {
    position: absolute;
    z-index: 3;
    width: 46px;
    height: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.8); /* Темный фон для контраста */
    backdrop-filter: blur(2.5px);
    font-size: 0;
    border: 1px solid rgba(250, 250, 250, 0.5); /* Белая граница */
    cursor: pointer;
}

.catalog-detail-slider-small .slick-arrow::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff; /* Белые стрелки */
    mask-repeat: no-repeat;
    mask-position: center;
}

.catalog-detail-slider-small .slick-next {
    bottom: 4px;
    border-radius: 66px 66px 0 0;
    border-top: 1px solid rgba(250, 250, 250, 0.5);
    border-right: 1px solid rgba(250, 250, 250, 0.5);
    border-left: 1px solid rgba(250, 250, 250, 0.5);
}

.catalog-detail-slider-small .slick-next::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M1.37109 0.996094L5.74681 5.00359L10.1211 0.996094' stroke='white' stroke-linecap='square' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    bottom: 8px;
}

.catalog-detail-slider-small .slick-prev {
    top: 5px;
    border-radius: 0 0 66px 66px;
    border-right: 1px solid rgba(250, 250, 250, 0.5);
    border-bottom: 1px solid rgba(250, 250, 250, 0.5);
    border-left: 1px solid rgba(250, 250, 250, 0.5);
}

.catalog-detail-slider-small .slick-prev::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6' fill='none'%3E%3Cpath d='M9.62891 5.00391L5.25319 0.996407L0.878906 5.00391' stroke='white' stroke-linecap='square' stroke-linejoin='bevel'/%3E%3C/svg%3E");
    top: 8px;
}

/* Добавляем hover эффекты для лучшей видимости */
.catalog-detail-slider-small .slick-arrow:hover {
    background: rgba(20, 20, 20, 0.9);
    border-color: rgba(250, 250, 250, 0.8);
}


.catalog-detail-characteristics__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start; /* Меняем на start для длинного текста */
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    color: rgba(20, 20, 20, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    padding: 8px 0;
    min-height: 24px; /* Минимальная высота для выравнивания пунктира */
}

.catalog-detail-characteristics__item:not(:last-child) {
    margin-bottom: 12px;
}

.catalog-detail-characteristics__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 54%; /* Центрируем по вертикали */
    left: 0;
    border-bottom: 1px dashed #d1d1d1;
    z-index: 1;
    transform: translateY(-50%);
}

.catalog-detail-characteristics__name {
    font-weight: 500;
    padding-right: 16px;
    background: #fafafa;
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    max-width: 55%; /* Даем больше места для длинных названий */
    word-wrap: break-word;
    line-height: 1.4;
}

.catalog-detail-characteristics__value {
    padding-left: 16px;
    background: #fafafa;
    position: relative;
    z-index: 2;
    text-align: right;
    flex: 0 1 auto;
    max-width: 60%;
    word-wrap: break-word;
    line-height: 1.4;
    text-align: left; /* Или оставляем right в зависимости от дизайна */
}