.brand-list a {
    padding: 5px 0;
    display: block;
    width: 100%;
}
.brand-list a :hover {
    color: #dd3333;
}
.brand-list span {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    position: relative;
    width: 100%;
    display: block;
}
.brand-list span:before {
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding-right: 5px;
}
.widget_text .widget-title, .widget_product_categories .widget-title {
    font-size: 20px;
}
.filter__product-title {
    margin-bottom: 20px;
}
.widget_price_filter .price_label {
    padding-top: 10px;
}
.widget_price_filter .price_slider_amount .button {
    margin: 0;
}
.widget_price_filter .ui-slider .ui-slider-range {
    background-color: rgb(5, 10, 48);
    opacity: 1;
}
/**/
.related-brand-products {
    margin-top: 0px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.product-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid #eee;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.product-thumb {
    display: block;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.product-item:hover .product-thumb img {
    transform: scale(1.02);
}

.product-content {
    padding: 18px;
    padding-top: 0;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    margin-top: 10px;
}

.product-title a {
    color: #111;
    text-decoration: none;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.product-button:hover {
    background: #c40000;
}

@media(max-width:991px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

.product-content {
    text-align: center;
}