/* Стили для серий на странице товара */
.single-product-series {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.single-product-series .series-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.series-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.series-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.series-item:hover {
    background: #e9e9e9;
    color: #333;
}

.series-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}

.series-name {
    font-size: 0.9em;
}

/* Стили для серий на странице бренда */
.categories__list .categories__image {
    text-align: center;
    margin-bottom: 10px;
}

.categories__list .categories__image img {
    max-width: 80px;
    height: auto;
}

.series-parent-brand {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.series-parent-brand a {
    color: #0073aa;
    text-decoration: none;
}

.series-parent-brand a:hover {
    text-decoration: underline;
}