*, ::after, ::before {
    box-sizing: border-box;
}
.fullbrand-block {
    width: 100%;
    margin: 2rem auto;
}

.fullbrand-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.brand-block {
    width: 100%;
    display: block;
}

.brand-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-card h3 {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.alphabet-filter {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.alphabet-filter a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
}
.alphabet-filter a.active {
    background: #000;
    color: #fff;
}
/* brand page*/
.fullbrand_sections,
.f__product-info--wrapper{
    display: flex;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 32px;
    overflow: hidden;
}
.fullbrand__fullbrand_container{
    gap: 32px;
}
.mb-32{
    margin-bottom: 32px;
}
.fullbrand__fullbrand_container .f__image{

}
.fullbrand__fullbrand_container .f__image img{

}
.f__features{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 30px;
    row-gap: 24px;
    --gap: 32px;
    gap: var(--gap);
    width: 100%;
}
.f__features li{
    --cols-count: 2;
    --col-width: 50%;
    --gap: 32px;
    flex: 0 0 auto;
    width: calc(var(--col-width) - (var(--gap) / var(--cols-count)) * (var(--cols-count) - 1));
    justify-content: space-between;
    display: flex
}
.f__features.supplier li:last-child{
    width: 100%;
    flex-direction: column;
    gap: 15px;
}
.f__features .name{
    color: #bdbdbd;
}
.f_feature-dot-divider{
    border-bottom: 1px dotted #bdbdbd;
    height: 1em;
    flex: 1 1 auto;
    margin: 0 5px;
}
.f__features .value{
    color: #333;
}
/* Стили для контейнера фильтров */
/* Стили для контейнера фильтров */
.filter {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.filter h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Стили для кастомных чекбоксов */
.filter label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
}

.filter label:hover {
    color: #000;
}

/* Скрываем стандартный чекбокс */
.filter input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Кастомный чекбокс */
.filter .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* При наведении */
.filter label:hover input ~ .checkmark {
    border-color: #aaa;
}

/* Когда чекбокс отмечен */
.filter input:checked ~ .checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* Галочка (скрыта по умолчанию) */
.filter .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Показываем галочку при выборе */
.filter input:checked ~ .checkmark:after {
    display: block;
}

/* Анимация при клике */
.filter input:checked ~ .checkmark {
    animation: pulse 0.3s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.fullbrand_container, .fullbrand_container-fluid, .fullbrand_container-lg, .fullbrand_container-md, .fullbrand_container-sm, .fullbrand_container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1200px) {
    .fullbrand_container, .fullbrand_container-lg, .fullbrand_container-md, .fullbrand_container-sm, .fullbrand_container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .fullbrand_container, .fullbrand_container-lg, .fullbrand_container-md, .fullbrand_container-sm {
        max-width: 960px;
    }
}
@media (min-width: 768px) {
    .fullbrand_container, .fullbrand_container-md, .fullbrand_container-sm {
        max-width: 720px;
    }
}
@media (min-width: 576px) {
    .fullbrand_container, .fullbrand_container-sm {
        max-width: 540px;
    }
}

@media (max-width: 1200px) {
    .fullbrand-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .fullbrand-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .fullbrand-list {
        grid-template-columns: repeat(2, 1fr);
    }
}