/* FabrykaCmyka — przełącznik waluty PLN/EUR. Wariant A z projektu (handoff8): jeden tor + przesuwny wskaźnik.
   Pozycja thumba sterowana przez `left` (nie `transform`) — przeżywa prefers-reduced-motion (motyw/WP zeruje transform!important). */
/* Pełny pasek waluty (1:1 z projektem): etykieta + nota po lewej, toggle po prawej. */
.fc-curbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: var(--fc-bg-soft, #F7F8F8);
    border: 1px solid var(--fc-border, #ECECEC);
    border-radius: var(--fc-r, 10px);
    margin: 0 0 18px;
}
.fc-curbar__l { min-width: 0; }
.fc-curbar__t { display: block; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--fc-text, #54595F); font-family: var(--fc-font-head, 'Poppins', sans-serif); }
.fc-curbar__s { display: block; font-size: 11.5px; color: var(--fc-text-soft, #7A7A7A); margin-top: 1px; }

/* Tor */
.fc-cur {
    position: relative;
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--fc-line, #E7E8EA);
    border-radius: 999px;
    background: #F2F3F4;
    vertical-align: middle;
}
/* Przesuwny wskaźnik (thumb) pod aktywną walutą */
.fc-cur .fc-cur__thumb {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    border-radius: 999px;
    background: var(--fc-magenta, #C800A7);
    box-shadow: 0 2px 6px rgba(200, 0, 167, .32);
    transition: left .26s cubic-bezier(.4, .05, .2, 1);
}
.fc-cur.eur .fc-cur__thumb { left: 50%; }

/* Opcje — specyficzność .fc-cur … bije reguły motywu/Astry na <button> (font, padding, hover) */
.fc-cur .fc-cur__opt {
    position: relative;
    z-index: 1;
    min-width: 78px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1;
    color: #7A7A7A;
    transition: color .2s;
}
.fc-cur .fc-cur__opt:hover { background: transparent; color: #2B2B2B; }
.fc-cur .fc-cur__opt.is-on { color: #fff; }
.fc-cur .fc-cur__opt.is-on:hover { color: #fff; }
.fc-cur .fc-cur__sym { font-weight: 700; font-size: 13px; opacity: .85; }

/* Nota „ceny orientacyjne" (wstrzykiwana z JS w trybie EUR) */
.fc-cur__note {
    margin: 8px 0 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--fc-ink-soft, #9A9DA1);
    text-align: right;
    white-space: nowrap; /* desktop: jedna linia */
}
@media (max-width: 600px) {
    .fc-cur__note { white-space: normal; } /* mobile: pozwól zawinąć */
}
