/* rlhomecategories â€” Category icons row (Herbies-style) */

.rlhc-section {
    margin-bottom: 40px;
}

/* Header: title + "Ver todo" link */
.rlhc-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rlhc-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    color: #333;
}

.rlhc-see-all {
    font-size: 12px;
    white-space: nowrap;
    color: #00ae69;
    text-decoration: none;
}
.rlhc-see-all:hover {
    text-decoration: underline;
    color: #00ae69;
}

/* List: flex row, wraps on mobile */
.rlhc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Item: rounded box â€” mobile-first (33.33% width, 3 per row) */
.rlhc-item {
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    flex: calc(33.3333% - 6px);
    width: calc(33.3333% - 6px);
    min-height: 85px;
    padding: 8px;
    text-decoration: none;
    color: #333;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Hide items beyond 6th on mobile */
.rlhc-item:nth-child(6) ~ .rlhc-item {
    display: none;
}

.rlhc-item:hover {
    border-color: #00ae69;
    background-color: #f0faf6;
    text-decoration: none;
    color: #333;
}

/* Image block */
.rlhc-img-block {
    background: transparent;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 6px;
}

.rlhc-img-block img {
    width: auto;
    height: 32px;
    object-fit: contain;
    display: block;
}

/* Label */
.rlhc-item-name {
    width: 100%;
    font-size: 12px;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.1;
    color: #333;
}

/* Desktop: single row, auto-width items */
@media (min-width: 992px) {
    .rlhc-header {
        margin-bottom: 24px;
    }

    .rlhc-title {
        font-size: 26px;
    }

    .rlhc-see-all {
        font-size: 16px;
    }

    .rlhc-list {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .rlhc-item {
        width: initial;
        flex: 0 1 calc(12.5% - 12px);
        min-width: 100px;
        max-width: 144px;
        min-height: 146px;
        /* Show all items on desktop */
    }

    .rlhc-item:nth-child(6) ~ .rlhc-item {
        display: flex;
    }

    .rlhc-img-block {
        align-items: center;
        min-height: auto;
        margin-bottom: 8px;
    }

    .rlhc-img-block img {
        height: 56px;
    }

    .rlhc-item-name {
        max-width: 128px;
        height: 42px;
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        line-height: 1.3;
        margin: 0 auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
