/* ── Ukryty checkbox ── */
.option-card input[type="checkbox"] {
    display: none;
}

/* ── Karta ── */
.option-card label {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.5rem 1rem;
    border: 1.5px solid var(--bs-primary-light);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s, background .18s, box-shadow .18s;
    text-align: center;
    user-select: none;
    height: 100%;
}

/* ── Hover ── */
.option-card label:hover {
    border-color: var(--bs-primary);
    background: color-mix(in srgb, var(--bs-primary) 10%, white);
}

/* ── Zaznaczona ── */
.option-card input:checked + label {
    border-color: var(--pc-sidebar-active-color);
    background: color-mix(in srgb, var(--bs-primary) 10%, white);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), .2);
}

/* ── Ikona ── */
.option-card .card-icon {
    font-size: 30px;
    line-height: 1;
    color: var(--bs-primary-light);
    transition: color .18s;
}
.option-card label:hover .card-icon,
.option-card input:checked + label .card-icon {
    color: var(--pc-sidebar-active-color);
}

/* ── Tytuł ── */
.option-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #000001;
    line-height: 1.3;
}

/* ── Opis ── */
.option-card .card-desc {
    font-size: 12px;
    color: var(--pc-sidebar-active-color);
    line-height: 1.4;
    margin-top: -2px;
}

/* ── Znacznik ✓ w rogu ── */
.option-card .check-mark {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pc-sidebar-active-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .18s, transform .18s;
    transform: scale(.6);
}
.option-card .check-mark i {
    font-size: 12px;
    color: #fff;
}
.option-card input:checked + label .check-mark {
    opacity: 1;
    transform: scale(1);
}
