body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

.container {
    padding: 24px;
}

.page-title {
    margin: 0 0 16px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 80px; /* место под нижнюю кнопку */
}

.option-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    display: grid;
    grid-template-columns: 56px 1fr 24px;
    gap: 12px;
    cursor: pointer;
    outline: none;
}

.option-card:focus {
    box-shadow: 0 0 0 3px rgba(11, 120, 255, 0,2);
}

.option-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.option-card__title {
    margin: 0 0 6px;
    font-size: 18px;
}

.option-card__subtitle {
    margin-bottom: 8px;
    color: #666;
}

.option-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1,4;
}

.option-card.selected {
    border-color: #0b78ff;
    background: #f3f8ff;
}

.option-card__check {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    align-self: start;
}

.option-card.selected .option-card__check {
    border-color: #0b78ff;
    background: #0b78ff;
    box-shadow: inset 0 0 0 3px #fff;
}

/* Нижняя панель с кнопкой */
.footer-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0,9);
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.choose-button {
    min-width: 220px;
    height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    border: 0;
    background: #0b78ff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.choose-button[disabled] {
    background: #b9d3ff;
    cursor: not-allowed;
}
