/* Prefix dla klas i identyfikatów: spbi-ks- */

/* Styl dla widgetów */
.spbi-ks-widget {

}

/* Styl dla ukrytych komunikatów dostępnych dla czytników ekranowych */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Style dla domyślnego widgetu */
.spbi-ks-widget-default {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.spbi-ks-widget-default h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.spbi-ks-widget-products {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spbi-ks-product {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spbi-ks-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.spbi-ks-product h4 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 500;
    color: #0073aa;
}

