.checkout-option {
    display: flex;
    align-items: stretch;
    gap: 1rem;

    padding: 1rem;

    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);

    cursor: pointer;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.checkout-option__content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex: 1;
    width: 100%;
}

.checkout-option:hover {
    border-color: var(--color-accent);
}

.checkout-option:has(input:checked) {
    border-color: var(--color-accent);
    background: rgba(255, 0, 152, .05);
}

.checkout-option__radio {
    margin-top: .25rem;
    flex-shrink: 0;
}

.checkout-option__text {
    display: flex;
    flex-direction: column;

    flex: 1;
    min-width: 0;
}

.checkout-option__title {
    font-weight: 600;
}

.checkout-option__description {
    color: var(--color-text-light);
    font-size: .9rem;
}

.checkout-option__price {
    margin-left: auto;

    font-weight: 700;
    white-space: nowrap;
}

.checkout-option-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1rem;
}