/* ============ Swatche kolorów (powiązane produkty) ============ */
.bfp-colors { margin: 22px 0; }
.bfp-colors__label {
    font-size: 14px; font-weight: 600; color: #111; margin-bottom: 10px;
}
.bfp-colors__grid {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.bfp-color {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    width: 84px; padding: 8px 6px 7px; border: 1px solid #e6e6e6; border-radius: 12px;
    text-decoration: none; background: #fff; transition: border-color .15s, box-shadow .15s;
    cursor: pointer;
}
.bfp-color:hover { border-color: #bdbdbd; }
.bfp-color.is-current { border-color: #111; box-shadow: 0 0 0 1px #111 inset; cursor: default; }
.bfp-color__thumb {
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-radius: 8px;
}
.bfp-color__thumb img,
.bfp-color__img {
    width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px;
}
.bfp-color__img--empty { background: #f2f2f2; }
.bfp-color__name {
    font-size: 12px; line-height: 1.2; color: #444; text-align: center;
}
.bfp-color.is-current .bfp-color__name { color: #111; font-weight: 600; }

@media (max-width: 480px) {
    .bfp-color { width: calc(25% - 8px); }
}

/* ============ Logo marki ============ */
.bfp-brand { display: inline-block; line-height: 0; text-decoration: none; padding: 0 !important; margin: 0 !important; }
.bfp-brand__logo {
    min-width: 250px !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}
.bfp-brand__name { font-size: 18px; font-weight: 700; color: #111; line-height: 1.2; }
