.frontpage-category-selector-zone {
    margin: 2.5em 0 2em 0;
}
.frontpage-brand-selector-title,
.frontpage-category-selector-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.frontpage-category-selector-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 1em;
    text-align: left;
}
.frontpage-category-selector-scroll-arrows,
.frontpage-brand-selector-scroll-arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
}
.frontpage-category-selector-scroll,
.frontpage-brand-selector-scroll {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align all items to the top */
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.frontpage-category-selector-scroll::-webkit-scrollbar,
.frontpage-brand-selector-scroll::-webkit-scrollbar {
    display: none;
}
.scroll-arrow.left {
    order: 0;
    margin-right: 0.5rem;
}
.scroll-arrow.right {
    order: 2;
    margin-left: 0.5rem;
}
.frontpage-category-selector-item {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.3em;
    height: 190px; /* Updated to 190px as requested */
}
.frontpage-category-selector-item:hover {
    transform: translateY(-4px) scale(1.04);
}
.frontpage-category-selector-imgwrap {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f6fa;
    margin: 0 auto 0.5em auto;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.frontpage-category-selector-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.frontpage-category-selector-name {
    width: 100%;
    font-size: 1em;
    font-weight: 500;
    white-space: normal;
    word-break: break-word;
    margin: 0;
    padding: 0 0.1em;
}
