/* Информация о карточке */
.card-info {
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFAF5 100%);
    border-radius: 15px;
    padding: 18px;
    margin: 20px 0;
    border: 2px solid #E8E3D8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-info:hover {
    border-color: #D4A574;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.15);
}

.card-info-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 3px;
    font-size: 14px;
}

.card-info-number {
    color: #777777;
    font-size: 13px;
    margin-bottom: 8px;
}

.card-selector-hint {
    font-size: 11px;
    color: #D4A574;
    font-weight: 600;
    text-align: right;
}

/* Список карточек */
.cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.card-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFAF5 100%);
    border: 2px solid #E8E3D8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.card-option:hover {
    border-color: #D4A574;
    background: linear-gradient(135deg, #FFFAF5 0%, #FFFEF8 100%);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.15);
    transform: translateX(5px);
}

.card-option.selected {
    border-color: #C19A6B;
    border-width: 3px;
    background: linear-gradient(135deg, #FFFEF8 0%, #FFFBF7 100%);
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.15), inset 0 0 10px rgba(212, 165, 116, 0.1);
}

.card-option-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
}

.card-option-details {
    flex-grow: 1;
}

.card-option-name {
    font-weight: 600;
    color: #333333;
    font-size: 13px;
    margin-bottom: 3px;
}

.card-option-number {
    color: #999999;
    font-size: 12px;
}

.card-option-checkmark {
    width: 24px;
    height: 24px;
    background: transparent;
    color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
}

.card-option.selected .card-option-checkmark {
    background: #C19A6B;
    color: white;
}

/* Информация о платеже */
.payment-info {
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFAF5 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #E8E3D8;
}

.payment-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E8E3D8;
    font-size: 13px;
}

.payment-info-row:last-child {
    border-bottom: none;
}

.payment-info-label {
    color: #666666;
    font-weight: 600;
}

.payment-info-value {
    color: #C19A6B;
    font-weight: 700;
    font-size: 14px;
}
