.gp_subcategory_bubbles_wrapper {
    width: 100%;
}

.gp_subcategory_bubbles_container {
    width: 100%;
}

.gp_subcategory_bubbles_status {
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0;
}

.gp_subcategory_bubbles_status--error {
    color: #b3261e;
}

.gp_subcategory_bubbles_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gp_subcategory_bubbles_list--slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gp_subcategory_bubbles_list--slider .gp_subcategory_bubble {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.gp_subcategory_bubbles_list--grid {
    display: grid;
    grid-auto-rows: auto;
    gap: 1rem;
}

.gp_subcategory_bubbles_list--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gp_subcategory_bubbles_list--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp_subcategory_bubble {
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.gp_subcategory_bubble__imageWrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 0.5rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
}

.gp_subcategory_bubble__imageWrapper--rounded {
    border-radius: 24px;
}

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

.gp_subcategory_bubble__placeholder {
    font-weight: 600;
    font-size: 1.5rem;
    color: #555;
}

.gp_subcategory_bubble__label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Estado de énfasis al hacer hover sobre una burbuja:
   - Atenúa el resto de subcategorías.
   - Resalta la subcategoría activa y su texto. */
.gp_subcategory_bubbles_list:hover .gp_subcategory_bubble {
    opacity: 0.4;
}

.gp_subcategory_bubbles_list:hover .gp_subcategory_bubble:hover {
    opacity: 1;
}

.gp_subcategory_bubbles_list:hover .gp_subcategory_bubble:hover .gp_subcategory_bubble__label {
    font-weight: 700;
}

@media (min-width: 768px) {
    .gp_subcategory_bubble__imageWrapper {
        width: 120px;
        height: 120px;
    }
}

.gp_subcategory_bubble__link {
    text-decoration: none !important;
    color: inherit;
}

.gp_subcategory_bubble__link:hover {
    color: inherit;
    text-decoration: none !important;
}

/*# sourceMappingURL=gp_subcategory_bubbles.min.css.map*/