.ogb-botonera-wrapper {
    width: 100%;
    max-width: 100%;
}

.ogb-botonera-title {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}

.ogb-botonera {
    --ogb-botonera-bg: #f5f5f5;
    --ogb-botonera-color: #333333;
    --ogb-botonera-border-color: transparent;
    --ogb-botonera-badge-color: #e74c3c;
    --ogb-botonera-radius: 8px;
    --ogb-botonera-columns: 4;

    width: 100%;
    max-width: 100%;
}

/* Desktop grid */
.ogb-botonera-grid {
    display: grid;
    gap: 12px;
}

.ogb-botonera-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--ogb-botonera-bg);
    color: var(--ogb-botonera-color);
    border: 1px solid var(--ogb-botonera-border-color);
    border-radius: var(--ogb-botonera-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: box-shadow 0.2s;
    min-height: 48px;
    position: relative;
}

a.ogb-botonera-button {
    color: var(--ogb-botonera-color) !important;
    text-decoration: none;
}

.ogb-botonera-button:hover,
.ogb-botonera-button:focus {
    color: var(--ogb-botonera-color);
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.ogb-botonera-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.ogb-botonera-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ogb-botonera-label {
    display: inline;
    line-height: 1.2;
}

.ogb-botonera-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px 2px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background-color: var(--ogb-botonera-badge-color);
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Mobile slider hidden on desktop */
.ogb-botonera-mobile {
    display: none !important;
}

/* Responsive: switch to slider on mobile */
@media (max-width: 768px) {
    .ogb-botonera-grid {
        display: none !important;
    }

    .ogb-botonera-mobile {
        display: block !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }

    .ogb-botonera-mobile .swiper-slide {
        width: auto;
        min-width: 120px;
    }

    .ogb-botonera-mobile .ogb-botonera-button {
        width: 100%;
        justify-content: center;
    }
}
