/* Иконка для открытия подборки */
.selection-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b6b;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selection-icon:focus-visible {
    outline: 3px solid #ff6b6b;
    outline-offset: 3px;
}

.selection-icon__label {
    line-height: 1;
}

.selection-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Всплывающее окно */
.selection-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 15px;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100;
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.selection-header h3 {
    font-size: 18px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #f00;
}

/* Список туров */
.selection-list {
    margin-top: 10px;
}

.selection-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.selection-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
    object-fit: cover;
}

.selection-item p {
    flex-grow: 1;
    font-size: 14px;
    margin: 0;
}


