.frontpage-brand-selector-zone {
    margin: 2.5em 0 2em 0;
}
.frontpage-brand-selector-title,
.frontpage-category-selector-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 1em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.frontpage-brand-selector-scroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.frontpage-brand-selector-scroll::-webkit-scrollbar {
    display: none;
}
.frontpage-brand-selector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 110px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s;
}
.frontpage-brand-selector-item:hover {
    transform: translateY(-4px) scale(1.04);
}
.frontpage-brand-selector-imgwrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.frontpage-brand-selector-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.frontpage-brand-selector-name {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    margin-top: 0.1em;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
