.profile-header {
    background: linear-gradient(135deg, #97652B 0%, #c49965 100%);
    padding: 30px 20px;
    color: #fff;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.avatar {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.avatar svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-phone {
    font-size: 13px;
    opacity: 0.9;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

.stat-value {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.profile-content {
    padding: 15px;
    padding-bottom: 70px;
}

.menu-section {
    margin-bottom: 20px;
}

.menu-title {
    font-size: 13px;
    color: #999;
    padding: 10px 15px;
    font-weight: 500;
}

.menu-list {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:active {
    background-color: #f9f9f9;
}

.menu-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.menu-icon svg {
    width: 20px;
    height: 20px;
    color: #97652B;
}

.menu-item span {
    flex: 1;
    font-size: 15px;
}

.menu-item .arrow {
    width: 18px;
    height: 18px;
    color: #ccc;
}
