/**
 * Top Categories Pills Section Styles
 */

 .hp-catpills {
    padding: 18px 0;
    border-top: 1px solid #559da4;
    border-bottom: 1px solid #559da4;
    display: flex;
    justify-content: center;
}

.hp-catpills__track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
    max-width: 1000px;
    margin: 4em;
}

.hp-catpills__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: #fff;
    line-height: 1;
    transition: transform 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
    background-color: #559da4;
}

.hp-catpills__pill:hover,
.hp-catpills__pill:focus {
    transform: translateY(-1px);
    border-color: #559da4;
    background-color: #f9f9f9;
    outline: none;
}

.hp-catpills__pill:focus:not(:focus-visible) {
    outline: none;
}

.hp-catpills__avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 32px;
    border: 1px solid #559da4;
    background: #f2f2f2;
    display: grid;
    place-items: center;
}

.hp-catpills__avatarImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-catpills__avatarFallback {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #e0e0e0;
}

.hp-catpills__label {
    font-size: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 600px) {
    .hp-catpills__label {
        font-size: 13px;
    }
    
    .hp-catpills__pill {
        padding: 6px 12px 6px 8px;
    }
    
    .hp-catpills__avatar {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
}
