/* GŁÓWNY KONTENER */
.bps-slider-container {
    margin: 20px auto;
    /* Zmniejszony padding-bottom, bo nie ma kropek */
    padding: 20px 50px 30px 50px; 
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.bps-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
    transition: all 0.3s ease;
    position: relative;
}
.bps-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: #b0b8c1; }

.bps-overlay { position: absolute; top:0; left:0; width:100%; height:100%; z-index:1; }

.bps-image-wrapper {
    width: 100%; height: 240px; background: #f8f9fa; 
    display: flex; align-items: center; justify-content: center;
    padding: 15px; border-bottom: 1px solid #eaeaea; box-sizing: border-box;
}
.bps-image { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s; }
.bps-card:hover .bps-image { transform: scale(1.05); }

.bps-content {
    padding: 15px 15px 0; flex-grow: 1; display: flex; flex-direction: column; align-items: center;
}
.bps-title {
    font-size: 1.1rem; text-transform: uppercase; font-weight: 800; color: #24292e; margin: 0 0 15px; letter-spacing: 0.5px; text-align: center;
}
.bps-title i { opacity: 0.7; margin-right: 5px; }

.bps-specs { width: 100%; margin-bottom: 15px; }
.bps-row { display: flex; align-items: center; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px dashed #e1e4e8; }
.bps-row:last-child { border: none; margin-bottom: 0; }
.bps-icon { width: 20px; text-align: center; color: #6a737d; margin-right: 10px; font-size: 0.9rem; }
.bps-text { text-align: left; line-height: 1.2; }
.bps-label { color: #586069; font-size: 0.8rem; display: block; }
.bps-val { color: #000; font-weight: 700; font-size: 0.9rem; }

.bps-action { margin-top: auto; padding: 15px; position: relative; z-index: 2; }
.bps-btn {
    display: block; width: 100%;
    padding: 12px 5px; font-size: 12px;
    text-align: center; background: #24292e; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: 0.2s; text-decoration: none; box-sizing: border-box;
}
.bps-card:hover .bps-btn { background: #0366d6; color: #fff; }

/* NAWIGACJA - STRZAŁKI */
.bps-nav-btn {
    color: #24292e !important;
    width: 30px !important; 
    height: 30px !important;
    margin-top: -30px !important;
}
.bps-nav-btn::after { font-size: 20px !important; font-weight: bold; }