.fpsw-box {
    margin: 1rem 0;
    /* Zawsze pełna szerokość w osobnej linii — także gdy rodzic jest flexem lub używa floatów. */
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    clear: both;
}

.fpsw-title {
    margin: 0 0 0.5rem !important;
 // font-weight: 700;
    color: #232323;
    font-family: 'FP1';
}

.fpsw-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.fpsw-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    color: #8a8a8a;
    text-decoration: none;
    line-height: 1.2;
    transition: border-color 0.15s ease, color 0.15s ease;
}

a.fpsw-option:hover {
    border-color: var(--fpsw-accent, #c9a24b);
    color: #232323;
    text-decoration: none;
}

.fpsw-current {
    border: 2px solid var(--fpsw-accent, #c9a24b);
    color: #232323;
}

.fpsw-radio {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1px solid #bdbdbd;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}

.fpsw-current .fpsw-radio {
    border-color: var(--fpsw-accent, #c9a24b);
    /* Wypełniony środek radia bez dodatkowego elementu. */
    background: radial-gradient(circle, var(--fpsw-accent, #c9a24b) 0 45%, #fff 50%);
}

.fpsw-diamond {
    flex: 0 0 auto;
    color: var(--fpsw-accent, #c9a24b);
}

.fpsw-diamond svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
}

.fpsw-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fpsw-percent {
    font-weight: 700;
    font-size: 1rem;
}

.fpsw-current .fpsw-percent {
    color: var(--fpsw-accent, #c9a24b);
}

.fpsw-brand {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.fpsw-note {
    margin: 0.5rem 0 0;
    font-size: 0.82rem;
    color: #8a8a8a;
}
