/* =====================================================================
   FORTHING MODEL SELECTOR WIDGET
   ===================================================================== */

.fc-mks,
.fc-mks * {
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

.fc-mks {
    position: relative;
    display: inline-block;
}

/* ── Trigger-knop ─────────────────────────────────────────────────── */
.fc-mks__trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    padding: 0 28px;
    background: #d7000f;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s;
}
.fc-mks__trigger:hover  { background: #b5000c; }
.fc-mks__trigger:active { background: #b5000c; }
.fc-mks__trigger:focus  { outline: none; }

/* Chevron roteert 180° wanneer open */
.fc-mks__chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
}
.fc-mks--open .fc-mks__chevron {
    transform: rotate(180deg);
}

/* ── Dropdown-lijst ───────────────────────────────────────────────── */
.fc-mks__lijst {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #0a0a0a;
    border-top: 2px solid #d7000f;
    border-radius: 0;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 9990;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.fc-mks__lijst[hidden] { display: none; }

/* ── Opties ───────────────────────────────────────────────────────── */
.fc-mks__optie {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.fc-mks__optie:hover,
.fc-mks__optie:focus {
    background: rgba(255,255,255,0.06);
    outline: none;
}

.fc-mks__optie-naam {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    flex: 1;
}

.fc-mks__optie-prijs {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.fc-mks__optie-pijl {
    flex-shrink: 0;
    color: rgba(255,255,255,0.3);
    transition: transform .2s ease, color .2s;
}
.fc-mks__optie:hover .fc-mks__optie-pijl,
.fc-mks__optie:focus .fc-mks__optie-pijl {
    color: #d7000f;
    transform: translateX(4px);
}

/* ── Klein variant: enkel tekst + pijl ───────────────────────────── */
.fc-mks--klein .fc-mks__trigger {
    background: transparent !important;
    height: auto;
    padding: 0;
    gap: 6px;
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 14px;
    font-weight: 500;
}
.fc-mks--klein .fc-mks__trigger:hover,
.fc-mks--klein .fc-mks__trigger:active {
    background: transparent !important;
    opacity: 0.75;
}

.fc-model-selector { font-family: 'Manrope', sans-serif; }

.fc-model-selector h1,
.fc-model-selector h2,
.fc-model-selector h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
}
