/* Личный кабинет */
.profile-header {
    padding: 30px 0;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.profile-details h1 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--dark-blue);
}

/* Бронирования */
.bookings-section {
    margin: 40px 0;
}

.bookings-section h2 {
    text-align: center;
}

.booking-group {
    margin-bottom: 40px;
}

.booking-group h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
}

.booking-group.confirmed h3 {
    color: var(--success);
}

.booking-group.pending h3 {
    color: var(--warning);
}

.booking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.booking-card.confirmed {
    border-left-color: var(--success);
}

.booking-card.pending {
    border-left-color: var(--warning);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.booking-hotel {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
}

.booking-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-confirmed {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.booking-dates {
    display: flex;
    gap: 30px;
    margin: 15px 0;
    color: #666;
}

.booking-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.profile-info-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-label {
    color: #666;
}

.info-value {
    font-weight: bold;
}

.info-edit-link {
    color: var(--gold);
    margin-left: 10px;
    text-decoration: none;
}

.booking-card-flex-large {
    display: flex;
    gap: 20px;
}

.booking-image-large {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.booking-actions-right-large {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
}